RE: Request Scope Lifetime & Propagation

2003-10-15 Thread Wendy Smoak
John wrote: > Is there anyway to propagate data from request to request? > That is I have some data used in one request (which renders a JSP) > which I want included into the next request. > The data in question is in the request scope and > is not really appropriate for the session scope (sinc

RE: Request Scope Lifetime & Propagation

2003-10-14 Thread Wiebe de Jong
If you are using Validator, you could use a multi-page form. http://jakarta.apache.org/struts/api/org/apache/struts/validator/ValidatorFo rm.html IMHO, one of the major gains of ValidatorForm over ActionForm is the 'page' attribute, which will enable you to use one form over multiple pages. Wiebe

Re: Request Scope Lifetime & Propagation

2003-10-14 Thread David Graham
--- [EMAIL PROTECTED] wrote: > Hello, > > Is there anyway to propagate data from request to request? That is I > have some data used in one request (which renders a JSP) which I want > included into the next request. The data in question is in the request > scope and is not really appropriate for