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
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
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
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