Slideshare.net (beta)

 
Post: 
Myspace Hi5 Friendster Xanga LiveJournal Facebook Blogger Tagged Typepad Freewebs BlackPlanet gigya icons



All comments

Add a comment on Slide 1

If you have a SlideShare account, login to comment; else you can comment as a guest


Showing 1-50 of 7 (more)

Comet: Making The Web a 2-Way Medium

From joewalker, 9 months ago

A talk I did at FoWA

4133 views  |  0 comments  |  6 favorites  |  266 downloads  |  8 embeds (Stats)
 
 
 

Privacy InfoNew!

This slideshow is Public

 
Embed in your blog
Embed (wordpress.com)
custom

Slideshow Statistics
Total Views: 4133
on Slideshare: 3677
from embeds: 456* * Views from embeds since 21 Aug, 07

Slideshow transcript

Slide 1: Comet: Making The Web a 2-Way Medium Joe Walker, DWR Lead Developer

Slide 2: What is Comet? Long lived HTTP connections •Low latency data •For events outside the browser

Slide 3: Agenda: Use Cases Techniques Technologies Demos

Slide 4: Why? Ajax made individual pages interactive places to explore More and more of the data on the web is social and therefore changing

Slide 5: Why? Time people spend on a page Time before a page changes Evolution of the Web

Slide 6: Why? Simply keeping a page up to date is easy: poll But polling kills servers Comet keeps pages up to date *efficiently*

Slide 7: But ... It’s a hack - the web is biased against it

Slide 8: Does that stop us? Ajax is also a hack, but that hasn’t stopped it And Comet does work

Slide 9: Examples of Comet Chat is everywhere: GMail, Meebo, Yahoo Mail, etc. GMail uses it to update email conversations Google Docs uses it to show you other collaborators actions yes.com uses it to track radio station playlists Polar Rose are using it for delayed photo recognition GPokr is using it for online gaming etc...

Slide 10: Agenda: Use Cases Techniques Technologies Demos

Slide 11: Client Tricks Maximum of 2 connections per browser per host •Coordination using window.name in the client •or cookies using a server •or use multi-home DNS HTTP streaming is download only (chunked mode) TCP connections are kept alive under HTTP 1.1 Server detection of failed connections

Slide 12: Client How-to: Forever Frame Client posts an iframe which doesn’t close quickly •Send text/plain and poll in browser (not IE) •Send text/plain with 4k whitespace to flush IE •Flush with a <script> tag for each data block The iframe will need killing and restarting to avoid memory leak But IE clicks when iframe starts

Slide 13: Client How-to: Long Polling Client makes an XHR request which does not return immediately IE disallows reading XHR.responseText until connection is closed Although you can keep XHR frames open forever, generally you poll

Slide 14: Client How-to: htmlfile ‘htmlfile’ is an ActiveX control like XHR: htmlfile = new ActiveXObject(\"htmlfile\"); htmlfile.open(); htmlfile.write(\"<html><iframe src='javascript:void(0)' onload='cleanup();'></iframe></html>\"); htmlfile.close(); htmlfile.parentWindow.dwr = dwr; Avoids ‘clicking’, but doesn’t work in IE/Server 2003 Not supported in Firefox, Safari, Opera, etc.

Slide 15: Client How-to: Callback Polling Create <script> blocks pointing to any domain Create new script block when last completes

Slide 16: Client How-to: Other Options Mime Messaging: •Uses Multipart Mime in HTML: x-multipart-replace •Not in IE •Excellent performance Flash •We probably have enough other options that we don’t need to get into plugins

Slide 17: Server Tricks Watch out for stream-stoppers •Apache: mod_jk •Buggy network proxies •Various application firewalls Watch out for thread starvation

Slide 18: Agenda: Use Cases Techniques Technologies Demos

Slide 19: Saving you the Pain On the Server: •Jetty, Twisted Python, Grizzly, Lighttpd, Perbal Event Buses •Cometd, mod_pubsub, mod_repubsub, Lightstreamer, KnowHow, HAppS Frameworks •DWR, Juggernaut, Nevow

Slide 20: Bayeux Standard Protocol for Interoperable Comet Supported by: •Cometd, Jetty, Dojo, DWR and servers in development from BEA, IBM and Sun

Slide 21: Bayeux on the Client via Cometd Dojo client implementation: dojox.cometd.init(serverUrl); dojox.cometd.publish(\"/topic\", {/* payload */}); dojox.cometd.subscribe(\"/topic\", function(){/* ... */ });

Slide 22: Bayeux on the Server package dojox.cometd; public interface Bayeux { Client newClient(String idprefix, Listener listener); void publish(Client fromClient, String toChannel, Object data, String msgId); void subscribe(String toChannel, Client subscriber); ... }

Slide 23: DWR Reverse Ajax == Comet + Polling + Piggyback (It’s just a configuration option) Allowing the server to easily manage groups of users

Slide 24: DWR, Reverse Ajax DWR calling remote Javascript Collection sessions = context.getScriptSessionsByPage(url); ScriptProxy proxy = new ScriptProxy(sessions); proxy.addFunctionCall(\"updateCallers\", calls);

Slide 25: DWR, Reverse Ajax DWR calling remote Script.aculo.us Collection sessions = context.getScriptSessionsByPage(url); Effect e = new Effect(sessions); e.fade(\"client-id\");

Slide 26: DWR, Reverse Ajax DWR calling remote TIBCO GI Collection sessions = context.getScriptSessionsByPage(url); Server server = GI.getServer(sessions, \"appname\"); Button button = server.getJSXById(\"button\", Button.class); button.setEnabled(Form.STATEDISABLED, true);

Slide 27: Bayeux Performance

Slide 28: Agenda: Use Cases Techniques Technologies Demos

Slide 29: Demo http://www.webtide.com/sessionRater/

Slide 30: Demo

Slide 31: Questions? http://cometdaily.com/ http://getahead.org/blog/joe/ http://cometd.com/ http://directwebremoting.org/