Problem with Session time out
Hi,
I have some problem with session time out. in web.xml i set session time out for 30 minutes and i check the session expiry in each servlet as
if((request.getRequestedSessionId()!=null && !(request.isRequestedSessionIdValid()))) {
// forward to login expires page
}
then i use response.sendRedirect(some url) to redirect to login page.
The problem comes when the user try to log back in after session expiry they still got the session invalidated page even though i created a new session but problem is request.isRequestedSessionIdValid() returns false. can any one guide me how to tackle session expiry issue.
Regards,
A.

