Re: Transfer user to login page on session timeout

2008-05-08 Thread Vivek Rana
Hi, You should be able to use servlet filters to block the request from going to the actions: http://java.sun.com/products/servlet/Filters.html I would do it your way and check for timeout by checking for the presence of session objects. There may be better ways, but I can't think of any o

Transfer user to login page on session timeout

2008-05-08 Thread bhaarat Sharma
Hello I am using struts 1 I am working on some legacy code. Have a requirement where the user should be fwded to the login page after session times out. Currently there are 100's of action classes and it wont be feasible to touch each one and check if the session exists. Can we do something in