Re: Sending dynamic parameters to a forward

2005-06-15 Thread gvanmatre
- Original Message - From: Frank W. Zammetti [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Cc: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, June 14, 2005 9:27 AM Subject: Re: Sending dynamic parameters to a forward You can, IIRC, append

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Michael Jouravlev
http://marc.theaimsgroup.com/?l=struts-userm=111841184227894w=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 message truncated

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 + param2 = + param2Val; ActionForward af =

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Zarar Siddiqi
method. Zarar - Original Message - From: Frank W. Zammetti [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Cc: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, June 14, 2005 9:27 AM Subject: Re: Sending dynamic parameters to a forward You can

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 but I

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Frank W. Zammetti
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 user@struts.apache.org Cc: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, June 14, 2005 9:27 AM Subject: Re: Sending dynamic

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Nick Heudecker
Message - From: Frank W. Zammetti [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Cc: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, June 14, 2005 9:27 AM Subject: Re: Sending dynamic parameters to a forward You can, IIRC, append a query string