jsessionid appended to URL and page not found` 2007-02-08 - By Joe Germuska
Back 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 apps depend on cookies for other reasons so if URL rewrite sessions didn't work, we might never notice.
The fact that your proxy config is not correctly brokering some URLs over to the servlet container would depend on how your proxy config is set up; I'm not very experienced in actally setting this up, but my diagnosis is correct, then the Struts mailing list is not the best place for the question anyway...
Joe
On 2/7/07, Christopher Schultz <chris@(protected)> wrote: > > -- --BEGIN PGP SIGNED MESSAGE-- -- > Hash: SHA1 > > Dave, > > Dave Newton wrote: > > --- Vinod Kumar <vkmatri@(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 probably a better solution these days :) > > For me, this strategy is only necessary when I want Apache httpd to > serve static content that has an encoded jsessiond in the URL. Anything > that gets passed-through to the app server (Tomcat in my case) is > handled correctly. > > Use of mod_rewrite is only necessary when Apache httpd incorrectly > includes the ";jsessionid" as part of the filename, and therefore fails > to locate "some-static.html;jsessionid=ABCDEF" in the filesystem. > mod_rewrite can be used to remove the jsessionid, allowing Apache httpd > to correctly locate the static resource on the disk. > > - -chris > -- --BEGIN PGP SIGNATURE-- -- > Version: GnuPG v1.4.6 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFFyoWQ9CaO5/Lv0PARArqsAKDEW+7/4JQmg1QkbK8XiqL1elywvQCfVxa5 > dteBRDBaFEmOqbktSGxrti0= > =vchZ > -- --END PGP SIGNATURE-- -- > > -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ > To unsubscribe, e-mail: user-unsubscribe@(protected) > For additional commands, e-mail: user-help@(protected) > >
-- Joe Germuska Joe@(protected) * http://blog.germuska.com
"The truth is that we learned from Jo?o forever to be out of tune." -- Caetano Veloso
|
|