I need to modify an existing Java SE process to expose a web service.
I notice that ApacheCXF can expose web services from a Java SE process, but my company is pushing me strongly towards using Axis2.
All the examples seem to assume you're running a fully-fledged servlet container. But since Java SE 6 includes com.sun.net.httpserver, I was hoping there'd be a way of avoiding setting up something like Jetty or Tomcat.
How can I use Axis2 to do this?