Quelle should be in a package and be imported.

E.g.: if the package name is foo

- the class file has to be WEB-INF/classes/foo/Quelle.class
- You need the following in test.jsp
  <@ page import="foo.Quelle" />
- You need a package statement in Quelle.java
  package foo;

> -----Original Message-----
> From: Dieter Roßbach [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 23, 2003 4:30 PM
> To: Tomcat Users List
> Subject: RE: Strange Class Loading problem
> 
<snip/>
>
> test.jsp
> <%@page contentType="text/html"%>
> <html>
> <head><title>JSP Page</title></head>
> <body>
> 
> <% Quelle quelle = new Quelle(); %>
> 
> </body>
> </html>
> 

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

Reply via email to