Re: ActionForm is been called once only

2009-08-29 Thread sharadsingh
s is > normal/standard struts behaviour. > > Best greetings, > Paweł Wielgus. > > > 2009/8/29 sharadsingh : >> >> well all the points you said is ok for me the only thing i dont know >> about is >> the configuration. What kind of configuration you are

Re: How to handle a Session Timeout using struts 1.3?

2009-08-28 Thread sharadsingh
instead of just providing if(request.getSession(false).getAttribute("locale") == null) provide if(request.getSession(false) == null || request.getSession(false).getAttribute("locale") == null) { //redirect } i hope this will work vishnu.vyasan wrote: > > Hi Friends, > > > > How can I

Re: ActionForm is been called once only

2009-08-28 Thread sharadsingh
ow, > reset works always for me. > > Best greeitings, > Paweł Wielgus. > > 2009/8/28 sharadsingh : >> >> well i applied break points on both "actionform" and "action" of the form >> and >> did both refresh and brand new request. It is been

Re: ActionForm is been called once only

2009-08-28 Thread sharadsingh
y saying: > "if i try to open the page again" > what does that mean for real? > hitting F5 or refresh button in browser? > or a real brand new request. > > Best greetings, > Paweł Wielgus. > > > 2009/8/28 sharadsingh : >> >> i have an action fo

ActionForm is been called once only

2009-08-28 Thread sharadsingh
i have an action form which i use to collect form data and also to set them back by populating the variables in the reset method. But the problem is that the reset method is been called only the first time i am opening the page which contains that form, if i try to open the page again the reset me