- This topic has 1 reply, 2 voices, and was last updated 16 years, 6 months ago by Loyal Water.
-
AuthorPosts
-
Erik WeihrauchParticipantHello,
I have big Problem with deploying a project out of MyEclipse into Tomcat 6.0.14. I get the following Exceptions everytime and I don’t know, what I can do against it. Something must be wrong. I try to deploy the project to tomcat 5.5 and I get the same error. I don’t know which classes or jars are missed.Apr 16, 2008 2:52:06 PM org.apache.catalina.core.ApplicationContext log
INFO: ContextListener: contextInitialized()
Apr 16, 2008 2:52:06 PM org.apache.catalina.core.ApplicationContext log
INFO: SessionListener: contextInitialized()
Apr 16, 2008 2:52:07 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8180
Apr 16, 2008 2:52:07 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Apr 16, 2008 2:52:07 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=1/76 config=null
Apr 16, 2008 2:52:07 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 4722 ms
Apr 16, 2008 2:52:09 PM org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: init: Associated with Deployer ‘Catalina:type=Deployer,host=localhost’
Apr 16, 2008 2:52:09 PM org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: init: Global resources are available
Apr 16, 2008 2:52:09 PM org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: list: Listing contexts for virtual host ‘localhost’
Apr 16, 2008 2:52:24 PM com.icesoft.faces.webapp.http.servlet.SessionDispatcher sessionCreated
WARNING: java.lang.NoClassDefFoundError: javax/faces/FactoryFinder
Apr 16, 2008 2:52:24 PM com.icesoft.faces.webapp.http.servlet.SessionDispatcher notifySessionInitialized
SEVERE: java.lang.RuntimeException: java.lang.NoClassDefFoundError: javax/faces/FactoryFinder
Apr 16, 2008 2:52:24 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Persistent Faces Servlet threw exception
java.lang.NullPointerException
at com.icesoft.faces.webapp.http.servlet.SessionDispatcher.service(SessionDispatcher.java:35)
at com.icesoft.faces.webapp.http.servlet.PathDispatcher$Matcher.serviceOnMatch(PathDispatcher.java:52)
at com.icesoft.faces.webapp.http.servlet.PathDispatcher.service(PathDispatcher.java:29)
at com.icesoft.faces.webapp.http.servlet.MainServlet.service(MainServlet.java:79)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)Thanks for your help
regards
Erik
Loyal WaterMemberI googled javax.faces.FactoryFinder and see that it’s part of the Java EE 5 /JSF 1.2 specification… so it’s a standard JSF class.
If your getting the NoClassDefFound for this class, my guess is that the core JSF libraries in your build path are not getting deployed OR they aren’t there.
Make sure you don’t have errors marked next to the jars on your build pathalso make sure he has the right ones on the path.
-
AuthorPosts