Is it possible to disable jsessionid for particular request in tomcat 7?

205 Views Asked by At

Is there any way to keep one particular request out of session?

Ch.7.6 of the Servlet specification (both 2.5 and 3.0 versions) says: "The session is considered to be accessed when a request that is part of the session is first handled by the servlet container."

I don't want that particular only one request (suppose /captureLastFileActiveTime) will be part of the session is first handled by the servlet container. All other requests should be part of the session is first handled by the servlet container. Is it possible?

I am using apache-tomcat-7.0.35 as my web server.

0

There are 0 best solutions below