Hi folks,
I got some interesting issue with Weblogic Session maintain.
I have provided SinOut functionality when user clicks SignOut as follows.
HttpSession session = request.getSession(false);
session.inValidate();
User selecting the Browser back button and trying to access the Tasks.
When doing this it is generating the new Session again.
-------------------------------------
Front Controller functionality i have written is like this.
HttpSession session = request.getSession(false);
if(session == null)
{
forwarding to the Login.jsp
}
else
{
forwarding to the Task
JSP }
Here the session is not Null. Since after SignOut and clicking browser back button creating new Session ,
How to resolve this.
If any one can give solution it will be appreciate.
Thanks in advance....