• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Browser Back button | Struts bridge

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I m facing problems while using browser back button. I m using struts bridge with CMS Jahia. Normal flow is

All my actions use DispatchAction as base class

Action A-Init() renders JSP A
Action A-Submit submits JSP A and chained to Action B init() which renders JSP B

<action path="/actionA" name="formA"
type="ActionA"
scope="session" validate="false"
parameter="method">

<forward name="renderA" path="screenA.jsp" />
<forward name="submitA" path="/actionB.do?method=init" redirect="true" />
</action>

<action path="/actionB" name="formA"
type="ActionB"
scope="session" validate="false"
parameter="method">
<forward name="renderB" path="screenB.jsp" />
</action>


Now issue is when on screen B if I press control F5 (refresh), Action B init is called again and screenB.jsp is rendered which is fine. But if I click browser back button, I expected Action A submit to be called but it is again calling Action B init and rendering screenB.jsp.

This is not happening in any other actions of the application.

Could somebody please tell me if I m missing anything?

regards,
Sandy
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic