RE: invoking method of DispatchAction from within another DispatchAction

2006-03-10 Thread Krishna, Mattam \(M.\)
Use the following action specific forward in struts-confing.xml file. action ... forward name=success path=/diceSetUp.do?dispatch=diceWebSetUp/ /action I am sure , it will work fine. Let me know the results. Thanks and Regards, Krishna Mattam Team Member - CDF

Re: invoking method of DispatchAction from within another DispatchAction

2006-03-09 Thread Michael Jouravlev
Instantiate the target action class and call a method on it. Action classes are supposed to be stateless, so it should be irrelevant for you what instance to use. On 3/9/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: How do I invoke another DispatchAction from one DipatchAction ? For e.g