Session tracking with cookies turned off and url should not have session id
I am working in Struts and jsp. I need to keep my cookies turned off as i need multi-tab browser support. So a solution is required to hide the session id in the URL and still keep track of the session. Plea开发者_StackOverflow中文版se note that the cookies have to be turned off and the session id has to be avoided in the URL. thanks in advance.
The Java Servlet API allows two mechanisms to track sessions: cookies and URL rewriting. You have to pick one or the other.
精彩评论