使用apache httpcomponent 4.0.x,如何发送不带标头“Connection: Keep-Alive”的http请求来自客户端程序?
我正在使用 apache httpcomponent 4.0.x。
如何从客户端程序发送没有标头“Connection: Keep-Alive”的http请求?
由于某种原因,无论 http 版本设置为什么,Connection 标头始终设置为 keep-alive。版本http 1.0。或 1.1 没有任何区别。
I'm using apache httpcomponent 4.0.x.
How to send a http request without the header "Connection: Keep-Alive" from a client prgram?
For some reason, the Connection header is always set to keep-alive no matter what the http version is set to. Version http 1.0. or 1.1 doesn't make any difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将版本设置为 1.0 并且它仍然添加“Connection: Keep-Alive”,您应该在项目的 错误跟踪器。 HTTP 1.0 不支持持久连接,因此不应添加标头。
If you set the version to 1.0 and it still adds "Connection: Keep-Alive" you should report it as bug at the project's bug tracker. HTTP 1.0 does not support persistent connections so the header should not be added.