Hi All, I have a quick question. I'm using cxf 2.2.3 and I want to register a service (the server side) via Spring. My web.xml contains <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:nl/topicus/cluedo/spring-web.xml </param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <servlet> <display-name>CXF Servlet</display-name> <servlet-name>CXFServlet</servlet-name> <servlet-class> org.apache.cxf.transport.servlet.CXFServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>CXFServlet</servlet-name> <url-pattern>/services/cxf/*</url-pattern> </servlet-mapping>
and my spring-web.xml contains. <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="cluedoService" implementor="nl.topicus.cluedo.webservices.CluedoService" address="/incidenten" endpointName="irisService" ></jaxws:endpoint> but when I go to the url of the servlet, there is a message that no service are found. As a webserver I use Jetty and I do get some messages at start up time. 30-jun-2010 9:21:23 org.apache.cxf.transport.servlet.CXFServlet updateContext INFO: Load the bus with application context 30-jun-2010 9:21:24 org.apache.cxf.bus.spring.BusApplicationContext getConfigResources INFO: No cxf.xml configuration file detected, relying on defaults. 30-jun-2010 9:21:30 org.apache.cxf.transport.servlet.AbstractCXFServlet replaceDestinationFactory INFO: Replaced the http destination factory with servlet transport factory Does anybody know what I am doing wrong? thanks a bunch
