Does your JSP page include the right "import" declaration, something like
this:

<%@ page contentType="text/html; charset=iso-8859-1" language="java"
import="java.sql.*,innovtech.util.*"%>

Note the import attributte.

-Brian


-----Original Message-----
From: Jan Behrens [mailto:[EMAIL PROTECTED]
Sent: Friday, April 04, 2003 12:09 PM
To: Tomcat Users List; [EMAIL PROTECTED]
Subject: RE: Not seeing new classes


> -----Original Message-----
> From: Frank Garber [mailto:[EMAIL PROTECTED]
> Sent: Friday, April 04, 2003 10:06 PM
> To: [EMAIL PROTECTED]
> Subject: Not seeing new classes
>
>
> I'm playing with the Tomcat example jsp files, specifically the
> date.jsp file.
>
> I can add a statement like:  <%= new java.util.Date() %> <br />
> to kick out the current date as a string, but when I try to access
> a java class
> I've written, I get a 'cannot resolve symbol'.  The error happens
> as the jsp is
> being compiled.
>
> Here's the offending statement:
> <%= Yada.getString() %> <br />
>
> Here's the class definition:
> public class Yada {
>       public static String getString() {
>               return "Hello from Yada.getString()";
>       }
> }
>
> The Yada.java and Yada.class file lives in the WEB-INF\classes directory.
>
> The WEB-INF\classes directory is in the classpath as per the screen dump
I'm
> getting.
>
> Frank
>
> =====

Hi Frank,

just asking a maybe stupid question... but have you reloaded the examples
webapp through the webapp-manager?

regards, Jan


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


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

Reply via email to