views:

486

answers:

2

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

+1  A: 

It seems like there is a bridge to use JAX-WS with Jetty. Though I never use it personally.

ewernli
Is it required to use JAX-WS or is there something built into Java 6
Esben Skov Pedersen
Also the link gives an invalid svn co path
Esben Skov Pedersen
But the maven repo link seems ok: http://oss.sonatype.org/content/groups/jetty/
ewernli
alt link (other branches are there too:) - https://svn.codehaus.org/jetty-contrib/jetty/branches/jetty-6.1/contrib/j2se6/
jsight
@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
A: 

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