KINGMAN wrote:
> Can you tell me how to construct a Web Application in my tomcat4.0.Where I put my
>servlets?
> thanks!
The basic concepts of how a web application needs to be organized (which includes
where servlets
should be placed) are defined by the Servlet 2.2 (for Tomcat 3.x) or Servlet 2.3 (for
Tomcat
4.x) specifications, which are available at
<http://java.sun.com/products/servlet/download.html>. You will want to understand the
chapters
on web applications, and on the web.xml file.
For Tomcat 4.0 in particular, I would suggest that you download Tomcat 3.2 and study
the
Application Developer's Guide, which is included in the documentation directory. The
recommendations for how an application development effort should be organized, and
instructions
on how to organize your own servlet files, are virtually unchanged in Tomcat 4.0.
Craig McClanahan