Re: Struts2 redirect-action with post params

2009-06-25 Thread Kelly.Graus
Wes > > > -- > Wes Wannemacher > Author - Struts 2 In Practice > Includes coverage of Struts 2.1, Spring, JPA, JQuery, Sitemesh and more > http://www.manning.com/wannemacher > > -- View this message in context: http://www.nabble.com/St

Re: Struts2 redirect-action with post params

2009-06-25 Thread Wes Wannemacher
On Thu, Jun 25, 2009 at 1:36 PM, Kelly.Graus wrote: > > > This is the redirect action. it redirects to the action, but the post > parameter isn't set. > > type="redirect-action">submitXmlLicenseRequest > > > Which version of struts are you using, redirect-action was renamed to redirectA

Re: Struts2 redirect-action with post params

2009-06-25 Thread Kelly.Graus
on the OGNL > stack should work for you: > > > > submitXmlLicenseRequest > ${#parameters.licenseRequest} > > > > Brice > -- View this message in context: http://www.nabble.com/Struts2-redirect-action-with-post-params-tp24207810p24208402.html Sent fr

Re: Struts2 redirect-action with post params

2009-06-25 Thread brice . roncace
censeRequest=${licenseRequest} type="redirect-action">submitXmlLicenseRequest?licenseRequest=${Parameters.licenseRequest} submitXmlLicenseRequest ${licenseRequest} submitXmlLicenseRequest ${Parameters.licenseRequest} Thanks for any suggestions

Struts2 redirect-action with post params

2009-06-25 Thread Kelly.Graus
submitXmlLicenseRequest ${licenseRequest} submitXmlLicenseRequest ${Parameters.licenseRequest} Thanks for any suggestions! Kelly -- View this message in context: http://www.nabble.com/Struts2-redirect-act