org.apache.catalina.servlets |
This package contains Servlets that implement some of the
standard functionality provided by the Catalina servlet container. Because
these servlets are in the org.apache.catalina package hierarchy,
they are in the privileged position of being able to reference internal server
data structures, which application level servlets are prevented from
accessing (by the application class loader implementation).
To the extent that these servlets depend upon internal Catalina data
structures, they are obviously not portable to other servlet container
environments. However, they can be used as models for creating application
level servlets that provide similar capabilities -- most obviously the
DefaultServlet implementation, which
serves static resources when Catalina runs stand-alone.
|
Java Source File Name | Type | Comment |
CGIServlet.java | Class | CGI-invoking servlet for web applications, used to execute scripts which
comply to the Common Gateway Interface (CGI) specification and are named
in the path-info used to invoke this servlet.
Note: This code compiles and even works for simple CGI cases.
Exhaustive testing has not been done. |
Constants.java | Class | |
DefaultServlet.java | Class | The default resource-serving servlet for most web applications,
used to serve static resources such as HTML pages and images.
author: Craig R. |
HTMLManagerServlet.java | Class | Servlet that enables remote management of the web applications installed
within the same virtual host as this web application is. |
InvokerHttpRequest.java | Class | Wrapper around a javax.servlet.http.HttpServletRequest
utilized when InvokerServlet processes the initial request
for an invoked servlet. |
InvokerServlet.java | Class | The default servlet-invoking servlet for most web applications,
used to serve requests to servlets that have not been registered
in the web application deployment descriptor.
author: Craig R. |
ManagerServlet.java | Class | Servlet that enables remote management of the web applications installed
within the same virtual host as this web application is. |
WebdavServlet.java | Class | Servlet which adds support for WebDAV level 2. |