Websockets behind enterprises proxies

后端 未结 1 1262
遇见更好的自我
遇见更好的自我 2021-01-12 19:54

According to these articles, Websocket success rate is only 63 % (if you have a websocket-ready browser).

And this InfoQ article (http://www.infoq.com/articles/Web-S

相关标签:
1条回答
  • 2021-01-12 20:23

    That email and article are approaching two years old.

    Those problems were either server or proxy related. The reason that wss:// is more successful is because SSL traffic is more opaque to intermediaries and so it is more likely that it will just be passed along without interference.

    As WebSockets becomes more common, those issues will begin to dissipate as the issues are fixed in proxies, firewalls, load-balancers, and web servers.

    Also, regarding WebSockets support in browsers, if you include the Flash based web-socket-js as a polyfill/fallback in your web application then you get nearly universal browser support.

    0 讨论(0)
提交回复
热议问题