Re: How force Tomcat 5.5.4 to always use URL Rewriting

2005-08-14 Thread Paul Singleton
Rob Hunt wrote: Set the cookies attribute for the given (server.xml) context/ node to false. This will force Tomcat to rely only on URL rewriting. I am tempted to do this for our production applications, if only to simplify testing (presumably it will ensure I can have different sessions in

RE: How force Tomcat 5.5.4 to always use URL Rewriting

2005-08-14 Thread Al Koch
Set the cookies attribute for the given (server.xml) context/ node to false. This will force Tomcat to rely only on URL rewriting. Hi Rob, Thanks much. Your reply made me realize that I was searching for URL rewriting when I guess I should have been looking for turn off cookies! Once I took

How force Tomcat 5.5.4 to always use URL Rewriting

2005-08-13 Thread Al Koch
Hello, I have a servlet in which I am calling HttpServletResponse.encodeURL() for all of the URLs that the servlet generates. From the various references that I have on encodeURL() I understand that Tomcat should, by default, use Cookies if they are supported in a browser to implement session

Re: How force Tomcat 5.5.4 to always use URL Rewriting

2005-08-13 Thread Rob Hunt
Set the cookies attribute for the given (server.xml) context/ node to false. This will force Tomcat to rely only on URL rewriting.