Re: jsessionid appended to URL and page not found`

2007-02-08 Thread Joe Germuska
The solution Christopher and Dave discuss above can be handled with this in the Apache httpd.conf file: RewriteRule ^(.*);jsessionid=.*$ $1 This strips the session ID from anything that the HTTPD server is handling, although it should still get passed through the proxy. To be honest, our ap

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dave, Dave Newton wrote: > --- Vinod Kumar <[EMAIL PROTECTED]> wrote: >> So I have apache+tomcat integrated. What >> confirguration settings, do I need to make this work >> in this scenario. > > IIRC when we had this problem we used one of the > rew

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Dave Newton
--- Vinod Kumar <[EMAIL PROTECTED]> wrote: > So I have apache+tomcat integrated. What > confirguration settings, do I need to make this work > in this scenario. IIRC when we had this problem we used one of the rewrite mods to nudge Apache to know that the ;jsessionid etc. was special. There's pr

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Vinod Kumar
Hi Joe, Thanks for your reply. Basic Http Service is handled by apache web server and servlet requests are handled by Tomcat. So I have apache+tomcat integrated. What confirguration settings, do I need to make this work in this scenario. Thanks Vinod --- Joe Germuska <[EMAIL PROTECTED]> wrote:

Re: jsessionid appended to URL and page not found`

2007-02-07 Thread Joe Germuska
What is handling the basic HTTP service for your application? If it is not a servlet container, but rather an HTTP server which proxies certain requests to a servlet container, then there is probably just a configuration problem. The scenario you describe is standard. A Servlet Container (or ma