Hi Neil,
Thanks a lot.
I solved the problem
<package name="org.cross.signup" extends="struts-default">
<action name="SignUpAction" class="org.cross.SignUpAction">
<result name="redirecturl" type="redirect">
<param
name="location">/${redirecturl}?${urlparameters}</param>
<param name="parse">true</param>
</result>
<result
name="input">/left/jsp/signup/signup.jsp</result>
<result
name="error">/left/jsp/signup/signup.jsp</result>
</action>
</package>
I am getting redirecturl from property and urlparameters has the getter and
setter in Action class.
I can't use the
<param name="encode">true</param> because it encodes both redirecturl and
urlparameters.
cheers
----- Original Message ----
From: Neil Aggarwal <[email protected]>
To: Struts Users Mailing List <[email protected]>
Sent: Thu, 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:
<result name="success" type="httpheader">
<param name="status">303</param>
<param name="headers.location">${redirectUrl}</param>
</result>
I generate the full url in my bean code including all
parameters I want encoded.
I hope that helps,
Neil
--
Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net
Host your struts app on a CentOS VPS for only $25/month!
Unmetered bandwidth = no overage charges, 7 day free trial
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]