Re: Passing data between action forms

2005-07-08 Thread Michael Jouravlev
On 7/8/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> > wrote: > > From: Wendy Smoak <[EMAIL PROTECTED]> > > Sent: Jul 8, 2005 12:51 PM > > To: Struts Users Mailing List > > Subject: Re: Passing data between action forms > > > > > From: "

Re: Passing data between action forms

2005-07-08 Thread erikweber
I'm not knocking your approach, but synchronizer tokens solve the same problem, with or without a redirect. Erik -Original Message- From: Wendy Smoak <[EMAIL PROTECTED]> Sent: Jul 8, 2005 12:51 PM To: Struts Users Mailing List Subject: Re: Passing data between action

Re: Passing data between action forms

2005-07-08 Thread Wendy Smoak
From: "Michael Jouravlev" <[EMAIL PROTECTED]> > It will sound like a scratched vinil, but I believe that forwarding > from search page to result page is not the right thing to do, because > whenever you refresh result page, you run the search query again. So, > it should be a redirect. I think so

Re: Passing data between action forms

2005-07-08 Thread Michael Jouravlev
On 7/8/05, Mitchell, Steven C <[EMAIL PROTECTED]> wrote: > I'm curious to hear what other people are doing regarding the passing of > data between actions. Take for example an advanced search page with > validation, drop down lists, the works. Upon successful validation the > user should flow to

Re: Passing data between action forms

2005-07-08 Thread Wendy Smoak
From: "Mitchell, Steven C" <[EMAIL PROTECTED]> > I'm curious to hear what other people are doing regarding the passing of > data between actions. Take for example an advanced search page with > validation, drop down lists, the works. Upon successful validation the > user should flow to a search r

Re: Passing data between action forms

2005-07-08 Thread BHansard
Typically, I will create a SearchBean with all of the search parameters on it. Included in this bean is a collection to store the results in. On the ActionForm, I will include the SearchBean as a parameter on the search bean. On the JSP, I use nested tags or the . notation ( ">"Mitchell, Stev