Is your jsp part of the ROOT application? Each app has its own copy of
/WEB-INF/classes & /WEB-INF/lib.
Also, if you are placing classes directly in the /classes folder, the class
file must be placed in nested folders matching the package name of the
class - this is probably why some people are recommending using jar files
in the lib folder since the package info is stored in the jar file itself
there is no subfolder organization to watch out for.
Good luck,
Eric
At 02:29 AM 5/24/2002, you wrote:
>Yes I did, and still no luck. The error message that I am getting from
>compiler is:
>
>C:\tomcat\work\localhost\_\Relations\jsp\Logon$jsp.java:56: Class
>org.apache.jsp.LogonData not found.
> LogonData user = null;
> ^
>
>I currently have my classes in c:\tomcat\webapps\ROOT\WEB-INF\classes
>
>~Glen
>
>----- Original Message -----
>From: <[EMAIL PROTECTED]>
>To: "Tomcat Users List" <[EMAIL PROTECTED]>
>Sent: Friday, May 24, 2002 8:57 AM
>Subject: Re: Tomcat won't pick up my classes
>
>
> >
> > Did you try restarting Tomcat after putting the class file in the correct
> > place?
> >
> >
> >
> >
> > "Glen Verran"
> > <glen.verran@trad To:
><[EMAIL PROTECTED]>
> > eroot.com> cc: (bcc: Raymond Pau/adc)
> > Subject: Tomcat won't pick
>up my classes
> > 05/24/2002 02:30
> > PM
> > Please respond to
> > "Tomcat Users
> > List"
> >
> >
> >
> >
> >
> >
> > Hi there
> >
> > I am using Tomcat 4.0.3 full on Windows 2000. I wrote a small jsp that
> > references a class that I wrote in java. When the jsp gets called, an
> > error
> > is returned that it cannot find the class I am specifying. I copiied my
> > java class file into the WEB_INF/classes path off my ROOT folder and
> > $CATALINA_HOME/classes, as well as other places I could find a classes
> > folder, but still no luck. This is the jsp that I call once I have
> > submitted information via the form. The class LogonData is correct as is.
> > It is a bean that contains get and set methods and 3 properties. I hope
> > that you can help me on this one? Can you tell me how I can tell Tomcat
>to
> > go and load my class up when it compiles?
> >
> > Thanks
> > ~Glen
> >
> > <jsp:useBean id="user" class="LogonData" scope="session"/>
> > <jsp:setProperty name="user" property="*"/>
> > <HTML>
> > <BODY>
> > <%
> > switch (user.getUserType()) {
> > case 1 : %>
> > <jsp:include page="Broker.html"/>
> > <%
> > break;
> >
> > }
> > %>
> > </BODY>
> > </HTML>
> >
> >
> > --
> > To unsubscribe, e-mail: <
> > mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail: <
> > mailto:[EMAIL PROTECTED]>
> >
> >
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>
>--
>To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>