Tagged Questions
Comet is a generic term used to describe technology used to "push" data from a web server to connected web clients. In contrast to a "typical" web connection, in which the client must request data before the server can respond with that data, with comet implementations, data can be pushed from the server without the client requesting said data. Comet can be implemented in a variety of ways: long-polling, callback-polling, forever-frame and
163
votes
12answers
68k views
Simple “Long Polling” example code?
I can find lots of information on how Long Polling works (For example, this, and this), but no simple examples of how to implement this in code.
All I can find is cometd, which relies on the Dojo JS ...
69
votes
8answers
36k views
Comet and jQuery
I've done some research into server push with javascript and have found the general consensus to be that what I'm looking for lies in the "Comet" design pattern. Are there any good implementations of ...
60
votes
12answers
18k views
Comet implementation for ASP.NET?
I've been looking at ways to implement gmail-like messaging inside a browser, and arrived at the Comet concept. However, I haven't been able to find a good .NET implementation that allows me to do ...
39
votes
19answers
9k views
Is there some way to PUSH data from web server to browser?
Of course I am aware of Ajax, but the problem with Ajax is that the browser should poll the server frequently to find whether there is new data. This increases server load.
Is there any better method ...
34
votes
1answer
9k views
How does facebook, gmail send the real time notification?
I have read some posts about this topic and the answers are comet, reverse ajax, http streaming, server push, etc.
...
32
votes
3answers
6k views
How is GMail Chat able to make AJAX requests without client interaction?
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 ...
29
votes
10answers
16k views
Using comet with PHP?
I was thinking of implementing real time chat using a PHP backend, but I ran across this comment on a site discussing comet:
My understanding is that PHP is a
terrible language for Comet, ...
25
votes
6answers
3k views
HTML 5 Websockets will replace Comet?
It looks like Websockets in HTML 5 will become a new standard for server push.
Does that mean the server push hack called Comet will be obsolete?
Is there a reason why I should learn how to ...
22
votes
3answers
3k views
Django / Comet (Push): Least of all evils?
I have read all the questions and answers I can find regarding Django and HTTP Push. Yet, none offer a clear, concise, beginning-to-end solution about how to accomplish a basic "hello world" of ...
20
votes
7answers
10k views
Python Comet Server
I am building a web application that has a real-time feed (similar to Facebook's newsfeed) that I want to update via a long-polling mechanism. I understand that with Python, my choices are pretty much ...
19
votes
9answers
9k views
Implement Comet / Server push in Google App Engine in Python
How can I implement Comet / Server push in Google App Engine in Python?
18
votes
2answers
2k views
How do I use Comet with Spring MVC?
I'd like to add some Comet/server push capabilities to a simple web application. I'm having trouble finding up to date information on how to do this.
Can anyone point me to some examples, tutorials, ...
17
votes
5answers
5k views
The latest recommendation for Comet in Python?
I'm going to be implementing Comet in Python (even though I hear good things about erlycomet I'm not thrilled about supporting an Erlang-based web server in addition to everything else in our back ...
16
votes
2answers
728 views
Need help understanding Comet in Python (with Django)
After spending two entire days on this I'm still finding it impossible to understand all the choices and configurations for Comet in Python. I've read all the answers here as well as every blog post I ...
16
votes
3answers
6k views
Chrome's loading indicator keeps spinning during XMLHttpRequest
I'm writing an AJAX web app that uses Comet/Long Polling to keep the web page up to date, and I noticed in Chrome, it treats the page as if it's always loading (icon for the tab keeps spinning).
I ...
16
votes
3answers
4k views
Stop the browser “throbber of doom” while loading comet/server push iframe
When using Comet, or Ajax Long Pull techniques - an iframe is usually used. And while that iframe is waiting for the long connection to close, the browser is spinning its throbber (the ...
15
votes
5answers
3k views
How does a WCF server inform a WCF client about changes? (Better solution then simple polling, e.g. Comet or long polling)
see also "WCF push to client through
firewall"
I need to have a WCF client that connect to a WCF server, then when some of the data changes on the server the clients need to update its display.
...
14
votes
6answers
15k views
Simple comet example using php and jquery
Can anyone give me a good and simple example of the comet technique using PHP? I just need an example that uses a persistent HTTP connection or something similar. I don't want to use a polling ...
13
votes
6answers
6k views
Choosing and deploying a comet server
I want to push data to the browser over HTTP without killing my django/python application.
I decided to use a comet server, to proxy requests between my application and the client (though I still ...
13
votes
9answers
9k views
COMET (server push to client) on iPhone
I'm looking to establish some kind of socket/COMET type functionality from my server(s) to my iPhone application. Essentially, anytime a user manages to set an arbitrary object 'dirty' on the server, ...
12
votes
7answers
7k views
nginx proxy to comet
I need some help from some linux gurus. I am working on a webapp that includes a comet server. The comet server runs on localhost:8080 and exposes the url localhost:8080/long_polling for clients to ...
11
votes
1answer
1k views
Why isn't BOSH more popular, especially as an alternative to WebSockets and long-polling?
BOSH is...
a transport protocol that emulates the semantics of a long-lived, bidirectional TCP connection between two entities (such as a client and a server) by efficiently using multiple ...
11
votes
1answer
1k views
How scalable is the Lift framework's comet/reverse ajax?
I recently learned scala and about to start working/learning Lift framework. Going through the Features and getting started with the framework, I had seen some amazing capabilities of the framework ...
10
votes
3answers
829 views
Python+Tornado vs Scala+Lift?
I'm looking to start a Google Maps based web application.
My initial thoughts are that in the first phase the focus should be on the front-end, and the backend should be easy to write and to ...
10
votes
6answers
202 views
longpoll XHR vs iframe
I'm implementing typical server-push (comet) application. I'm choosing between two options: the longpoll XHR and iFrames. What are pros and cons of these? I know about the cross-site restrictions and ...
10
votes
2answers
146 views
Is Comet still immature?
I'm thinking of writing a realtime web app that would need to be able to push messages to the browser. When I first read about Comet, people seemed to consider it a brittle and immature approach due ...
10
votes
4answers
710 views
Writing a chat application
I'm wondering what's the right way to code a chat application for thousands of users.
I'm just confused how will I be able to ping the server using AJAX every second or maybe less and check if there ...
10
votes
3answers
2k views
Simplest way to implement backend server for multiplayer JavaScript game? (COMET/longpolling)
I've been writing a game in JavaScript, and it's time to make it multiplayer. I would like to use AJAX long-polling to get the current game state, as well as implement the lobby.
The server just ...
9
votes
2answers
2k views
How can I scale socket.io?
Let's say a server gets 10,000 concurrent connections (via socket.io). That's a lot, and if it can't handle any more, I need to spin up another server.
How can I sync the two servers together with ...
9
votes
4answers
1k views
Streaming with Node.js, or any other Comet solution
I'm trying to build a streaming solution for an internal app, but am drawing blanks for a solution to get past a roadblock. Currently, in my working example, I'm using APE, but due to restrictions I ...
9
votes
1answer
643 views
out of this world Comet programming and a web-based chat
Current Project Setup
I've been working on a web-based chat, similar to Facebook chat. At the current state, I listen for incoming chats and check for new messages in an existing chat is by doing...
...
9
votes
4answers
973 views
How does Gmail do comet on Opera?
I would like to know how Gmail (or anyone else) does comet on Opera.
Here is what I know so far from my experiments.
It doesn't use the event-source tag which is broken in Opera 10.51.
It doesn't ...
9
votes
1answer
2k views
How does GMail implement Comet?
With the help of HttpWatch, I tried to figure out how GMail implements Comet.
I login in to GMail with two accounts, one in IE and the other in Firefox. Chatting in GTalk in GMail with some magic ...
9
votes
5answers
573 views
Long held AJAX connections being blocked by Anti-Virus
Ok, this is downright bizarre. I am building a web application that relies on long held HTTP connection using COMET, and using this to stream data from the server to the application.
Now, the ...
9
votes
2answers
7k views
Cross-browser implementation of “HTTP Streaming” (push) AJAX pattern
Client request web page from server. Clent then requests for extra calculations to be done; server performs series of calculations and sends partial results as soon as they are available (text format, ...
9
votes
4answers
5k views
COMET javascript library
I am looking for a simple and reliable Comet javascript library. I want to keep a persistent streaming of data from my server (via PHP script) to the client side. I tried building my own using the ...
9
votes
4answers
3k views
Is Http Streaming Comet possible in Safari?
By HTTP Streaming Comet, I mean the "forever iframe" / "forever xhr" variations that don't close the connection after data has been pushed from the server, as opposed to standard polling and long ...
8
votes
4answers
998 views
Is there a difference between long-polling and using Comet
I am implementing a system where I need real-time updates. I have been looking at certain scenarios and among all was Comet. Implementing this I do not see any way this is different from traditional ...
8
votes
3answers
2k views
Is “long polling” the most efficient way to create a Web Real Time App?
I want to create an application like this:
http://typewith.me/2wicOjuefI
What is the most efficient way to create this real time application ?
Flash ? Long polling ? Http Streaming ? or anything ...
8
votes
8answers
689 views
How to display HTML to the browser incrementally over a long period of time?
Do I need to pass back any HTTP headers to tell the browser that my server won't be immediately closing the connection and to display as the HTML is received? Is there anything necessary to get the ...
7
votes
3answers
4k views
Node.js vs Java for Comet application
We look to build a high-performance, scalable Comet server, and thought first about using Java Grizzly with GlassFish.
But after some research, we see that Node.JS is taking rapidly as the preferred ...
7
votes
1answer
488 views
Pressing Escape under Firefox kills my Ajax requests. I'd like to prevent this
I'm developing a web application which requires long-running Ajax requests. Unfortunately, under Firefox, pressing Escape during a request has the drawback of killing the request and any information ...
7
votes
1answer
195 views
Scala Comet and Mobile Applications
I'm exploring using Scala with its Comet facilities for my next project and was curious if anyone had experience using Comet (not necessarily Scala) with:
WebOS
Android
iOS
All these phones are ...
7
votes
8answers
2k views
Easiest way to make comet chat
I need to make tet-a-tet comet chat with many channels using PHP as a backend and JQuery as a frontend. I need something like event-driven server to do this... But didnt find any simple and ...
7
votes
3answers
3k views
How To Implement ReverseAJAX (Comet) in ASP.Net MVC
How could I implement a Comet architecture in a ASP.Net MVC?
7
votes
5answers
2k views
Best solution for Java HTTP push (messaging)
We want to push data from a server to clients but can only use HTTP (port 80). What is the best solution for messaging? One idea is Comet. Are there other ideas or frameworks which offer lets say JMS ...
7
votes
5answers
2k views
Long polling with NSURLConnection
I'm working on an iPhone application which will use long-polling to send event notifications from the server to the client over HTTP. After opening a connection on the server I'm sending small bits ...
7
votes
2answers
2k views
WCF comet and threads
I'm trying to use WCF to implement a comet style server push to an ajax web application.
In my WCF service, I've implemented a WaitForEvents method that calls Monitor.Wait to suspend the thread until ...
7
votes
6answers
2k views
Is there an alternative of ajax that does not require polling without sever side modifications?
I'm trying to create a small and basic "ajax" based multiplayer game. Coordinates of objects are being given by a PHP "handler". This handler.php file is being polled every 200MS, by using ajax.
...
7
votes
10answers
678 views
Ajax “Is there new content? If so, update page” - How to do this without breaking the server?
It's a simple case of a javascript that continuously asks "are there yet?" Like a four year old on a car drive.. But, much like parents, if you do this too often or, with too many kids at once, the ...