Web Service « osgi « Java Enterprise Q&A





1. Accessing a web service from your browser    stackoverflow.com

I'm relatively new to how web services work so I've gone though a tutorial from http://blog.saminda.org/2008/07/light-weight-osgi-based-axis2-powered.html which sets up a web service that prints hello. The code to print out hello ...

2. Starting Wicket web application with OSGi HTTP Service    stackoverflow.com

I'm trying to start a Wicket Application using Felix implementation of OSGi HTTP service, for that I just register the service using WicketServlet with applicationClassName parameter:

props.put("applicationClassName", MainApplication.class.getName());
service = (HttpService)context.getService(httpReference);
service.registerServlet("/", new WicketServlet(), ...

3. Are there any OSGi web service / SOAP clients out there?    stackoverflow.com

I'm looking for any webservice client that can be run inside an OSGi container and connect to a simple web service using SOAP, doesn't sound so hard does it? Oh, and ...

4. Using Endpoint.publish() in OSGi to publish web service?    stackoverflow.com

Is there a way to use Endpoint.publish() in an OSGi bundle to publish a web service? When I run the code from the command line it works, but the same code ...

5. How to run metro webservice on OSGi + jetty?    stackoverflow.com

I'm trying to get a WebService (wsdl) to work on Jetty using OSGi (Felix) + Metro ? I got Servlets and JSP's working on OSGi + Jetty, but not a WebService using ...

6. How to publish a Web Service over HTTPS with JAX-WS in an OSGi container?    stackoverflow.com

With Java it is easy to consume a Web Service over HTTPS but how do you publish one? The standard JAX-WS implementation doesn't support it. We tried Jetty but Jetty does not ...

7. osgi soap web service client    stackoverflow.com

I am trying to get a web service client working from osgi, I am using felix as my container. So far I have tried using apacheCXF. This would not ...