Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded Jetty and SOAP

I am trying to run an embedded Jetty and would like to expose a soap webservice. The project is loaded as a WAR generated by netbeans. The webservice is generated from a WSDL. What is the simplest way to add SOAP support to embedded Jetty

like image 965
Esben Skov Pedersen Avatar asked Jan 11 '10 14:01

Esben Skov Pedersen


1 Answers

The axis2 web services framework can be deployed as a normal web application onto your embedded Jetty instance.

It provides a framework for the execution of your web service. You can embed such services within the Axis2 war file or deploy them separately .aar files (Special Axis2 archive file format)

like image 66
Mark O'Connor Avatar answered Oct 06 '22 01:10

Mark O'Connor