Servlet chaining in Tomcat

2000-11-22 Thread Rama Venkata Kunapuli
Folks: I am trying to chain servlets so output of one is directed to next servlet. Lacking information, I have tried modifying web.xml and made the following entries -- ofcourse, it didn't work! servlet servlet-nameServletChain/servlet-name

Re: NoClassDefFoundError in Tomcat installation

2000-11-17 Thread Rama Venkata Kunapuli
Hi: I got similar error while trying to execute build.bat file to compile my servlets. I have solved is by making sure that the following are in the CLASSPATH. jdk's tools.jar -- (needed if you running ant) jaxp.jar -- (needed if you are running ant) parser.jar -- server.jar -- servlet.jar

Re: very very urgent!!!

2000-11-15 Thread Rama Venkata Kunapuli
Rasika: Please see Tomcat development documentation in jakarta-tomcat\doc\appdev. It has excellent approach to build your servlet/jsp applications. In short you should make a directory for your application. Say c:\test\cusinf where cusinf is the application. cd test\cusinf mkdir src mkdir