OpenJDK / amber / amber
changeset 6873:7fe1f614001e
6952017: HttpURLConnection chunked encoding issue (Http request splitting)
Reviewed-by: chegar
author | michaelm |
---|---|
date | Thu, 22 Jul 2010 17:26:33 +0100 |
parents | b90e4fee471f |
children | 716638f9efdf |
files | jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java |
diffstat | 1 files changed, 13 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java Thu Jul 22 16:33:12 2010 +0100 +++ b/jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java Thu Jul 22 17:26:33 2010 +0100 @@ -463,9 +463,12 @@ "application/x-www-form-urlencoded"); } + boolean chunked = false; + if (streaming()) { if (chunkLength != -1) { requests.set ("Transfer-Encoding", "chunked"); + chunked = true; } else { /* fixed content length */ if (fixedContentLengthLong != -1) { requests.set ("Content-Length", @@ -485,6 +488,16 @@ } } + if (!chunked) { + if (requests.findValue("Transfer-Encoding") != null) { + requests.remove("Transfer-Encoding"); + if (logger.isLoggable(PlatformLogger.WARNING)) { + logger.warning( + "use streaming mode for chunked encoding"); + } + } + } + // get applicable cookies based on the uri and request headers // add them to the existing request headers setCookieHeader();