websocket for binary transfer of data & decode

試著忘記壹切 提交于 2019-12-09 15:47:08

问题


I was reading through the specification and many examples about usage of websockets. Almost all of them talk about UTF-8 or ascii message transfer using websockets.

The latest Hybi websocket spec requested support for binary transfer. REQ 6 in hybi spec

Also i read somewhere that chrome supports hybi. But latest release Chrome 7.0 works only when draft-hixie is selected in pywebsocket config.

Does any browser have support for hybi spec? Even if it is dev, its ok.


回答1:


It may be a while before non-UTF-8 (i.e. binary) encoding is supported in WebSockets.

I suggest using base64 encode/decode on the client and server. All browsers with WebSockets support have window.atob (base64 decode) and window.btoa (base64 encode). Most languages you might write a WebSockets server in have base64 libraries (i.e. base64 module in python).

If you are wanting to transfer binary data you might be interesting in wsproxy included with noVNC which is a web based VNC client. wsproxy (there is a C and python version) is a WebSockets to generic TCP sockets proxy. It base64 encodes/decodes all traffic to/from the browser. You can use it to connect from a WebSockets capable browser to any type of TCP port.

Note, noVNC has a Javascript implementation of base64 encode/decode because belief it or not, the Javascript version is slightly faster than atob/btoa.

Disclaimer: I created noVNC.



来源:https://stackoverflow.com/questions/3806100/websocket-for-binary-transfer-of-data-decode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!