servlets. TC classpaths

2009-02-03 Thread Dave Pawson
From the logs [Loaded SimpleServlet from file:/apps/tomcat6/webapps/atom/WEB-INF/classes/SimpleServlet.class] Feb 3, 2009 3:57:06 PM org.apache.catalina.core.StandardContext listenerStart SEVERE: Error configuring application listener of class listeners.ContextListener

Re: servlets. TC classpaths

2009-02-03 Thread David Smith
Yes -- your webapp's jars are placed in your webapps's WEB-INF/lib folder. Unjarred classes are placed in WEB-INF/classes w/ a folder layout mirroring the package layout for your classes. BTW, listeners.ContextListener AFAIK is not a tomcat class. Maybe you've copied a web.xml off the web and

Re: servlets. TC classpaths

2009-02-03 Thread Dave Pawson
2009/2/3 David Smith d...@cornell.edu: Yes -- your webapp's jars are placed in your webapps's WEB-INF/lib folder. Unjarred classes are placed in WEB-INF/classes w/ a folder layout mirroring the package layout for your classes. BTW, listeners.ContextListener AFAIK is not a tomcat class.