I am creating a new Session in LoginAction.java while the user logs in as ,
HttpSession session = request.getSession(true);
Some values are being set in the session from my Login class as,
session.setAttribute("UserId",stUserId);
After getting logged in , I am trying to get the values set in session. I am getting the session as follows :
HttpSession session = request.getSession(false); IBSSessionInfo ibssessioninfoObj = null; ibssessioninfoObj = (IBSSessionInfo)session.getAttribute(IBSHandleIdNames.SessionInfoName);
The session id of the both the sessions in the above two classes are differing .
The same code works well with internet explorer 7 but I am getting session issue with internet explorer 8 (8.0.6001.18702) . Help me to resolve it.
Thanks.