Hello
How to setup CXF not to use Jetty when defining "adress" in "jaxws:endpoint". When I try to pass such: address="/service" i got error. Only when I give full address port (port has to be different from Tomcat's).

eg. (this one works fine)

<jaxws:endpoint id="MyServiceService"
 implementor="#MyServiceServiceImpl"
       address="http://localhost:8081/MyService
"/>


I want to use this one but not working :(

<jaxws:endpoint id="MyServiceService"
 implementor="#MyServiceServiceImpl"
       address="/MyService"/>

Reply via email to