You could do this by just forwarding to an action mapping entry for
ActionClassB.

In you action mapping for ActionClassA, have multiple forwards.
And the logic in ActionClassA would forward to whichever, with 1 of them
being ActionClassB.

        <action path="/actionA" 
                        type="ActionClassA"
                                name="form"
                                scope="request">
                                <forward name="SUCCESS"  path="/do/actionB"
/>
                                <forward name="FAILURE"  path="/test.jsp" />
                                <forward name="CANCEL"  path="whatever" />
                </action>       

                <action path="actionB"
                        type="ActionClassB"
                                name="form"
                                scope="request">
                                <set-property property="secure" value="true"
/>
                                <forward name="SUCCESS"  path="/any.jsp" />
                                <forward name="FAILURE"
path="/anyOther.jsp" />
                </action>


hth
-jayash

-----Original Message-----
From: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED]
Sent: Friday, February 27, 2004 12:29 PM
To: [EMAIL PROTECTED]
Subject: Action class calling other Action class


Hi,
  
I hv ActionClassA ======>Display JSP of ActionClassA having a link to Edit
JSP of ActionClassB======>ActionClassB=====>Edit JSP of
ActionClassB======>ActionClassB(Update records)=====>dispatch control over
to ActionClassA.


My question is that  Can I forward my control to ActionClassA from
ActionClassB? or is there any better approach/alternative??

Tnx in advance,

-Ramadoss





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

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

Reply via email to