I am in a Unix Enviornment and have Tomcat installed as the server, and I also downloaded servlet classfiles from java.sun.com, when I unzip the classfiles, and it creates a directory "Javax" and inside "Javax", it is directory "servlet" with all the .class files inside. However, when I try to write a program and do the following:
import javax.servlet.*;
compiler error says that the package is not provided. Am I doing something wrong?
and How do I make sure that the Java virtual machine supports the Java platform servlet specification.
Thank you very much for your time,
import javax.servlet.*;
compiler error says that the package is not provided. Am I doing something wrong?
and How do I make sure that the Java virtual machine supports the Java platform servlet specification.
Thank you very much for your time,