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
Asked
Active
Viewed 8,431 times
2 Answers
2
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)

Mark O'Connor
- 76,015
- 10
- 139
- 185
1
It seems like there is a bridge to use JAX-WS with Jetty. Though I never use it personally.

ewernli
- 38,045
- 5
- 92
- 123
-
Is it required to use JAX-WS or is there something built into Java 6 – Esben Skov Pedersen Jan 11 '10 at 14:40
-
Also the link gives an invalid svn co path – Esben Skov Pedersen Jan 11 '10 at 14:53
-
alt link (other branches are there too:) - https://svn.codehaus.org/jetty-contrib/jetty/branches/jetty-6.1/contrib/j2se6/ – jsight Jan 11 '10 at 17:13
-
@ewernli what exactly am i supposed to be looking for. I am already using the hightide distribution do I need something else – Esben Skov Pedersen Jan 12 '10 at 07:24