Is there any Java library allowing to build a simple standalone webservice server without any application server framework?
views:
766answers:
4
+6
A:
Java 6 contains JAX-WS, which makes it very easy to host a web service in a stand-alone application:
javax.xml.ws.Endpoint.publish("http://localhost:8000/myService/", myServiceImplementation);
Joachim Sauer
2009-02-03 14:04:43
+2
A:
Axis 2 has a simple standalone server (see http://ws.apache.org/axis2/1_4_1/installationguide.html)
Vinze
2009-02-03 14:13:24