I have installed jakarta-tomcat-5.0.16, I can
configure the single applications by adding the
required tags in web.xml, e.g.,
<servlet>
<servlet-name>JndiServlet</servlet-name>
<servlet-class>JndiServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>JndiServlet</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
If I write 100ds of servlet then I will be needing to
add that many tags.
Please tell me how can I solve this problem, so that I
will mention the folder structure and all the class
files will be recognized.