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?
Thanks!
--john
---------------------------------------------------------------------
To start a new topic, e-mail: [email protected]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]