It is possible to send and receive binary data over web sockets in Javascript? Could I, for example, implement an SSH client using web sockets?
|
|
The next draft (hybi-07) of the WebSockets specification is being implemented in most browsers and it will add built-in binary support to the protocol and API. However, until then, WebSockets payload is encoded as UTF-8. In order to send binary data you must use some way of encoding the binary data as UTF-8. There are many options but here are two that I have used: UTF-8: You can actually encode a byte stream directly to UTF-8. The python to encode and decode would look something like this:
In Javascript:
UTF-8 encode notes:
Base 64: In python:
To encode and decode the messages on the Javascript side:
Base 64 notes:
websockify: WebSockify is a proxy/bridge that allows a WebSockets capable browser to communicate with any arbitrary binary service. It was created to allow noVNC to communicate with existing VNC servers. websockify uses base64 encode/decode of the binary data and also provides a ssh client: Technically you could implement a browser ssh client over WebSockets (and I've considered it), however, this will require doing SSH encryption and decryption in the browser which will be slow. Given that WebSockets has an encrypted WSS (TLS) mode, it probably makes more sense to do plain telnet over WebSocket WSS. In fact, websockify includes an example telnet client. You would launch websockify on HOSTNAME like this (telnetd is from krb5-telnetd):
Then navigate to See the websockify README for more information. To use WSS encryption you will need to create an SSL key as described on the noVNC advanced usage wiki page |
|||||||||||||||||||
|
|
One good and safe way to send and receive binary data is with base64 or base128 (where 128 has just 1/7 overhead instead of 1/3). Yes an SSH Client is possible. A proof for this is that there are already a lot of solutions out there that run in common browsers, but most of them still needs a custom server side implementation. You can look here for more information: http://en.wikipedia.org/wiki/Web-based_SSH |
|||||||||
|
|
Hmm, maybe WebSockets could somehow be combined with this: http://ie.microsoft.com/testdrive/HTML5/TypedArrays/ |
|||
|
|