Can anyone please help me.
I have registration.jsp with a submit button.
When I submit it should validate the credential and show success.jsp.
While validating, it is required to dispaly progress bar in the same page
(registration.jsp) at the top untill success.jsp renders.
When I use the below code, it is showing wait.jsp. But I want to show an
image in the same page (registration.jsp) at the top.

<action name="registerSubmitAction" method="submit"
class="com.skumar.struts2.action.RegisterAction">
                        <interceptor-ref name="execAndWait">
                                1000
                                500
                        </interceptor-ref>

                        <result name="wait">/pages/wait.jsp</result>
                        <result name="success">/pages/success.jsp</result>
</action>

The progress bar is in my wait.jsp.

Thanks,
Sudhir



--
View this message in context: 
http://struts.1045723.n5.nabble.com/Display-progress-bar-in-same-page-request-page-using-struts2-execAndWait-Interceptor-tp5711924.html
Sent from the Struts - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to