<action name="actionA" class="com.company.Someaction"> <result name="success" type="redirect-action"> <param name="actionName">OtherActionparam> <param name="paramA">${someParams}</param> <param name="paramB">${someParams}</param> <param name="aBoatLoadOfOtherParams">${aBoatLoadOfOtherParams}</param> </result> </action>
In the action map above, I redirect from SomeAction to OtherAction. I have problems because, unfortunately, I need to transfer a large amount of data between two actions. IE7 will only allow GET requests as 2k, so it bloat when I am a bit above this limit, when the response triggers a request for another action.
Is it possible to set this forwarding so that the POST is ultimately called for another action?
redirect post struts struts2 action
Andy
source share