Tagged Questions

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 ...
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 ...
10
votes
6answers
205 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
4answers
712 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 ...
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
4answers
975 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
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 ...
7
votes
1answer
490 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
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 ...
6
votes
5answers
281 views

Pushing messages to clients from a server-side application?

I have a javascript-based client that is currently polling a .NET web service for new content. While polling works...I'm not happy with this approach because I'm using system resources and creating ...
6
votes
4answers
1k views

Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest

(This question is similar to this one, but it's for using XMLHttpRequest instead of an iframe for Comet.) I'm starting an async long poll like this: var xhr = new XMLHttpRequest(); xhr.open('POST', ...
5
votes
1answer
126 views

Concurrent connection and performance?

I have a Comet application that may have many instances open at once. This means many concurrent connections. It shouldn't be too hard to vary the connection hostname in order to overcome browser ...
5
votes
2answers
561 views

Long polling timeout issue

I'm doing a long poll method chatroom. But it seems that, when a long poll occurs and I refresh the page in chrome OR i try to send another async request everything times out (i.e i cant load my ...
5
votes
3answers
586 views

Real-time bi-directional JSON-RPC communication over HTTP

I am building a JSON-RPC server that accepts requests over HTTP. I would like to support bi-directional communication (both client and server can send requests), the specific use case being a ...
5
votes
3answers
3k views

Comet & PHP: How to use Comet with a PHP Chat System?

I have to build a simple chat system in PHP using Comet. I don't know what would be the best approach to this project. What is the best technique (cross-browser would be nice) to use, and how to ...
5
votes
1answer
351 views

Implementing COMET clientside

I have read up about what COMET streaming is, and all the various hacks required to get it working across the major browsers. The problems encountered seem to be two fold: 1. Server being able to ...
5
votes
3answers
403 views

Possible to do client-side HTTP push?

Pretty much the opposite of server-side push, also known as Comet. I'm wondering if it is possible to use long lived HTTP connections to push information to the server. Unlike a simple XHR, the ...
4
votes
2answers
223 views

Persistent local domain socket in php

The answers I've found to this question (such as here, here, and here) all involve pfsockopen(), which seems geared to non-local socket connections. However, the code I've written so far uses php to ...
4
votes
0answers
134 views

What is the most advanced and reliable COMET solution today? [closed]

Problem: need to serve millions of realtime notifications to web users per day. Requirements: Scalability Cross-domain requests without proxies. (XHR polling won't work) Cross browser support. ...
4
votes
3answers
402 views

Implementing a turn-based web game

I want to implement a turn-based game for the web. My first choice right now is Battleship. Nothing too complicated but still something decently fun. Some of the features I want are being able to ...
4
votes
1answer
212 views

Comet issue with abandoned open connections

I am using some comet techniques including long polling and forever frame. I am using iframes for cross subdomain stuff. The one issue that I ran into while implementing these techniques is when a ...
4
votes
1answer
1k views

Short-polling vs Long-polling for real time web applications?

I'm building a real-time web application As far as I know, the most popular choices are short-polling and long-polling. What are the advantages and disadvantages might there be for measuring one over ...
4
votes
3answers
1k views

ASP.NET - Comet Pushing messages from server to all clients

I'm making an application with server sided variables that change every second. Every second those new variable need to be shown at all the clients that have the webpage open. Now most people told me ...
4
votes
1answer
2k views

Stopping a iframe from loading a page using javascript

Is there a way in javascript of stopping an iframe in the middle of loading a page? The reason I need to do this is I have a background iframe streaming data from a web server (via a Comet style ...
4
votes
2answers
2k views

jquery comet long polling and streaming tutorials?

im so tired of not finding good tutorials on long polling/streaming comet techniques with jquery. what is wrong with the comet community. a lot of people wanna use this but there are no good tutorials ...
4
votes
8answers
4k views

Server push: comet vs ape?

I've read a little about comet and also APE. Which one is better? I want the users to see other users updated content. Like Google Wave. And in comet, there are 2 versions: iframe vs traditional ...
4
votes
3answers
660 views

Can JavaScript detect when the user stops loading the document?

I'm implementing Comet using the script tag long polling technique, based on this page. One issue (that I don't think there's a solution for) is the "throbber of doom" - the browser continues to show ...
4
votes
2answers
1k views

Advantage of COMET over long request polling?

I've been wondering if there is a real advantage to using COMET / push-technologies over the much simpler polling with long requests where the server will wait a certain maximum time for new events to ...
3
votes
1answer
191 views

How to notify client's browser about some event on server?

I'm using python (Tornado) on server side and some javascript on a client side. I have the common situation - one user send a message to another. And I want server to notify client's browser (reciever ...
3
votes
1answer
101 views

Unable to run any async ajax requests after location.replace is called in webkit browsers

I have a loading page that uses location.replace to navigate to the result page. This request can take a long time, so it takes a while to return. In the meantime, I am using long-polling ajax ...
3
votes
3answers
1k views

Node.JS: How to create a HTTP Chat Server?

With the Net Stream Object with TCP works great (as presetend in the node.js introduction video), but how should I do this in HTTP? Is there a way to access sockets/clients within an ...
3
votes
3answers
86 views

How can multiple clients be notified of a single users actions? Web based channels

Lets say we have a web based application where users login to their own channel. And our server manages and maintains a list of users, and their current ip addresses. When someone logs in, is it ...
3
votes
3answers
1k views

Comet VS Ajax polling

I need to create a chat like facebook chat. With Comet I need more memory to keep the connection. With Ajax polling there is a latency problem if I send request every 3-4 seconds. So... If the ...
3
votes
5answers
430 views

Comet programming and asp.net

i want to push data to user browser if an event happens on browser. with commet programming we can do this. http://en.wikipedia.org/wiki/Comet_%28programming%29 are any good tutorials available on ...
3
votes
4answers
366 views

Best way to show notifications and messages LIVE on a webpage?

I am interested in a really good way of doing instant messaging like meebo and facebook and myspace all have, also for notifications on a page. Example on my site now, when a user receives a new mail ...
3
votes
3answers
489 views

Keep a permanent connection to the server while navigating a website

We are a young start-up launching a unique chat product next week. Our chat is currently based on Jabber (using Openfire as our Jabber server) via BOSH (using Punjab), with jQuery for our client side ...
3
votes
2answers
475 views

Comet, responseText and memory usage

Is there a way to clear out the responseText of an XHR object without destroying the XHR object? I need to keep a persistent connection open to a web server to feed live data to a browser. The ...
3
votes
2answers
736 views

Comet applications without using IFrames

I am just getting started creating an AJAX application using server side push. I am using Grizzly Comet on Glassfish V2. Almost all the sample applications use IFrames for updating content on the ...
2
votes
2answers
47 views

Jquery method executed several time

I'm trying to implement simple Comet chat example and for this I implemented Long polling which calls itself recursively every 30 seconds. When pressing on button I want another ajax request to send ...
2
votes
1answer
201 views

How to use long-polling (preferably without Comet or node.js)?

Suppose I'm synchronizing text on an HTML page, stored in localStorage from computer A to computer B. When the user edits the text on computer A, I send a request to the server, and tell it what text ...
2
votes
2answers
4k views

NodeJS + socket.io: simple Client/Server example not working

i'm using NodeJS v0.4.8 and the latest Version of socket.io from npm install socket.io on Ubuntu: Linux mars 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 i686 i686 i386 ...
2
votes
1answer
206 views

How do i prevent chrome from getting a 'Aw snap!' with Comet?

I am using Google Chrome for my testing because in the future the comet page will be loaded in google chrome embedded. After about 12 hours, i guess the comet file gets too big and chrome gets the ...
2
votes
2answers
363 views

Refresh Image PHP and Javascript

I am using a Comet, Realtime engine called APE, and I am using jQuery to refresh a PHP image. Initially I load the image like this: <div id="container"> <img src="image.php" ...
2
votes
2answers
354 views

PHP Comet. How to do it better?

I have a simple comet chat. JavaScript send ajax request with long polling. When server find new messages in the database, it answers and gives JSON. Next, JavaScript send the request again. ...
2
votes
1answer
231 views

Node.JS General Comet Inquiry

I'm trying to take up node.js for a comet-based program. Essentially I'm going to have information coming in from either an SQL database or a XML feed, but the end result needs to be the same. I'm ...

1 2 3