java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest
at com.oreilly.servlet.multipart.MultipartParser.(MultipartParser.java:103)
at com.oreilly.servlet.multipart.MultipartParser.(MultipartParser.java:83)
at com.oreilly.servlet.MultipartRequest.(MultipartRequest.java:117)
at com.oreilly.servlet.MultipartRequest.(MultipartRequest.java:75)
at upload.doPost(upload.java:22)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) .....cut
extra messages
This seems strange to me because the servlet jar is in my CLASSPATH and
TOMCAT appears to be using it...
From the tomcat launch script..
Using CLASSPATH:
C:\tomcat\classes;C:\tomcat\lib\ANT.JAR;C:\tomcat\lib\JAXP.JAR;
C:\tomcat\lib\SERVLET.JAR;C:\tomcat\lib\PARSER.JAR;C:\tomcat\lib\WEBSER~1.JA
R;C:\tomcat\lib\JASPER.JAR;C:\jdk1.3;c:\jdk1.3\lib\servlet.jar;c:\jdk1.3\\li
b\tools.jar
Can anyone suggest where I might look for my mistake?
--
Robert Ziemba
rez...@pop.uky.edu
Where did you put the Jason Hunter classes? If they are in the
extensions directory, and the servlet classes are not, that would
explain it. Also, why do you have multiple instances of servlet.jar
in your classpath?
--
Phil Hanna
Author of JSP: The Complete Reference
http://www.philhanna.com
Thanks again for your help.
--
Robert Ziemba
rez...@pop.uky.edu
"Phil Hanna" <peh...@yahoo.com> wrote in message
news:3b145a2e...@news.ipass.net...