Stateless Tomcat Application

2006-06-28 Thread Andrew Miehs
Dear List, I have an simple application that I would like to have cached by a squid server. My question is, is it possible to disable the Tomcat generating JSESSIONIDs, as these requests are all stateless. Thanks in advance, Regards Andrew

Re: Stateless Tomcat Application

2006-06-28 Thread dirk ooms
AFAIK there are 2 situations in which Tomcat creates a HttpSession (generating JSESSIONIDS) without an explicit call to request.getSession(): - when the form-based login procedure is used - when jsp's are compiled, a session will automatically be created by the JSP engine (also for jsp's that

Re: Stateless Tomcat Application

2006-06-28 Thread Leon Rosenberg
On 6/28/06, dirk ooms [EMAIL PROTECTED] wrote: AFAIK there are 2 situations in which Tomcat creates a HttpSession (generating JSESSIONIDS) without an explicit call to request.getSession(): - when the form-based login procedure is used - when jsp's are compiled, a session will automatically be