Hello,
Yesterday I asked a question that seems cant be answered. So i will
rephrase my question...
I am new to CXF so please bear with me:
I have created a standalone spring application.
I have a spring config file where I have defined a jetty Server
instance, as well as a CXFServlet, which is registered to this Server.
When I target the URL for that servlet I get the expected "No services
have been found.", which is perfect.
I then, from the same spring config file, specify the following:
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<jaxws:endpoint id="webService" implementor="com.xx.EndpointImp"
address="/endpoint">
</jaxws:endpoint>
I would then expect the service to be published at the "<servlet
url>/endpoint". But its not. Where am I going wrong?
I am confused as to what links up the endpoint to the CXFServlet
instance I have created. Please note I don't have a
web.xml as it is purely configured in spring.
Any help or guidance will really be appreciated.
Paul