Author Login
Post Reply
Hi all,
I am trying to use ExecuteAndWaitInterceptor to show a page while my action
processes the request.
The below is my action configuration.After executing the execute method
successfully I am forwarding
"Success" result which is another action which forward the request to
another jsp.
<action name="myaction" class="com.some.some.action.MyAction">
<interceptor-ref name="deafultAccountStack"/>
<interceptor-ref name="execAndWait"/>
<result name="back" type="chain">back_input</result>
<result name="input">inputInfo.jsp</result>
<result name="success" type="chain">summaryPage</result>
<result name="wait">waiting.jsp</result>
</action>
What extra stuff I have to do to go to the success action.
Thank you,
Ravindra.