-
1. Re: emptySessionPath with HTTP/1.1 Connector
c.h. May 21, 2009 3:11 AM (in response to joe563za2)same problem.
in jboss4 works, in jboss5 doesn't -
2. Re: emptySessionPath with HTTP/1.1 Connector
webalgorithm Jun 14, 2009 2:43 PM (in response to joe563za2)Yep, same issue here. I am in the processing of upgrading from 4.0.5 GA to 5.1.0 GA. In my case in manifests itself even without load balancing. I am using mod_jk with rewrites.
My app is deployed as "web.war" (exploded - not sure if that makes any difference), <context-root>web</context-root>.
Requests such as http://hostname/web/myaccount.htm are 100% ok.
Requests such as http://hostname/web/myaccount.htm result in new sessionid 100% of the time.
Clearly an issue with cookie path.
Also interesting: I tested this with all 4.x versions of JBoss - no issues. All 5.x versions exhibit this behavior.
Any suggestions? I've tried playing around with emptySessionPath - does not seem to have much impact. -
3. Re: emptySessionPath with HTTP/1.1 Connector
webalgorithm Jun 14, 2009 2:56 PM (in response to joe563za2)"webalgorithm" wrote:
Sorry, please read this post instead of my prior one.
Yep, same issue here. I am in the processing of upgrading from 4.0.5 GA to 5.1.0 GA. In my case in manifests itself even without load balancing. I am using mod_jk with rewrites.
My app is deployed as "web.war" (exploded - not sure if that makes any difference), <context-root>web</context-root>.
Requests such as http://hostname/web/myaccount.htm are 100% ok.
Requests such as http://hostname/myaccount.htm result in new sessionid 100% of the time. (note that apache rewrites this url RewriteRule ^(\w+).htm(\w+)?$ web/$1.htm$2 [L])
Clearly an issue with cookie path.
Also interesting: I tested this with all 4.x versions of JBoss - no issues. All 5.x versions exhibit this behavior.
Any suggestions? I've tried playing around with emptySessionPath - does not seem to have much impact. -
5. Re: emptySessionPath with HTTP/1.1 Connector
joe563za2 Jun 15, 2009 7:09 AM (in response to joe563za2)Thanks