I'm using Jersey to develop some RESTful Web Services. I'd like to create these as OSGI bundles that I can deploy. Is there any (relatively easy) way to do this? I'm currently running Glassfish V3, and am deploying bundles to the underlying Felix, but I'd like to run just Felix (without GF) and have the Web Services exposed (through the Felix http bundle?).
I looked at the example from the Apache Felix HTTP Service page (http://felix.apache.org/site/apache-felix-http-service.html) where the ServiceReference from the HttpService class is used to register a pojo that extends HttpServlet. Would It be similar for a Jersey POJO? Thanks, Larry

