org.apache.ajp |
|
Java Source File Name | Type | Comment |
Ajp13.java | Class | Represents a single, persistent connection between the web server and
the servlet container. |
Ajp13Packet.java | Class | A single packet for communication between the web server and the
container. |
AjpHandler.java | Class | Base class for handlers of Ajp messages. |
Logger.java | Class | A simple logger class used by classes in this package. |
NegociationHandler.java | Class | Handler for the protocol negotiation. |
RequestHandler.java | Class | Handle messages related with basic request information.
This object can handle the following incoming messages:
- "FORWARD_REQUEST" input message ( sent when a request is passed from the web server )
- "PING REQUEST" input message (sent by the web server to determine if tomcat is not frozen,
a PONG REPLY will be sent back)
- "RECEIVE_BODY_CHUNK" input ( sent by container to pass more body, in response to GET_BODY_CHUNK )
It can handle the following outgoing messages:
- SEND_HEADERS. |