I think you have a wrong download. Use this URL
http://jakarta.apache.org/builds/jakarta- tomcat/release/v3.2.1/bin/
and download jakarta-tomcat-3.2.1.zip file and unzip it.
You should be able to find the directories under webapp.
I also forgot to mention some key points last time.
You have to set up 2 environment variables
1. JAVA_HOME point to your jdk directory, like c:\jdk1.2.2
2. TOMCAT_HOME point to you tomcat directory , in my case it is
c:\jakarta-tomcat-3.2.1
3. Add c:\jakarta-tomcat-3.2.1\lib\servlet.jar in your CLASSPATH
4. Add c:\jdk1.2.2\lib\tools.jar in your CLASSPATH
5. Add c:\jakarta-tomcat-3.2.1\bin in your PATH
I assume you know how to set up these variables. If not let me know ,i'll help you out on that
For starting and stopping tomcat , go to "bin" directory under the jakarta-tomcat-3.2.1 and double click startup.bat and shutdown.bat. Usually this should work if it doesnot try it from the DOS prompt
If you are looking for something free like tomcat the i would recommend you to get Resin(1.2.1 version). Use the follwoing URL for the download
http://www.caucho.com/download/index.xtp .
Resin comes with a servlet engine and a standalone webserver. You can also integrate Resin with any other webservers like apache or IIS/PWS. I find it much faster than tomcat and easier setup.
FYI, if using resin keep all your servlet class files under
c:\resin-1.2.1\doc\WEB-INF\classes directory
Let me know if this helps.
Ajan