Re: How to call to another action from the action class

2010-06-24 Thread chris
Hi, Use a type=redirectAction and then set the result to the action name (without .action) Chris Hi Guys, I want to call to another action mapping which has defined in the struts.xml file within another action class, its like this, *struts.xml* action name=readThis

Re: How to call to another action from the action class

2010-06-24 Thread Jyothi Rajesh
You can try by giving the path of the action in place of /pages/ext/summary.jsp. Atleast that was how it is done in struts1.3 Thanks, Jyothi On Thu, Jun 24, 2010 at 11:39 AM, Kushan Jayathilake kusha...@gmail.comwrote: Hi Guys, I want to call to another action mapping which has defined in

RE: How to call to another action from the action class

2010-06-24 Thread Martin Gainty
each action is embedded in its own execution chain e.g. pre-action1 interceptor,action1,post-action1-interceptor pre-action2 interceptor,action2,post-action2-interceptor perhaps what you want is an *post-action1* interceptor