Re: Session Scope-Form Bean Reset Method Executing Every Request

2005-05-08 Thread Aladin Alaily
Hi Mehmet, The reset method of your form bean will be executed every time it passes through the controller on a redirect, which is handled as a new request. As such, if you do not want to have the reset method called you should forward your pages rather than redirecting them (I don't think this

Re: Session Scope-Form Bean Reset Method Executing Every Request

2005-05-08 Thread Adam Hardy
On 08/05/05 13:09 Mehmet E. wrote: Form Bean scope is session. In every request form bean RESET method is executing. I am useing struts with tiles. There is no code for removing form bean from session. As i know, it must execute one times per session after creation of form bean. Mehmet, I never u

Session Scope-Form Bean Reset Method Executing Every Request

2005-05-08 Thread Mehmet E.
Form Bean scope is session. In every request form bean RESET method is executing. I am useing struts with tiles. There is no code for removing form bean from session. As i know, it must execute one times per session after creation of form bean. Thanks... ___