vote up 14 vote down star
8

All HTTP responses require the client to initiate them, even those made using AJAX. But GMail's chat feature is able to receive messages from other users, even when I'm just sitting in my comfy computer chair watching but not interacting with the browser. How did they do it?

flag

2  
Question hijack: what kind of AJAX polling strategy does Gmail use to implement the chat client? – Jimmy Apr 9 at 3:56
wow you practically re-wrote the question. – Pablo Fernandez Apr 9 at 4:06
@Pablo: yeah... pretty sure this is what he was asking, but didn't figure it out 'till i'd already answered, so i wanted to clean it up 'fore someone else made the same mistake. – Shog9 Apr 9 at 4:08
@Pablo: Yes he did rewrite the question. It made zero sense in the original post. – Samuel Apr 9 at 4:12

3 Answers

vote up 17 vote down check

That tech is known as "comet", but also as "server push", "reverse ajax", etc.

It's about pushing data from the server to the browser, keeping an http connection alive. Find more info on it on the wikipedia article (English version).

Also here's a pretty good presentation with Joe Walker from DWR, where he talks about comet.

link|flag
do you know which method Gmail uses? Hidden IFrame, XMLHttpRequest? – chat Apr 9 at 4:11
@chat view source? – Rex M Apr 9 at 4:15
Perhaps link to the English version of Wikipedia? – Frank Crook Apr 9 at 5:37
@Frank Sorry! My locale betrays me :D, thanks jon for the correction, I'll double check next time. – Pablo Fernandez Apr 9 at 16:04
I haven't looked at comet in awhile, but last time I looked into it the issue was that apache really can't hold that many connections open at once. So if you were to implement comet you would need a lot more servers then you would otherwise need. – thirsty93 Apr 9 at 17:22
show 1 more comment
vote up 3 vote down

As you rightfully pointed out, HTTP requires data to be 'pulled' by the client. Gmail can still 'pull' data from the server by using a timer to trigger the HTTP operation instead of requiring the user to click something. So, it may seem to be auto, but it is still client initiated.

link|flag
I've heard they use comet. It's not a client request AFAIK – Pablo Fernandez Apr 9 at 3:59
I see. Learned something new today. Thanks! – sybreon Apr 9 at 4:30
Comet is still client-initiated AFAIK - it's just that the server keeps the connection open until it's got something interesting to say instead of immediately returning a response. – Jon Skeet Apr 9 at 6:13
And indeed reading through the wikipedia article, it's pretty clear that for all current implementations, the client initiates the connection. It's hard to see how else it could work, to be honest. – Jon Skeet Apr 9 at 6:16
I guess it depends on how it is viewed. At the TCP layer, it is definitely client pull. However, at the app layer, it depends. If it sends something down that triggers a javascript in the client, is it still client pull? If it immediately sends another trigger, is it still client pull? – sybreon Apr 9 at 11:28
vote up 3 vote down

Yep Comets is correct. Google Web Toolkit Applications by Ryan Dewsbury explains how to create a Comets based Instant Messenger application in chapter 9.

link|flag

Your Answer

Get an OpenID
or

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