Re: Fwd: Re: Struts2 login action class seems to be reused

2018-03-02 Thread Prasanth
Hi Norbert, Struts1 actions are thread safe (no instance variables). The login action has been moved to Struts2 with instance variables for username, password and the issue is coming up with this new struts2 action. Which is used for both displaying login page and also taking

Fwd: Re: Struts2 login action class seems to be reused

2018-03-02 Thread Norbert Hirneisen
Hi Prasanth, are you sure all your struts1 code is thread safe ? I had some similiar problems in a struts1 application. After removing all action class properties the problem was solved. Struts2 should be thread safe. But your problems looks to me like a problem with thread safety. Best