Hacker News new | ask | show | jobs
by kcbanner 5021 days ago
Sockets exist, work, and are used by lots of people.
2 comments

And work on all browser for all people.

Or wait.. they don't for most

http://caniuse.com/websockets

Pretty much every modern websockets Javascript library you use these days will provide fallback mechanisms to flash or long polling to provide the same features. Take a look at the supported browsers for Socket.io and its a much larger list then the one you've provided.

http://socket.io/#browser-support

They're not sockets, they're WebSockets, and they require a custom HTTP server setup just to open a socket connection to a service.

This means that I can't do something that should be really simple -- like open a VNC connection to a remote server -- without first configuring an HTTP WebSocket proxy.