You also want to set Tomcat to point towards your Java Runtime Environment (this can be downloaded seperately; I won't go into details as it's not part of this installation guide, but I can add it if necessary). If you plan to be doing Java development, downloading the JDK will include everything; otherwise, you just want the JRE. Look in jakarta-tomcat-3.2.3\bin\tomcat.bat; you'll see something concerning JAVA_HOME. Just set this to the directory directly above the 'bin' directory where java.exe is located (For example, "SET JAVA_HOME=C:\jdk1.3.1").
Also, check upon your %CLASSPATH% variable by opening up a console window and typing "echo %CLASSPATH%". If it's blank, you don't have a problem; if your classpath is already set, however (for example, if you use VisualCafe), then you're going to want to erase what's in there. You can do that in tomcat.bat by including the line "SET CLASSPATH=" right under your "SET JAVA_HOME" line. If you'll be doing Java work you're going to want to point your CLASSPATH to the directory directly above "org" where the Java .class files are located.
.\build.bat -Dinclude.webapp.libs=yes -Dinstall.war=%TOMCAT_HOME%\webapps install
webapps
directory. From here, it will be decompressed when Tomcat starts up
(just like the other .war files in the webapps
directory).
Tomcat\work
directory is deleted, as well as a Tomcat\webapps\cocoon
directory
if there is one.
Best of luck!