Hi,
Please check whether u have entered the "context" in server.xml of Tomcat4.0
Something similar to this..
 
<Context path="/SimpleServlet" docBase="D:/test" debug="0"
                   reloadable="true" crossContext="true">
 
</Context>
 
Also u need to add the servelet mapping in web.xml for ur servlet. ( check for syntax in tomecat_home\conf\web.xml)
 
Tomcat 4 does not use your classpath. Instead, you
need to put your jars/classes into special directories
where Tomcat can find them. 
 
http://jakarta.apache.org/tomcat/tomcat-4.0-doc/class-loader-howto.html
Harish

Reply via email to