Hi

I found your fault , you misspelling the CXFServlet by CFXServlet.
Your web.xml should be

<!-- CXF Web Services -->
   <servlet>
       <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/*</url-pattern>
   </servlet-mapping>

Willem.


green804 wrote:
I am migrating from xfire to to cxf.  I am using jetty and spring.  When I
try to start up my application, I'm getting the following error message.

FATAL 2007-08-22 08:17:39,301 [main] - testapp.TestApplication - Could not
start the Jetty server:
org.mortbay.util.MultiException[java.lang.ClassNotFoundException:
org.apache.cxf.transport.servlet.CFXServlet]

This is the mapping in my web.xml file.
    <!-- CFX Web Services -->
    <servlet>
        <servlet-name>CFXServlet</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CFXServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>CFXServlet</servlet-name>
        <url-pattern>/services/*</url-pattern>
    </servlet-mapping>

This is where the problem is.  If I remove this, the application starts up
fine.  I've made sure that this jar is in my classpath.  Does any have any
other options for me?  I need to get this up and running this morning.

Reply via email to