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 says "wrong name". The name it sees is the fully-qualified class name, which in the case has no package. Add the package declaration and you should be fine.


-chris


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to