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
hi, For the parameter accessig problem, instead of setting the parameters in 'request' scope, try setting them in 'session' hope. coming to second question, have you properly added for the second action in your struts-config.xml ? (if it is just a forward, then you can simply specify the 'fo

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.