"javax" packages do not exist.
Hello,
I am learning to write servlet using J2EE 5SDK. But for some reason, the compiler (javac) keeps telling me that the following packages do not exist:
javax.servlet
javax.servelet.http
Without the "javax" packages, the codes get compiled. I did everything in the instruction on how to set the PATH variable. It did not work. So I took the extra steps and set the PATH variable to all the bin and lib directories:
c\Sun\AppServer\bin;
c:\Sun\AppServer\jdk\bin;
c:\Sun\AppServer\jdk\jre\bin;
c:\Sun\AppServer\jdk\jre\bin\client;
c:\Sun\AppServer\jdk\jre\bin\server;
c:\Sun\AppServer\lib;c:\Sun\AppServer\jdk\lib;
c:\Sun\AppServer\jdk\jre\lib;
After all that, it still didn't work. Did I miss any entry? Where are the javax packages locate? Your help are much appreciated. Thanks :)

