Apache TomcatGeneral discussion of the Apache Tomcat servlet container. For discussions specific to the Professional Apache Tomcat book, please see the book discussion forum for that book.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Apache Tomcat section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
hi every body,
i am new to servlets and tomcat.
i did exactly the following steps.
- i downloaded j2sdk1.4.2
- i set the java home to c:\j2sdk1.4.2
- i downloaded tomcat 3.3
- i set the tomcat home to c:\program files\jakarta-tomcat-3.3.2
- I set the classpath to "C:\Program Files\jakarta-tomcat-3.3.2\lib\common\servlet.jar;
C:\Program Files\j2sdk1.4.2-14\bin"
i wrote that small code just to test and i am going to complete it later
Hi,
This error comes when you dont have servlet/jsp api jar files in class path. Add servlet-api.jar and jsp-api.jar files which are in TOMCAT_HOME/common/lib directory to your class path and then try to compile your code.