while (-1 != (numBytes = inflator_input_stream.read(byteBuffer))) {
inflatedBodyBuffer.writeBytes(byteBuffer, 0, numBytes);
}
inflatedBodyBuffer.flush();
int inflated_body_length = inflatedBodyBuffer.totalBytes();
_setPostBody(inflatedBodyBuffer, inflated_body_length);
// Remove content encoding, set new length, so request forwarding will work
requestContext.getHeaders().removeHeader("Content-Encoding");
requestContext.getHeaders().setIntHeader("Content-Length",