Hi
I have a servelet where i create a session using
HttpSession session = request.getSession(true);

From this servlet , i pass the request to a jsp .
I m able to access the session which was created in the servlet in this jsp.i have used
HttpSession session = request.getSession(false);


From this jsp i give action to another jsp.
In this jsp i dont have the objects in session which i have put in the previous page. I find that the httpsession object is different here.

Do u have any inputs on these??