Re: Action forward to Action losing request objects ??

2001-07-05 Thread Struts
- Original Message - From: DHarty To: [EMAIL PROTECTED] ; Jonathan Sent: Thursday, July 05, 2001 12:59 PM Subject: RE: Action forward to Action losing request objects ?? I had the same problem when trying to use a sequence of pages to complete the

Re: Action forward to Action losing request objects ??

2001-07-05 Thread Peter Alfors
Original Message - From: Peter Alfors To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 3:49 PM Subject: Re: Action forward to Action losing request objects ??  Is it possible that you are redirecting instead of forwarding?   Jonathan wrote: I am submitting to an Action which when success

Re: Action forward to Action losing request objects ??

2001-07-05 Thread Jonathan
rintln(action+query);return new ActionForward( action+query, true);     Can someone tell me how to add query strings properly         - Original Message - From: Peter Alfors To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 3:49 PM Subject: Re: Action forward to Act

RE: Action forward to Action losing request objects ??

2001-07-05 Thread DHarty
I had the same problem when trying to use a sequence of pages to complete the same form.   I turns out that struts ActionServlet class calls the "reset" method of your form between requests, thus erasing your form.  I even tried to put the form in a "session" but had the same problem.  Fina

Re: Action forward to Action losing request objects ??

2001-07-05 Thread Peter Alfors
Is it possible that you are redirecting instead of forwarding?   Jonathan wrote: I am submitting to an Action which when successful places an object in the request and forwards to a second Action, which looks for the item in the request, and forwards yet again to a third Action which gets the i