I installed Tomcat 3.1 in Win NT with the following details:
1. Classpath contains jdk classes
.;C:\jdk\lib\classes.zip
2 Path contains jdk bin
.;C:\jdk\bin
3 I installed tomcat in
C:\Implementation
Which make C:\Implementation as my installation directory
4 I�ve got the following directory structure in my installation directory
C:\Implementation\jakarta-tomcat
The following directory exist in the C:\Implementation\jakarta-tomcat
bin ->>Contains startup/shutdown� scripts
conf ->>Contains various configuration files including server.xml (Tomcat�s main configuration file) and web.xml that sets the default values for the various web applications deployed in Tomcat.
Doc ->>Contains miscellaneous documents regarding Tomcat.
Lib ->>Contains various jar files that are used by Tomcat. On UNIX any file in this directory is appended to Tomcat�s classpath.
Src ->>The servlet APIs source files. Don�t get excited, though; these are only the empty interfaces and abstract classes that should be implemented by any servlet container.
Webapps ->>Contains sample web applications.
I opened a dos console and go straight to the
C:\Implementation\jakarta-tomcat\bin
and executed the startup.bat
e.g. C:\Implementation\jakarta-tomcat\bin startup
It seems to work here�
5. Then I open the Internet explorer and enter
http://localhost:8080/examples/servlets/ � it didn�t work. Can someone help me with this� thank you!