Question regarding action form

2008-01-02 Thread Manisha M Sathe
I have a action form public class ReconThresholdEditForm extends ValidatorForm { .. private ReconRuleBO reconRuleBO = new ReconRuleBO(); .. } ReconRuleBO has collection of thresholdsBOs public class ReconRuleBO { .. private Collection thresholdCollection = new ArrayList(); } public

Re: Question regarding action form

2008-01-02 Thread Manisha M Sathe
Re: Question regarding action form Manisha M Sathe wrote: > I have a action form > > public class ReconThresholdEditForm extends ValidatorForm > { > ... >private ReconRuleBO reconRuleBO = new ReconRuleBO(); > ... > } > > ReconRuleBO has colle

Re: Need to forward to Nothing

2007-07-26 Thread Manisha M Sathe
(bad news for your web container). Returning null is acceptable when sending a file for download, for example. Paul On 7/26/07, Asthana, Rahul <[EMAIL PROTECTED]> wrote: > > Forward to null has worked for me in struts 1.2.x. > > > -Original Message- >

Need to forward to Nothing

2007-07-26 Thread Manisha M Sathe
The action class does not forward to anything - it's like killing that process if it comes to this action class. How can I specify that ? Thanks & regards Manisha

Re: Need to forward to Nothing

2007-07-26 Thread Manisha M Sathe
t be forwarding to null. Just return null. On 7/26/07, Manisha M Sathe <[EMAIL PROTECTED]> wrote: > > Thanks to all, I tried that out. I am not getting any error but I am > getting warning. > > My forward: > > return mapping.findForward(null); > > Warning o