Re: redirect with parameter in struts

2010-08-24 Thread Robert Taylor
myOtherParameterValue); return redirect; The framework takes care of building the query string, encoding, etc... /robert - Original Message - From: "Struts User" To: Sent: Monday, August 23, 2010 6:01 PM Subject: redirect with parameter in struts Hi, Is it possible in stru

Re: redirect with parameter in struts

2010-08-24 Thread Paweł Wielgus
Hi, one possible way is: return new ActionForward("/orderWrapper.do?actionTarget=VIEW_CUSTOMER", true); inside a execute action method. Best greetings, Paweł Wielgus. 2010/8/24 Struts User : > Hi, > > Is it possible in struts1 to include a parameter in the action redirection. > If I have a web a

redirect with parameter in struts

2010-08-23 Thread Struts User
Hi, Is it possible in struts1 to include a parameter in the action redirection. If I have a web application say, http://www..xyz.com/welcome.do and I want to redirect it to http://www.xyz.com/welcomeredirect.do?cmp=company1 while value of "cmp" will be assigned dynamically. how can I achieve this?

Re: redirect with parameter

2009-12-10 Thread prasad iyer
u, 10 December, 2009 15:20:55 Subject: RE: redirect with parameter Prasad: > I am stuck with a problem I want to add parameters to > redirect. Following is the example. Here is what works for me: In struts.xml: 303 ${redirectUrl} I generate the full url in my bean code in

RE: redirect with parameter

2009-12-10 Thread Neil Aggarwal
Prasad: > I am stuck with a problem I want to add parameters to > redirect. Following is the example. Here is what works for me: In struts.xml: 303 ${redirectUrl} I generate the full url in my bean code including all parameters I want encoded. I hope that helps, Neil --

redirect with parameter

2009-12-10 Thread prasad iyer
Hi, I am stuck with a problem I want to add parameters to redirect. Following is the example. ${redirecturl} ${email} /left/jsp/signup/signup.jsp /left/jsp/signup/signup.jsp but email is not getting appended to the url. Help would be highly appreciated th