As far as i know websockets support binary data transfer. Binary support bug is fixed.

So, are there any websocket servers which support binary data transfer? Socket.io seems to miss this opportunity. Maybe there are some others?

link|improve this question

62% accept rate
feedback

2 Answers

Supporting binary data in WebSocket servers is pretty trivial (less work that UTF-8 actually). The real problem is supporting binary data types in the browser. It is being worked on, but as of yet there are no browser releases that can support sending and receiving binary types (typed arrays, blobs).

If you need to send binary data now before browsers add support, you can try my websockify python server and Javascript client library. It uses base64 encoding to transfer binary data over the wire. Instead of typed arrays/blobs, it uses arrays of numbers (0-255) to represent binary data on the Javascript side.

Some links:

link|improve this answer
How's the situation now? – liuyanghejerry Dec 2 '11 at 3:28
1  
Binary support is in recent Chrome releases. There is finally action on the Mozilla front and I expect the next Aurora (alpha) release of Mozilla will have support too. I suspect that IE 10 also has support but I have not explored that directly. – kanaka Dec 2 '11 at 18:29
feedback

Here is a comparison of WebSockets implementations (browsers, client, servers) that has a feature row for "binary messages":

http://en.wikipedia.org/wiki/Comparison_of_WebSocket_implementations

Currently (09/16/2011), the browsers supporting binary WS messages are:

  • Chrome 15 or higher
  • IE10 (part of Windows 8 developer preview)

For detailed test reports and browser comparison, see:

http://www.tavendo.de/autobahn/testsuite.html

link|improve this answer
so none of modern browsers support binary messaging :( – Dmitry Sorin Aug 29 '11 at 6:38
For Firefox/Chrome I would guess it's a question of months till they support binaries. – oberstet Aug 29 '11 at 8:40
Chromium just landed support for binary messaging: code.google.com/p/chromium/issues/detail?id=93652 – ebidel Sep 7 '11 at 18:15
yep, it's there. I have updated WebSockets test suite reports including Chrome and different versions of Firefox to reflect that: tavendo.de/autobahn/testsuite/report/clients – oberstet Sep 14 '11 at 6:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.