Re: Calling another action from an action

2006-04-19 Thread Ted Husted
gt; Thanks & Regards, > MS. > > -Original Message- > From: Gary Feidt [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 18, 2006 7:27 PM > To: user@struts.apache.org > Subject: Re: Calling another action from an action > > > You can simply use r

RE: Calling another action from an action

2006-04-19 Thread Meenakshi Singh
ards, MS. -Original Message- From: Gary Feidt [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 18, 2006 7:27 PM To: user@struts.apache.org Subject: Re: Calling another action from an action You can simply use return mapping.findForward("actionB"); and the following in the str

Re: Calling another action from an action

2006-04-18 Thread manivannan84
il) Sent: Tue, 18 Apr 2006 18:07:41 +0530 Subject: Calling another action from an action Hi all, I had an requirement wherein I needed to forward to another action from a action. I tried by two ways but none of them is working. I would appreciate if anyone of you could help me understand, what is th

Re: Calling another action from an action

2006-04-18 Thread Frank W. Zammetti
And also, don't forget that there is nothing special about an Action... you can instantiate and call execute() on it if you wish. In some cases that might be better because it does not incur the overhead of a run through the request processing chain of events again... depends on what your needs ar

Re: Calling another action from an action

2006-04-18 Thread Gary Feidt
You can simply use return mapping.findForward("actionB"); and the following in the struts-config.xml: Gary >>> [EMAIL PROTECTED] 4/18/2006 7:37:41 AM >>> Hi all, I had an requirement wherein I needed to forward to another action from a action. I tried by two ways but none of them is working.

Calling another action from an action

2006-04-18 Thread Meenakshi Singh
Hi all, I had an requirement wherein I needed to forward to another action from a action. I tried by two ways but none of them is working. I would appreciate if anyone of you could help me understand, what is that which I am not doing correctly. I made a forward in my action A which forwards to my