Hi All, I need some clarification ( rather suggestions ) on the below.

 <action-mappings >
    <action
      attribute="firstActionForm"
      input="first.jsp"
      name="firstActionForm"
      path="/firstAction"
      scope="request"
      type="com.deo.struts.action.FirstAction">
      <forward name="success" path="/second.jsp" />
    </action>
    <action
      attribute="secondActionForm"
      input="second.jsp"
      name="secondActionForm"
      path="/secondAction"
      scope="session"
      type="com.deo.struts.action.SecondAction">
      <forward name="success" path="/second.jsp" />
    </action>

Based on the mapping, from first jsp I can go to second jsp. Now in the
first Action class can I set some values in secondActionForm so that these
values can be available to second.jsp as the scope is set to session ?

Please let me know on the above.

Thanks
John
-- 
View this message in context: 
http://www.nabble.com/Action-Form-with-Session-Scope-tf4823931.html#a13801674
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to