Deploy SOAP with OSGi in Eclipse

I am developing an application using OSGi-Equinox iwith Eclipse. Now I would like to use some web services. I manage to implement some simple web services using org.eclipse.equinox.http. Using this package, I send an HttpServletRequest and return an HttpServletResponse, where I write the โ€œresponseโ€ to PrintWriter.

Now I would like the messaging to be SOAP messages as well as WSDL. Can someone point me to a tutorial to do this using eclipse and OSGi? Is a marina a good option? Are there any exercises with Jetty and OSGi to implement SOAP?

Thanks!

Ana

+4
source share
1 answer

I found a very interesting tutorial using apache:

http://cxf.apache.org/distributed-osgi.html

+3
source

All Articles