I have a singleton class that I want to load  The code is like such:

<%
    Pam pam = Pam.getInstance();
%>

I get a ClassNotFoundException which is odd seeing as how the following
code works fine

<%
    Pam pam = null;
%>

The fact that it finds Pam in the second example makes me wonder if
there is something Im doing wrong by using the standard getInstance()
method.  I have deployed the class files to the standard WEB-INF/classes
directory.

Is there a trick to getting it to load?

Thanks for any help

Thomas


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to