I'm trying to get a CXF service running on existing jetty server (not stand-alone). I see the list of services at http://localhost:9100/cxfservices But, when I click on the wsdl link, I get 404 error. What am I missing here?
WSDL link is:http://localhost:9100/cxfservices/QueryService?wsdl
Endpoint address: http://localhost:9100/cxfservices/QueryService
web.xml
...
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/cxfservices/*</url-pattern>
</servlet-mapping>
...
beans.xml
...
<jaxws:endpoint id="queryService"
implementor="com.sap.odp.cxf.QueryServiceImpl"
address="/QueryService"/>
...