I think I have the same Problem:
Environment:
Windows 2000
tomcat 4.1
j2sdk1.4.0_03
Netbeans 3.4
JAVA_HOME, TOMCAT_HOME, CATALINA_HOME are set, the classpath contains
everything ( I assume).
test.jsp
--------
<%@page contentType="text/html"%>
<html>
<head><title>JSP Page</title></head>
<body>
<% Quelle quelle = new Quelle(); %>
</body>
</html>
error message:
--------------
Cannot resolve symbol
symbol class Quelle ....
I put Quelle.class in
/<application>/WEB-INF/classes
/ROOT/WEB-INF/classes
even in
.../work/standalone/localhost/<application>
but with no success.
a simple test program like
public class test2 {
public test2() {
}
public static void main(String[] args) {
Quelle quelle = new Quelle();
}
}
compiles without error.
What is wrong?
jsp in general works fine, even with jdbc etc.
Regards
Dieter
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>