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.
--
View this message in context:
http://www.nabble.com/CXF-and-Jetty---Class-not-found-exception-tf4312416.html#a12277481
Sent from the cxf-user mailing list archive at Nabble.com.