jfclere 2002/11/28 00:52:48 Modified: jk/xdocs/common AJPv13.xml Log: Add the max length of AJP data buffer (that is implementation) and some words about chunking. Revision Changes Path 1.4 +9 -6 jakarta-tomcat-connectors/jk/xdocs/common/AJPv13.xml Index: AJPv13.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/common/AJPv13.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- AJPv13.xml 20 Sep 2002 21:35:31 -0000 1.3 +++ AJPv13.xml 28 Nov 2002 08:52:48 -0000 1.4 @@ -608,15 +608,18 @@ <subsection name="Get Body Chunk"> <p> - The container asks for more data from the request (if the body was - too large to fit in the first packet sent over). The server will send a - body packet back with an amount of data which is the minimum of the - <code>request_length</code>, the maximum send body size (XXX), and the + The container asks for more data from the request (If the body was + too large to fit in the first packet sent over or when the request is + chuncked). + The server will send a body packet back with an amount of data which is + the minimum of the <code>request_length</code>, + the maximum send body size (8186 (8 Kbytes - 6)), and the number of bytes actually left to send from the request body. <br/> If there is no more data in the body (i.e. the servlet container is trying to read past the end of the body), the server will send back an - "empty" packet, whch is a body packet with a payload length of 0. + "empty" packet, which is a body packet with a payload length of 0. + (0x12,0x34,0x00,0x00) </p> </subsection> </section>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>