Error while compiling Servlet
Hello everyone,
I am quite new to the Java Technology.
I have this simple servlet program which gives me an error when I try to compile it.
The error is as follows:
TestServlet.java:1: package javax.servlet does not exist
import javax.servlet.*;
^
TestServlet.java:2: package javax.servlet.http does not exist
import javax.servlet.http.*;
^
Is this anything to do with the classpath or path settings?
Any help would be highly appreciated.
Thanks in advance,

