https://bz.apache.org/bugzilla/show_bug.cgi?id=69814
--- Comment #3 from Mark Thomas <[email protected]> --- The Javadoc for HttpSession.isNew() is interesting. <quote> Returns true if the client does not yet know about the session or if the client chooses not to join the session. </quote> Given that the server can only tell what the client has chosen if the client returns the session ID to the server that might as well be: "Returns true until the client chooses to join the session." Which means that, if this were fixed, you'd have the inverse of this bug where, once the second request has been received, session.isNew() in the first request would return false. I think that is consistent with the current Javadoc for HttpSession.isNew() and also looks to be simple to implement. I'll start work on a test case with a viw to fixing this as proposed. As soon as the second request is received (and the session ID has been processed) isNew() will start returning true. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
