-
Bug
-
Resolution: Done
-
Blocker
-
7.2.2.GA
HttpServletRequest.getRequestedSessionID() is incorrectly returning a newly generated session ID instead of the requested ID in EAP 7 when using URL session tracking.
Reproduction:
- deploy attached test.war.
- access http://localhost:8080/test/
(or modify the host:port as necessary)
It makes two calls to request.getRequestedSessionId(), one before creating a session and one after.
These should both print null (since no jsessionid was passed on the URL). But instead the second prints the new ID.
Or access http://localhost:8080/test/;jsessionid=test
This should print "test" twice, but instead the second prints the new ID.
The issue appears to be specific to URL session tracking, and was not reproduced when using COOKIE tracking.
The issue is specific to EAP 7 and does not occur on EAP 6.
- clones
-
UNDERTOW-1575 HttpServletRequest.getRequestedSessionId() incorrectly returns a newly generated session id instead of the requested session id when session tracking mode is set to URL
- Resolved
- is incorporated by
-
JBEAP-17277 [GSS](7.2.z) Upgrade Undertow from 2.0.22 to 2.0.25.SP1
- Closed
- links to