Re: Architecture question for all you gurus out there

2006-03-09 Thread Bruno Georges
Dear John As posted there are different way of supporting your requierements. Also AJAX came to mind until I attended yesterday a presentation from Christian Bauer on JBoss SEAM project. Christian works with Gaving King (hibernate lead) on this project. I suggest you have a look at it on JBoss si

Re: Architecture question for all you gurus out there

2006-03-09 Thread Greg Bobak
You should consider looking at AJAX for this type of processing. With AJAX you can store rules and processes in the user session object. Changes can be made to happen without refreshing the whole page. It eliminates a lot of request/response processing. Also consider fragment caching your

Re: Architecture question for all you gurus out there

2006-03-09 Thread Alex Jalali
ItÂ’s always better to not have fat clients and put as much of the logic on the server side. You say that this is a webapp client? So that means that your forms are static. So your only choice is to use script language that runs on client machine. This is also a bad thing. Since you don't know much

Re: Architecture question for all you gurus out there

2006-03-09 Thread andy gordon
Have you looked into aspect oriented programming? You should be able accomplish your objectives using it. One example open source effort is the Spring framework. Good luck. - andy John MccLain <[EMAIL PROTECTED]> wrote: We have a fairly large client/server app that we converted to a java