Consider senario, I use servlets with the httpSession object in the servlet, and add some data to the session object, and the response sent to the client and client sends a request to the next page of the servlet that needs the information stored in the session object. Now, how can the web server notify the request specified by the client is associated with the perticular session object created by the previous request? Suppose cookies are disabled?
source
share