I am going to develop an instant messaging application that runs in the browser.
What browsers support the WebSocket API?
|
I am going to develop an instant messaging application that runs in the browser. What browsers support the WebSocket API? | |||||||||||||
feedback
|
Client side
Any browser with Flash can support WebSocket using the web-socket-js shim/polyfill. See caniuse for the current status of WebSockets support in desktop and mobile browsers. See the test reports from the WS testsuite included in Autobahn WebSockets for feature/protocol conformance tests. Server sideIt depends on which language you use. In Java/JEE:
Some other Java implementations: In C#: In PHP: In Python:
In C: In Node.js:
Vert.x (also known as Node.x) : A node like ployglot implementation running on a Java 7 JVM and based on Netty with :
Pusher.com is a Websocket cloud service accessible through a REST API. For other language implementations, see the Wikipedia article for more information. | |||||||||||||||||
feedback
|
|
A good workaround for those browsers that don't yet have native WebSocket support is with this implementation that uses flash to provide WebSocket support to JavaScript: http://github.com/gimite/web-socket-js This allows you to just code to WebSocket, and for browsers that have native support it'll use that. Otherwise it falls back to using flash for the support. | |||
|
feedback
|
|
chromium now supports websockets http://blog.chromium.org/2009/12/web-sockets-now-available-in-google.html | |||
|
feedback
|
|
The latest versions of browsers have support for the WebSocket API today. Here are the common browsers that support it:
If you're looking for better legacy support have a look at the "Comet" model. There are frameworks today that make its implementation simpler, such as Nitrogen. Have a look at their chat room example. You may also want to keep an eye on Google App Engine, which with its Channel API (soon available) will support the Comet model with a Web Sockets API interface, meaning that your client-side code won't need to know whether the server is communicating via open HTTP requests or web sockets. You can probably port their interface for use with your own server architecture too. | |||||||||||||||
feedback
|
|
There is a beautiful example how to use websockets: http://armstrongonsoftware.blogspot.com/2009/12/comet-is-dead-long-live-websockets.html Works for me in WebKit and Chrome with some minor tweaks in Joe's code. | |||
|
feedback
|
|
Important to know: Websocket support has been DROPPED from both Opera and Firefox 4 in December 2010 due to (general, non-browser specific) security issues: http://hacks.mozilla.org/2010/12/websockets-disabled-in-firefox-4/ It seems the issue does not lie with websockets per se but with other Internet devices that proxy requests, and disabling websockets is just a workaround until the general issue is fixed. Also, it seems the protocol (but not the API) is expected to change, even now e.g. Opera refers to which version of the protocol they actually implement. So even if it were turned on (where it is available at all) it is far from "production ready". This still is an experimental feature. | |||||
feedback
|
|
node.js is a server side JavaScript implementation. There exist several node.js implementations of WebSocket. This allows you to have JavaScript to JavaScript communication. https://github.com/Worlize/WebSocket-Node http://github.com/ncr/node.ws.js http://github.com/alexanderte/websocket-server-node.js | ||||
|
feedback
|
|
socket.io and node.js is awesome Look at my multi-rooms chat demo | |||
|
feedback
|
|
js.io implements WebSockets for most browsers, using Orbited. (however, the site is currently down). Using js.io, you can develop your app right now using the WebSocket API. And when browser will implement WebSockets natively, you'll get more performances. | |||
|
feedback
|
|
You can also use Hookbox which falls back to long-polling if websocket support is unavailable in the browser. http://bitshaq.com/2010/07/30/a-simple-experiment-with-hookbox/ | |||
|
feedback
|
|
As of March 2012 from caniuse.com :
| ||||
|
feedback
|
|
Currently no browser supports Web Sockets. Also, Web Sockets is two standalone specifications, and no longer part of HTML5: http://www.w3.org/TR/websockets/ and http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol | |||
feedback
|
|
| |||
|
feedback
|
|
It looks like IE 9 RC, Firefox 4 and Opera 11 don't support web sockets. Apparently there is a security issue with it at the moment This article http://hacks.mozilla.org/2010/12/websockets-disabled-in-firefox-4/ seems to be saying that other browsers (chrome and safari) will soon remove web sockets from their features. But you can 'fake' a web socket using silverlight/flash as demonstrated here: http://html5labs.cloudapp.net/WebSockets/ChatDemo/wsdemo.html and https://github.com/gimite/web-socket-js And then just wait for the browsers to catch up. | |||
|
feedback
|
|
| |||
|
feedback
|
|
The best site for HTML5 and related functionality is http://caniuse.com | |||
|
feedback
|
|
The WebSocket standard isn't final yet, although version 8 is probably pretty close to what the final will be. The security problem (referred to in one post above) has been solved and Opera / Firefox no longer default to disabled websockets. I'm running version 8 tests and will regularly update information on browser tests at this blog. | |||
|
feedback
|
|
I'm afraid the only place you're going to find WebSocket support is in the trunk builds of Firefox at the moment. And as far as I know, the work there is still in progress. WebKit browsers (Safari & Chrome, for example) are just getting started on their implementations and they are not even available in the nightly builds. | |||
|
feedback
|
|
Jabbers BOSH protocol seems to fit instant messaging very well. Give strophe a try with a server supporting BOSH such as ejabberd. | |||
|
feedback
|
|
We are keeping an up-to-date list of WebSocket supporting browsers on our Java WebSocket project website: http://jwebsocket.org/browsers.htm | ||||
feedback
|
|
My WebSockets example works with Safari and Chrome on Mac. Firefox 4 Beta can't open the connection, on Windows it sometimes work with Chrome :) | |||
|
feedback
|
|
Opera 11 will support WebSockets based on the 76 draft, one can test it out with the current 10.70 alpha: | |||
|
feedback
|
|
Also worth checking out on the server side is our hosted websockets service Pusher :) http://pusherapp.com | |||
|
feedback
|
|
The Atmosphere Framework supports Groovy/Scala/JRuby and Java and have both client and server side. | |||
|
feedback
|