I have published two end points (Soap web service) using apache cxf. I am using a code first approach for web service development. Right now when I deploy the war of my application on Tomcat server, the wsdl is getting generated on two different URL.
<jaxws:endpoint id="LocationService" implementor="#location" address="/Location" /> <jaxws:endpoint id="groupService" implementor="#group" address="/Quote" /> http://localhost:8080/exemplar/Quote?wsdl http://localhost:8080/exemplar/Group?wsdl I want that this two end points should get register to a single address so that I have only one wsdl for my application. Is there any way to do it? -- View this message in context: http://cxf.547215.n5.nabble.com/How-to-register-multiple-endpoints-on-a-same-address-in-apache-cxf-JAXWS-tp5735165.html Sent from the cxf-user mailing list archive at Nabble.com.
