简体   繁体   English

HttpURLConnection 在 POST 上失败,HTTP 400

[英]HttpURLConnection failing on POST with HTTP 400

HttpURLConnection sometimes fails on POST operations to a http URL. HttpURLConnection有时会在对http URL 的 POST 操作上失败。 In my case the following fails about one of a hundred times:在我的情况下,以下失败了大约一百次:

byte[] formData = ("mgnlUserId=" + user + "&mgnlUserPSWD=" + user).getBytes(StandardCharsets.UTF_8);
URL url = new URL("http://localhost:8080/magnoliaAuthor/.magnolia/admincentral");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
connection.setRequestMethod("POST");
connection.setRequestProperty("charset", "utf-8");
connection.setRequestProperty("Content-Length", Integer.toString(formData.length));
connection.getOutputStream().write(formData);
connection.connect();

// Sometimes fails with response code being 400
assertEquals(200, connection.getResponseCode());

The server complains about the bad request too:服务器也抱怨错误的请求:

HTTP Status 400 – Bad Request
Invalid character found in method name [User-Agent:]. HTTP method names must be tokens
The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
java.lang.IllegalArgumentException: Invalid character found in method name [User-Agent:]. HTTP method names must be tokens

Here's some example code for reproducing the problem.这是一些用于重现问题的示例代码

For now this looks like a bug to me but I couldn't find anything related in the Java bug tracker.现在这对我来说似乎是一个错误,但我在 Java 错误跟踪器中找不到任何相关内容。

Anyone experiencing similar issues and has a workaround?有人遇到类似问题并有解决方法吗?

This is indeed a bug of HttpURLConnection .这确实是HttpURLConnection的错误。

Looking at the HTTP request going over the wire I can see the HTTP method is set to User-Agent: instead of GET :查看通过网络传输的 HTTP 请求,我可以看到 HTTP 方法设置为User-Agent:而不是GET

在此处输入图像描述

And the log output show the same faulty request being sent:并且日志输出显示正在发送相同的错误请求:

Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection plainConnect0
FINEST: ProxySelector Request for http://localhost:8080/magnoliaAuthor/.magnolia/admincentral
Nov 03, 2021 8:37:01 PM sun.net.www.http.HttpClient logFinest
FINEST: KeepAlive stream retrieved from the cache, sun.net.www.http.HttpClient(http://localhost:8080/magnoliaAuthor/.magnolia/admincentral;jsessionid=44DEE0C8C535782A6B4932E9F0D455ED)
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection plainConnect0
FINEST: Proxy used: DIRECT
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection writeRequests
FINE: sun.net.www.MessageHeader@15b170d89 pairs: {POST /magnoliaAuthor/.magnolia/admincentral HTTP/1.1: null}{Content-Type: application/x-www-form-urlencoded}{Cookie: csrf=ZOxgq4P_WMgLjCm3J4mWPEFFNhmIUiHlq9of5JhtKys}{charset: utf-8}{User-Agent: Java/1.8.0_181}{Host: localhost:8080}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}{Content-Length: 92}
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection writeRequests
FINE: sun.net.www.MessageHeader@15b170d89 pairs: {POST /magnoliaAuthor/.magnolia/admincentral HTTP/1.1: null}{Content-Type: application/x-www-form-urlencoded}{Cookie: csrf=ZOxgq4P_WMgLjCm3J4mWPEFFNhmIUiHlq9of5JhtKys}{charset: utf-8}{User-Agent: Java/1.8.0_181}{Host: localhost:8080}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}{Content-Length: 92}
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection getInputStream0
FINE: sun.net.www.MessageHeader@52ae5ad55 pairs: {null: HTTP/1.1 302}{Set-Cookie: JSESSIONID=88DCCC46C9E70CBA8262CF8060A033C0; Path=/magnoliaAuthor; HttpOnly}{Location: /magnoliaAuthor/.magnolia/admincentral;jsessionid=88DCCC46C9E70CBA8262CF8060A033C0}{Content-Length: 0}{Date: Wed, 03 Nov 2021 19:37:01 GMT}
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection followRedirect0
FINE: Redirected from http://localhost:8080/magnoliaAuthor/.magnolia/admincentral to http://localhost:8080/magnoliaAuthor/.magnolia/admincentral;jsessionid=88DCCC46C9E70CBA8262CF8060A033C0
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection plainConnect0
FINEST: ProxySelector Request for http://localhost:8080/magnoliaAuthor/.magnolia/admincentral;jsessionid=88DCCC46C9E70CBA8262CF8060A033C0
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection plainConnect0
FINEST: Proxy used: DIRECT
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection writeRequests
FINE: sun.net.www.MessageHeader@774fca3c4 pairs: {User-Agent: Java/1.8.0_181}{Host: localhost:8080}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: close}
Nov 03, 2021 8:37:01 PM sun.net.www.protocol.http.HttpURLConnection getInputStream0
FINE: sun.net.www.MessageHeader@57256a0d6 pairs: {null: HTTP/1.1 400}{Content-Type: text/html;charset=utf-8}{Content-Language: en}{Content-Length: 2244}{Date: Wed, 03 Nov 2021 19:37:01 GMT}{Connection: close}

Digging deeper I found out that, when HttpURLConnection initiates a POST on a reused connection but finds the socket closed, it will internally recover and open a new connection.深入挖掘我发现,当HttpURLConnection在重用连接上启动POST但发现套接字已关闭时,它将在内部恢复并打开一个新连接。 If this POST succeeds and the server sends a redirect status (302) it will attempt to follow the redirect.如果此 POST 成功并且服务器发送重定向状态 (302),它将尝试遵循重定向。 However, internally it fails to correctly initialise the request headers: after creating a new set of headers , it will not set the HTTP method because failedOnce is true at this point from the first POST on the closed socket但是,在内部,它无法正确初始化请求标头:在创建一组新标头后,它不会设置 HTTP方法,因为从已关闭套接字上的第一个 POST 开始,此时failedOnce为真

Update : this is now tracked as a bug .更新:这现在被跟踪为一个错误

Update 2 : this has now been fixed更新 2 :现在已修复

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用HttpURLConnection的JAVA中的POST获得HTTP响应代码400 - POST in JAVA using HttpURLConnection getting a HTTP response code 400 服务器返回的HTTP响应代码:400表示URL HttpURLConnection.getInputStream表示JSON POST数据字符串 - Server returned HTTP response code: 400 for URL HttpURLConnection.getInputStream for JSON POST data string java httpurlconnection http放错误400 - java httpurlconnection http put error 400 HttpURLConnection POST 返回 400 错误请求 - HttpURLConnection POST returning 400 Bad Request 得到400响应httpurlconnection发送发布请求 - get 400 response httpurlconnection sends post request 服务器返回 HTTP 响应代码:400:模拟 HttpURLConnection 时 - Server returned HTTP response code: 400 : When mocking HttpURLConnection 服务器返回URL的HTTP响应代码:400:HttpURLConnection错误 - Server returned HTTP response code: 400 for URL : HttpURLConnection Error 带有POST和xml的Cisco ISE REST HttpUrlConnection 400错误请求 - Cisco ISE REST HttpUrlConnection 400 Bad Request with POST and xml in body 在REST API中使用HttpURLConnection到Java中的POST时,响应代码为400 - Response code is 400 while using HttpURLConnection to POST in java for REST API Java - 从 HttpURLConnection 读取 POST 抛出响应代码 400 - Java - Reading POST from HttpURLConnection throwing response code 400
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM