Re: Sending dynamic parameters to a forward

2005-06-15 Thread gvanmatre
ause the > > > ActionForward had redirect=true) and then clean up the session in my > > > receiving code. > > > > > > So you store the values that you are passing in session scope for a > > > quick millisecond while you forward and then clean up once y

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Nick Heudecker
ore the values that you are passing in session scope for a > > quick millisecond while you forward and then clean up once you're in the > > called method. > > > > Zarar > > > > > > - Original Message ----- From: "Frank W. Zammetti" > > <

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Frank W. Zammetti
k millisecond while you forward and then clean up once you're in the called method. Zarar - Original Message - From: "Frank W. Zammetti" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Cc: "Struts Users Mailing List" Sent: Tuesday, June 14,

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Michael Jouravlev
On 6/14/05, Zarar Siddiqi <[EMAIL PROTECTED]> wrote: > Where do you see the af.setURL(String) method in the ActionForward class? > http://struts.apache.org/api/org/apache/struts/action/ActionForward.html > > I had a similar problem where dynamic values needed to be passed in via an > ActionForward

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Zarar Siddiqi
the called method. Zarar - Original Message - From: "Frank W. Zammetti" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Cc: "Struts Users Mailing List" Sent: Tuesday, June 14, 2005 9:27 AM Subject: Re: Sending dynamic parameters to a forward Y

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Frank W. Zammetti
You can, IIRC, append a query string to the URL returned by your forward... off the top of my head, it would look something like this... in Action 1: String param1Val = "someValue1"; String param2Val = "someValue2"; String queryString = "?param1=" + param1Val + "¶m2 = " + param2Val; ActionForward

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Michael Jouravlev
http://marc.theaimsgroup.com/?l=struts-user&m=111841184227894&w=2 > I have an action (Action1) which when completed successfully, forwards > to another action (Action2). I need to be able to send dyanamic > parameters to Action2 ---