Start Using HTML5 WebSockets Today
…HTML5 is WebSockets, which let us talk to the server without using AJAX requests. In this tutorial, we’ll review the process of running a WebSocket server in PHP, and then building a client to send and receive messages to it over the WebSocket protocol. What are WebSockets? WebSockets is a technique for two-way communication over one (TCP) so…
from Nettuts+ - 9:41 PM (52 minutes ago)
Guacamole, HTML5 JavaScript VNC Viewer
…WebSocket with python, while Guacamole uses Canvas, Ajax with Java servlet pre-processing.
from AJAX Magazine - 9:54 PM (39 minutes ago)
Apple Press Release Reveals Safari 5 Specs, Features
…EventSource and WebSocket. The new, free Safari Developer Program allows developers to customize and enhance Safari 5 with extensions based on standard web technologies like HTML5, CSS3 and JavaScript. The Extension Builder, new in Safari 5, simplifies the development, installation and packaging of extensions. For enhanced security and stability…
from Solid Blogger - Jun 8, 2010 8:20 PM
5 Excellent New Features in Safari 5
…WebSocket is the first, and EventSource is the second. Now that three of the major browsers, Firefox, Chrome and Safari have implemented the WebSocket spec, writing realtime webapps using something like Node.js for a backend is becoming much more feasable. WebSocket is essentially a two-way communication channel between your webapp in the bro…
from Nettuts+ - Jun 16, 2010 10:24 AM
Just Announced: Safari 5 Released
…EventSource and WebSocket. The new, free Safari Developer Program allows developers to customize and enhance Safari 5 with extensions based on standard web technologies like HTML5, CSS3 and JavaScript. The Extension Builder, new in Safari 5, simplifies the development, installation and packaging of extensions. For enhanced security and stability…
from Nettuts+ - Jun 8, 2010 8:39 AM
HTML5 Unleashed: Tips, Tricks and Techniques
…Web Workers WebSocket API WebSocket Protocol Server Sent Events Web SQL Database Geolocation API SVG MathML XMLHttpRequest Additional Resources If you are still craving for more information, you should checkout these resources. Essential Bookmarks HTML5 Draft Draft Proposal by WHATWG The WHATWG Blog Official blog of the WHATWG – group responsi…
from W3Avenue - May 24, 2010 2:54 AM
WebSockets in Firefox
…pitch for WebSockets: a low-complexity, low-latency, bi-directional communication system that has a pretty simple API for web developers. Let’s break that down, and then talk about if and when we’re going to include it in Firefox: Low-complexity The WebSocket protocol, which is started via an HTTP-like handshake, has a relatively simple model f…
from Mozilla Hacks – the Web developer blog - Jul 23, 2010 (6 days ago)
HTML5 Server-Push Technologies, Part 2
…new HTML5 WebSockets protocol. HTML5 Server-Push Technologies, Part 2 Mon, 2010-04-26 Gregor Roth In the colclusion …
from Article Archive - Apr 26, 2010 1:53 PM
Drawing Together with Cappuccino and Node.js
…js with WebSocket support from Socket.IO: , the actual interesting parts that are doing anything other than serving static files start with the line “var listener = io.listen…”. On the client-side, I made a very simple Objective-J class that wraps the Socket.IO client called SCSocket (located in client/SCSocket.j). It’s up to you to simply …
from Ajaxian » Front Page - Apr 23, 2010 4:18 AM
WPilot A remake of XPilot, this time in a web browser near you
…such as WebSocket and Canvas to make it possible. Please visit project homepage for more details. http://jfd.github.com/wpilot/ Server requirements You need Node.js in order to run the server. Download (or clone) Node.js at http://nodejs.org/ Quick start You can start the game- and client server by typing: ./wpilots.js For more more swit…
from The Changelog – Open Source moves fast. Keep up. - Apr 8, 2010 10:28 AM
HTML5 Server-Push Technologies, Part 1
…Events and WebSockets explained HTML5 Server-Push Technologies, Part 1 Wed, 2010-03-31 Gregor Roth Server-Sent Event…
from Article Archive - Apr 26, 2010 1:53 PM
Socket.IO – multi-transport socket server for Node.js
…WebSocket (with Flash policy support) Server-Sent Events XHR Polling XHR Multipart Streaming Forever Iframe To create a socket, create by creating your server and instructing Socket.IO to listen: var http = require(‘http’), io = require(‘./socket.io/socket.io.js’), server = http.createServer(function(req, res){ // your normal ser…
from The Changelog – Open Source moves fast. Keep up. - Mar 18, 2010 7:03 AM
Kaazing creates custom licensing solution using Google App Engine and Google Apps
…ready WebSocket gateway, named — you guessed it — Kaazing WebSocket Gateway, which enables highly scalable, full-duplex real-time Web communication based on the new HTML5 Web Sockets standard. Using Kaazing’s technology, you can seamlessly and reliably extend any TCP-based business messaging protocol to the Web with ultra high performance and mi…
from Google App Engine Blog - May 12, 2010 6:47 PM
Web Sockets Now Available In Google Chrome
…WebSocket” in window) { var ws = new WebSocket(“ws://example.com/service”); ws.onopen = function() { // Web Socket is connected. You can send data by send() method. ws.send(“message to send”); …. }; ws.onmessage = function (evt) { var received_msg = evt.data; … }; ws.onclose = function() { // websocket is closed. };} else { // th…
from Chromium Blog - Dec 9, 2009 12:08 PM
Your questions answered #2
…WebSocket Support Dave asked: There’s a lot of features, and I can’t find anywhere that lists current support in major browser versions (and/or with Google Gears). The particular one I’m looking for is WebSocket support This is a good resource for checking the state of browser support for a particular feature: http://a.deveria.com/caniuse/ Re…
from HTML5 Doctor - Aug 20, 2009 9:55 AM
?
Related articles by Zemanta
- Firefox 4 gets web sockets support (mozillalinks.org)
- WebSocket Protocol Updated (chromium.org)
- WebSockets in Python: weekend adventure (mumrah.posterous.com)

