Hello everybody I'm trying to use JAX-WS (annotated classes) on top of Axis2. Although I've managed to deploy a POJO as a WS correctly, Axis2 names the using both the service name (SayHiWS) and the port (SayHi), like this:
> [INFO] Deploying JAXWS annotated class com.test.SayHiWS as a service - SayHiWS.SayHi So, in order to bind to the service, my client needs to point to this address: > http://testdomain/Test/services/SayHiWS.SayHi?wsdl Is there a way to set the name to just "SayHiWS"? So far I've tried to supply a custom "services.xml", but this deploys the WS twice with both names. Thanks in advance
