Community
Participate
Working Groups
Jetty 8.0.0.M2 AbstractSessionManager is missing the setSessionPath() function that was added in 7.0.x (not sure which version and I can no longer find the bug report). After the 7.0.x fix, we were using .xml files to configure jetty. The session path was configured by setting the context-param: org.eclipse.jetty.servlet.SessionPath In 8.0, we're embedding jetty and configuring the session path programmatically. setSessionPath() is missing preventing us from sharing a session id across contexts. Temporarily, I've extended JdbcSessionManager to add setSessionPath(). This seems to have done the trick.
I will check this after 7.4 is merged with jetty-8
AbstractSessionManager.setSessionPath() was sync'ed across to jetty-8 in time for jetty-8.0.0.M3.