>
>But when i am monitoring the live sessions
How do you do that ?
I think what you do at the top of here should work for you.
I don't use websphere. So, I can't test with that. But you could do some simple tests.
You use two simple test pages.
first.jsp
<%@ page session="true" %>
Session id is ${pageContext.session.id}
and second.jsp
<%@ page session="false" %>
Session id is ${pageContext.session.id}
Look at the translated pages of both.
In Tomcat those files are its work folder and are called first_jsp.java and second_jsp.java ( I can't tell you about websphere). For second.jsp in Tomcat, the HttpSession variable is not even declared and the implicit object session is not created.