Hi, Yes it should work. HttpSession session = request.getSession(false);This does not invalidate the current session. request.getSession with the parameter as false returns the currently valid session if any otherwise it returns null. As, there is a session existing, it will return it and so the values in the session would be available.
Boney
SCJP, SCWCD
vijaykumar shah
Greenhorn
Joined: Jul 02, 2003
Posts: 23
posted
0
Hello, Yes it will definately work..... and it should work irrespective of HttpSession session = request.getSession(true/false). vijay