Hongbo
Hongbo

Reputation: 1147

WebSocket server support

I'm new to WebSocket and HTML5. Before today, I thought that all the HTML5 standards affect only the clients(broswers); so assume that users have upgraded their broswers, its ready. But after some reading on WebSocket, it seems to me that I need to install something on the server to support it. Am I understand it right?

As an example, if I have a website on a shared hosting like Hostmonster, which I don't have the privilege to change the http server, can I use WebSocket?

Btw, by server I don't mean "proxy" server.

Upvotes: 1

Views: 1189

Answers (1)

Julian Reschke
Julian Reschke

Reputation: 41997

WebSockets are work in progress, and not part of HTML5 at all. The API is being defined by the W3C WebApps WG, the protocol in the IETF HyBI WG.

And yes: browsers at some time will ship with support for it (everything currently shipping is experimental and already already out of date), but servers will need special support as well.

Upvotes: 1

Related Questions