Serge Knystautas wrote:
SK> HttpMethodBase Line 1055: calls getResponseHeader with "Content-Length"...
SK> should be "content-length" since getResponseHeader returns all lower case
SK> HttpMethodBase Line 1056: same thing, different header
SK> HttpMethodBase Line 454: same thing, different header
SK> GetMethod Line 387: same thing, Content-Length again, and I think the source

getResponseHeader consists of this line:
                  return (Header)(responseHeaders.get(headerName.toLowerCase()));

The header names are converted to lower case before looking up the
values, so this does not seem to be a reason for a problem reading the
headers.

--
Andreas Erz


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to