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?
|
For a comparison of WebSockets server (and client) implementations: |
|||
|
|
|
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. |
|||
|
if you want something in .net then try |
|||||
|
|
Here is another web socket server based on node.js: websocket-server-node.js |
|||
|
|
Yes, there is a php implementation on google code: project phpwebsocket ... and i have done a rewrite for more structured code: |
|||
|
|
|
Facebook's tornado also recently added websockets |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
You can find the Microsoft server-side WebSockets prototype (using WCF) on HTML5 Labs. |
|||
|
|
|
|
|||
|
|
http://jwebsocket.googlecode.com is another one that lets you write WebSocket based server applications in java. |
|||
|
|
|
For a WebSocket server written in PHP you should try WaterSpout server |
|||
|
|
|
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.] |
|||
|
|
|
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. |
|||
|
|