mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 03:50:26 +08:00
re PR classpath/28661 (HTTP Header differs b/w java and classpath)
PR classpath/28661 * gnu/java/net/protocol/http/HTTPURLConnection.java (connect): Add default content-type for POST method. From-SVN: r117149
This commit is contained in:
parent
3b83e64bd3
commit
17bdf398eb
@ -1,3 +1,9 @@
|
||||
2006-09-22 David Daney <ddaney@avtrex.com>
|
||||
|
||||
PR classpath/28661
|
||||
* gnu/java/net/protocol/http/HTTPURLConnection.java (connect): Add
|
||||
default content-type for POST method.
|
||||
|
||||
2006-09-20 Gary Benson <gbenson@redhat.com>
|
||||
|
||||
* java/net/InetAddress.java: Updated to latest.
|
||||
|
@ -149,6 +149,14 @@ public class HTTPURLConnection
|
||||
final Credentials creds = (username == null) ? null :
|
||||
new Credentials (username, password);
|
||||
|
||||
if ("POST".equals(method))
|
||||
{
|
||||
String contentType = requestHeaders.getValue("Content-Type");
|
||||
if (null == contentType)
|
||||
requestHeaders.addValue("Content-Type",
|
||||
"application/x-www-form-urlencoded");
|
||||
}
|
||||
|
||||
boolean retry;
|
||||
do
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user