Hi Craig,
 
Thanks for your reply.  Your first approach seems like what I am looking for, but hava a couple of followup questions.
 
> * Form submit goes to a servlet
 
If in the jsp pages I specify a useBean and mark it as * and then
specify a servlet in the action method, will the form fields get set in the bean automatically?  ie.  I guess I am uncertain of how and when
things actually make it into the bean.
 
> * Servlet initiates whatever business processes
  are requested, and synthesizes results in one
  or more beans.
 
same as above, how do things make into the bean, when a servlet is specified in the form action
 
* The beans are stored as attributes of the request
  (if they are only needed for the response I am about
  to generate) or the user's session (if they need to
  last beyond the processing of this request.
 
How do get a referece to the bean - request.getparmeter(beanName)?
 
Thanks a lot.
 
Suneet

Reply via email to