Servlet 何时在其标头附近添加 Connection : ?
我编写了一个 Servlet,它根据 PROPFIND 请求发送 XML 数据。我一定做了一些特别的事情,因为每个响应都在其标题中: 连接:关闭 我没有在那里写,而且我实际上不想要(一些客户不太喜欢这样)。我做了什么?或者我需要做什么才能避免这种情况?
:-( 斯威
I wrote a servlet that sends out XML data on PROPFIND requests. I must have done something special, since every response got in its header:
Connection : closed
which I don't write in there and which I actually don't want (some of the clients don't like that very much). What did I do? Or what do I need to do to avoid this?
:-( stw
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有硬性规定。持久连接请求是否终止以及何时终止由 servlet 容器自行决定。
There is no hard and fast rule. It is at the discretion of the servlet container if and when a persistent connection request is terminated.