4

我确实在 libevent 中实现了一个 websocket 服务器,虽然我对 Chrome 或 Firefox 没有任何问题,但使用 IE10 我什至无法建立连接。

这里握手:

IE10 Request:
GET /echo HTTP/1.1
Origin: 95.115.195.4
Sec-WebSocket-Key: rgPWUlUtk+h3CPWqk99OtA==
Connection: Upgrade
Upgrade: Websocket
Sec-WebSocket-Version: 8
User-Agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)
Host: 95.115.195.4:5555
Cache-Control: no-cache

Server Response:
HTTP/1.1 101 Switching Protocols
Upgrade: Websocket
Connection: Upgrade
Sec-WebSocket-Accept: jGmgQ/jOvew8MU9o3bbqPG9PHlY=
Sec-WebSocket-Protocol: chat

IE10 调试器显示:SCRIPT12152:WebSocket 错误:HTTP 响应不正确。状态码 101

有人知道我在做什么错吗?

谢谢

4

1 回答 1

5

客户端未发送子协议列表,但您的服务器已将“聊天”作为子协议值发回。根据IETF 6455 WebSocket 规范的第 19 页(第 4.1 节客户端要求结束):

6.  If the response includes a |Sec-WebSocket-Protocol| header field
   and this header field indicates the use of a subprotocol that was
   not present in the client's handshake (the server has indicated a
   subprotocol not requested by the client), the client MUST _Fail
   the WebSocket Connection_.

如果客户端向服务器发送了“Sec-WebSocket-Protocol: SUBPROTOCOL,...”标头,则服务器应仅将“Sec-WebSocket-Protocol: SUBPROTOCOL”标头发送回客户端。请注意,客户端可以发送子协议列表,如果发送,服务器必须从列表中选择一个进行响应。

Firefox 和 Chrome 可能过于宽松,没有遵守当前版本的规范。

于 2012-02-25T21:12:17.457 回答