Question : When does session gets created

Hi Experts
 
i have a j2ee application deployed on websphere 6.0 cluster. My welcome page is my login page (login.jsp) and i have set the session = "false" in the page directive. But when i am monitoring the live sessions. It seems like app server is creating a session when the first login page is launched.
What do i need to do to avoid the session from being created.

thanks
S

Answer : When does session gets created

>
>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.
Random Solutions  
 
programming4us programming4us