Link to home
Start Free TrialLog in
Avatar of heng03
heng03

asked on

Java compilation error

Hi

I compiled a java program using javax.servlet & it has
error as below :-

Pls help me what is the problem & what need to do
to solve the problem.
I'm using jdk1.3.1 & Apache Tomcat 4.0.1.

Thanks
Heng03

Compiling C:\Java_Project_2\WEB-INF\classes\CheckUser.java
C:\Java_Project_2\WEB-INF\classes\CheckUser.java:8: package javax.servlet does not exist
import javax.servlet.*;
^
C:\Java_Project_2\WEB-INF\classes\CheckUser.java:9: package javax.servlet.http does not exist
import javax.servlet.http.*;
^
C:\Java_Project_2\WEB-INF\classes\CheckUser.java:11: cannot resolve symbol
symbol  : class HttpServlet  
location: class CheckUser
public class CheckUser extends HttpServlet {
                               ^
C:\Java_Project_2\WEB-INF\classes\CheckUser.java:17: cannot resolve symbol
symbol  : class ServletConfig  
location: class CheckUser
     public void init(ServletConfig config) throws ServletException {
ASKER CERTIFIED SOLUTION
Avatar of msterjev
msterjev

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of msterjev
msterjev

The points,please!
Avatar of Mick Barry
You need to install java 2 enterprise edition (j2ee):
http://java.sun.com/j2ee/download.html

The standard edition does not include support for servlets.
No you did not. servlet.jar is included with the tomcat. You put servlet.jar (take it from the tomcat lib directory and put it to be an extension, or adjust yours system classpath to point to the current servlet.jar path)
Greetings all.

msterjev, can you please confirm for me that you did receive these points?  I want to ensure there wasn't some sort of database problem, since points weren't deducted, per this information; before taking corrective action.
https://www.experts-exchange.com/questions/Q.20283650.html
Thanks,
Moondancer - EE Moderator