Websocket的设计方式使其服务器可以与HTTP服务器共享一个端口,使其握手成为有效的HTTP升级请求。
我对这种设计理念有疑问。 WebSocket协议是一种独立的基于TCP协议的任何方式。
为什么我们需要此HTTP握手(升级请求)和协议切换。相反,为什么我们不能直接(和独立)遵循类似协议的websocket?
答案 0 :(得分:14)
The WebSocket Protocol attempts to address the goals of existing
bidirectional HTTP technologies in the context of the existing HTTP
infrastructure; as such, it is designed to work over HTTP ports 80
and 443 as well as to support HTTP proxies and intermediaries, even
if this implies some complexity specific to the current environment.
However, the design does not limit WebSocket to HTTP, and future
implementations could use a simpler handshake over a dedicated port
without reinventing the entire protocol.
换句话说,已经存在庞大的HTTP和HTTPS基础架构(代理,防火墙,缓存和其他中介)。为了增加被广泛采用的机会,WebSocket协议旨在允许对现有基础架构进行调整和扩展,而无需从头开始重新创建所有内容以支持专用端口上的新协议。
同样重要的是要注意,即使WebSocket协议要摆脱HTTP兼容握手,它仍然需要几乎相同复杂度的握手来支持现代Web的安全要求,以便浏览器和服务器可以相互验证并安全地支持CORS(跨源请求共享)。在创建实际套接字之前,即使是“原始”Flash套接字也会通过安全策略请求与服务器进行握手。