Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using WebSockets, will I need to write server code? In other words, will the JavaScript in my client application need to connect to a specialized server, or will my existing Apache server work to support this?

share|improve this question

14 Answers

For a comparison of WebSockets server (and client) implementations:

share|improve this answer

The pywebsocket project adds experimental WebSocket support to Apache httpd.

It seems like an activly maintained project, and is even being used by the WebKit crew to test WebSocket support in their browser code.

share|improve this answer
1  
I found this tutorial which explains how to setup mod_python and pywebsocket. Might be helpful. – Stéphane Aug 28 '11 at 10:52

if you want something in .net then try

WebSocket Server

share|improve this answer
3  
Nugget (nugget.codeplex.com) appears to be the more up-to-date version of that code. – Troy Oct 7 '10 at 18:24

Here is another web socket server based on node.js: websocket-server-node.js

share|improve this answer
Here are three others that use node.js to provide server side WebSocket support: github.com/ncr/node.ws.js github.com/Guille/node.websocket.js github.com/zimbatm/nodejs-http-websocket – Sembiance Dec 27 '09 at 19:27

Yes, there is a php implementation on google code: project phpwebsocket

... and i have done a rewrite for more structured code:

http://bohuco.net/blog/2010/07/html5-websockets-example/

share|improve this answer

Facebook's tornado also recently added websockets

share|improve this answer

Node.js with the socket.io module is my favorite: it's battle tested, actively mainatained and has good polyfills and auto-fallbacks (to long polling etc), and like everything in node.js you have the advantage of coding both server and client in javascript.

share|improve this answer

Of course you need a WebSocket server. But there are many free websocket server in different language, like jWebSocket in Java and SuperWebSocket in .NET, you can use them directly.

share|improve this answer

You can find the Microsoft server-side WebSockets prototype (using WCF) on HTML5 Labs.

share|improve this answer

This looks interesting (apache-websocket)

share|improve this answer
i have already tried it and just for experimental. compiling in windows and run the samples. works great. but it seems hasn't not been maintained anymore – Welly Tambunan Dec 6 '12 at 6:43

http://jwebsocket.googlecode.com is another one that lets you write WebSocket based server applications in java.

share|improve this answer

For a WebSocket server written in PHP you should try WaterSpout server

share|improve this answer

Union Server has WebSocket support, in addition to Flash XMLSocket (ActionScript) and traditional HTTP long-polling (comet-style). Union is free for up to 1000 simultaneous connections.

On top of the simple WebSocket transport layer, Union provides an extensive development API for creating multiuser applications that includes rooms, shared variables, a distributed object model, user accounts, data storage, messaging, filters, firewall traversal, connection management, spectation, banning, load testing tools, data snapshots, server-side extensibility, security controls, and a long list of network-application programming tools.

general info: http://www.unionplatform.com/

websocket info: http://www.unionplatform.com/?page_id=2954

apache may also eventually support WebSocket. see the enhancement request here: https://issues.apache.org/bugzilla/show_bug.cgi?id=47485

[full disclosure: i'm the co-creator of Union.]

share|improve this answer

The server has to support web sockets. After a first handshake in HTTP, the server and the client open an socket connection. The server must be able to understand and accept this handshake.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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