Ben Stringer schrieb:
On Sun, 2008-05-04 at 00:41 -0600, [EMAIL PROTECTED] wrote:
Hello All,
I'm trying to POST a relatively small amount of content (22K) and find
that when the request comes via apache/mod_jk, I can only read part of
the body. The same request to standalone tomcat (HTTP connector) works
file. I'm reading the POST body with code like:
BufferedReader reader = request.getReader();
String inputLine;
while ((inputLine = reader.readLine()) != null) {
sb.append(inputLine);
}
Can anyone suggest what might be wrong?
Is there SSL anywhere in your setup?
Can't see why this would not be working - you may want to try tweaking
the max_packet_size in workers.properties and packetSize on the Tomcat
connector, details here:
http://tomcat.apache.org/connectors-doc/reference/workers.html
Cheers, Ben
... those two settings do not need any tweaking for POST bodies.
Rainer
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]