Re: sessions not persisting between servlet calls

2007-07-30 Thread Chase Yarbrough
Hey All, Thanks for all your help. I've fixed it! For future reference, the problem was similar to what was described. The path in the cookie was different because I proxied /webappnameservlets to /webappname. When I changed the proxy so that the directory names matched, the sessions started w

Re: sessions not persisting between servlet calls

2007-07-29 Thread Filip Hanik - Dev Lists
David Smith wrote: If you are proxying your webapp, did you also set proxyName and proxyPort in your connector config for port 8081 in server.xml? in httpd.conf use ProxyPreserveHost, and that way you only have to set proxyPort in server.xml but even without proxyPort/proxyName, your cookies sh

Re: sessions not persisting between servlet calls

2007-07-29 Thread David Smith
If you are proxying your webapp, did you also set proxyName and proxyPort in your connector config for port 8081 in server.xml? See http://tomcat.apache.org/tomcat-6.0-doc/config/http.html --David Chase Yarbrough wrote: Hello, My sessions are not persisting between servlet calls within the s

sessions not persisting between servlet calls

2007-07-29 Thread Chase Yarbrough
Hello, My sessions are not persisting between servlet calls within the same webapp! I set a session in one servlet call, and get it in another within the same webapp, and it creates a new session, with a different session ID. I think the problem might have something to do with the path of the se