RE: Failure to load listener path dependent?

2003-11-17 Thread Kenneth LaFrance
That was it - thank you. -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 11:40 To: Tomcat Users List Subject: Re: Failure to load listener path dependent? Kenneth, > As soon as I > add a listener I get a "NoClassDe

Re: Failure to load listener path dependent?

2003-11-17 Thread Christopher Schultz
Kenneth, As soon as I add a listener I get a "NoClassDefFoundError". Here is a snippet from the java.lang.NoClassDefFoundError: com/jspbook/SiteLogger (wrong name: SiteLogger) Your SiteLogger.java file is missing a "package" declaration at the top of the file. That's why it can find the file, but

Failure to load listener path dependent?

2003-11-17 Thread Kenneth LaFrance
Hi, I'm a new user using Tomcat 5.0 on W2K. I'm going through some tutorials and am having trouble adding listeners where I want them. Below my webapps/WEB-INF/classes directory I have a com/jspbook directory. I have a number of servlets in the jspbook directory that work fine. As soon as I add