How to refer to a previous ActionForm that is in a session scope?

2005-12-08 Thread Jun Bihag
I am developing a web application that goes from one page to another using two different Action classes. The initial page is connected to a session scoped ActionForm. On the second page which is handled by another Action (and its corresponding ActionForm that is request scoped), I want to

Re: How to refer to a previous ActionForm that is in a session scope?

2005-12-08 Thread Jun Bihag
Thanks, Michael. A simple attribute name change frees up the redundant memory used in my previous approach. Michael Jouravlev wrote: On 12/8/05, Jun Bihag [EMAIL PROTECTED] wrote: I am developing a web application that goes from one page to another using two different Action classes