Kategorie: osgi
-
Adding additional ServletContext in Pax Web
If you want to add certain special handlers for Jetty you just go ahead and alter the jetty.xml file. Usually you just add the following peace of code <Set name="handler"> <New class="org.eclipse.jetty.server.handler.HandlerList"> <Set name="handlers"> <Array type="org.eclipse.jetty.server.Handler"> <Item> <New class="org.eclipse.jetty.servlet.ServletContextHandler"> <Set name="contextPath">/app</Set> <Set name="resourceBase">/path/to/your/share</Set> <Call name="addServlet"> <Arg>org.eclipse.jetty.servlet.DefaultServlet</Arg> <Arg>/</Arg> </Call> </New> </Item> </Array> </Set> </New> </Set> This…
-
Cool slides about OSGi
created by Richard S. Hall
-
What is the difference between Karaf and Felix?
a nice little question with simple answer 🙂 what's the difference?
-
Pax Web 1.0.2 Released
I just released Pax Web in Version 1.0.2 It includes several bug fixes and some improvements. Two major issues which are solved now are a better support for authentication and better support for JSF rendering. The form based login was already supported but a default realm for authentication was missing. That’s why certain wars didn’t…