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
=====
__________________________________________________
My full time permanent email address is always: [EMAIL PROTECTED]
__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - File online, calculators, forms, and more
http://tax.yahoo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]