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?

link|improve this question

feedback

12 Answers

if you want something in .net then try

WebSocket Server

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

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.

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

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

link|improve this answer
feedback

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/

link|improve this answer
feedback

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

link|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
feedback

Facebook's tornado also recently added websockets

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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