you need to import the bean before you can use it - finally remembered this.
it's been discussed a lot on this list. i think -- or maybe i'm remembering
something else.
try making a line at the top of your jsp that says:
<%@ page language="java" contentType="text/html" import="LogonData" %>
If you put your classes in packages this doesn't happen, AFAIK.
fillup
On 5/24/02 12:29 AM, "Glen Verran" <[EMAIL PROTECTED]> 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]>