Anja,
If you are using Tomcat 3.3 you need to create an XML file (apps-applicationname.xml)
where you have to declare the new context where your WEB-INF directory is...
Otherwise, if you are using Tomcat 3.2 or less, you have to modify the server.xml file
using the new Context entry.
Is something like this:
<Context path="/applicationname"
docBase="webapps/applicationname"
crossContext="false"
debug="0"
reloadable="true" >
</Context>
Hope this help you..
Anja Falkner wrote:
> Hello,
>
> at setting up a new context for Tomcat, I must have forgotten something, because
>tomcat doesn't find my classes in WEB-INF/classes. The following fault appears:
>
> login_0005ftest$jsp.java:71: Class org.apache.jsp.DBSConnect not found.
> DBSConnect connect = new
>DBSConnect();
>
> Until now I thought: When Tomcat is restarted, it recognizes the content in
>WEB-INF/classes.
>
> But perhaps I have to make some entries in server.xml or web.xml referring to this
>classes?
>
> Thank you for any help
>
> Anja