| Summary: | Osgi Http Service does not create SessionHandler | ||
|---|---|---|---|
| Product: | [RT] Jetty | Reporter: | Jan Rosczak <jan.rosczak> |
| Component: | osgi | Assignee: | Hugues Malphettes <hmalphettes> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | gregw, jetty-inbox, mgorovoy, tbecker |
| Version: | 7.1.5 | ||
| Target Milestone: | 7.2.x | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
Jan Rosczak
Hugues, we want Thomas to learn about the OSGi integration. Is this an issue he could start looking at? (In reply to comment #1) > Hugues, > > we want Thomas to learn about the OSGi integration. Is this an issue he could > start looking at? Sure sorry I let this one goes done the pile: I think we discussed it on the mailing list fixed it there: http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/jetty-osgi/jetty-osgi-httpservice/contexts/httpservice.xml <Configure class="org.eclipse.jetty.servlet.ServletContextHandler"> <!-- this configures the servlet session manager --> <Set name="SessionHandler"> <New class="org.eclipse.jetty.server.session.SessionHandler"/> </Set> <!-- this servlet provides the OSGi HTTP Service once it is initialized --> <Call name="addServlet"> <Arg>org.eclipse.jetty.osgi.httpservice.HttpServiceServletX</Arg> <Arg>/*</Arg> <Set name="InitOrder">0</Set> </Call> </Configure> This was fixed a while ago when the session handler was added to the context file in charge of creating the servlet for the http service: http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/jetty-osgi/jetty-osgi-httpservice/contexts/httpservice.xml |