If i am making two
servlets say for logging into the application and logging out of the application. Now if I create a session in my logging servlet and then again in logging out I say HttpSession session = request.getSession(); and then somewhere there i invalidate the session.
Now i have two questions
1. Does the above means Iam creating two sessions for a client?
2. When i invalidate the session in logging out Servlet does that mean that iam invalidating the session of Logging Servlet for the client or Client is out of the session as a whole?