Re: Need to forward to Nothing

2007-07-26 Thread Manisha M Sathe
Thanks, it worked Manisha "Paul Benedict" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 07/26/2007 03:05 PM Please respond to "Struts Users Mailing List" To "Struts Users Mailing List" cc Subject Re: Need to forward to Nothing Do no

Re: Need to forward to Nothing

2007-07-26 Thread Paul Benedict
ny thoughts ? > > regards, > Manisha > > > > >"Paul Benedict" <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] >07/26/2007 01:05 PM >Please respond to > "Struts Users Mailing List" > > > To > "Struts Users

Re: Need to forward to Nothing

2007-07-26 Thread Manisha M Sathe
sers Mailing List" To "Struts Users Mailing List" cc Subject Re: Need to forward to Nothing If you return null from an action in S1, that means you handled the response yourself -- no need for Struts to intervene. This has nothing to do with "killing the process"

Re: Need to forward to Nothing

2007-07-26 Thread Musachy Barroso
Same thing applies to S2. musachy On 7/26/07, Paul Benedict <[EMAIL PROTECTED]> wrote: > If you return null from an action in S1, that means you handled the response > yourself -- no need for Struts to intervene. This has nothing to do with > "killing the process" (bad news for your web container

Re: Need to forward to Nothing

2007-07-26 Thread Paul Benedict
If you return null from an action in S1, that means you handled the response yourself -- no need for Struts to intervene. This has nothing to do with "killing the process" (bad news for your web container). Returning null is acceptable when sending a file for download, for example. Paul On 7/26/0

RE: Need to forward to Nothing

2007-07-26 Thread Asthana, Rahul
Forward to null has worked for me in struts 1.2.x. -Original Message- From: Manisha M Sathe [mailto:[EMAIL PROTECTED] Sent: Thursday, July 26, 2007 11:48 AM To: user@struts.apache.org Subject: Need to forward to Nothing The action class does not forward to anything - it's like killing t

Re: Need to forward to Nothing

2007-07-26 Thread Musachy Barroso
Are you talking about Struts 1 or 2? If S2, then you can return Action.NONE (not sure if that's what you expect as 'killing the process'). musachy On 7/26/07, Manisha M Sathe <[EMAIL PROTECTED]> wrote: > The action class does not forward to anything - it's like killing that > process if it comes