[equinox-dev] Jetty Servlet Unavailable Exception

2010-06-09 Thread Srijith Kochunni
Hi, I have a webApp which I am deploying with Equinox Jetty Server. It works fine, however at times, when I stop and start the application, I get the following exception and my Application is then not accessible. 2010-06-09 15:18:35.014:/MyWebApp:WARN: unavailable

[equinox-dev] context classloader support specifics?

2010-06-09 Thread Scott Lewis
Hi, Would someone be able to point me at docs on the context classloader support specifics in Equinox? Thanks, Scott ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

Re: [equinox-dev] Jetty Servlet Unavailable Exception

2010-06-09 Thread Simon Kaegi
Hi Srijith, This sort of error happens when you have more than one provider of the Servlet API. In this case your application is binding to a different exporter of the Servlet API than what's being used by Jetty. It's usually simplest to just have the one javax.servlet bundle exporting the

Re: [equinox-dev] Jetty Servlet Unavailable Exception

2010-06-09 Thread Srijith Kochunni
Hi Simon You were right. There was a javax.servlet bundle in my osgi runtime as well as a servlet-api.jar in my webapps shared library folder which must have caused this issue. However I find that my problem does not go away. The only thing is the