1
vote
4answers
203 views

How does Long Polling or Comet Work with PHP?

I am making a notification system for my website. I want the logged in users to immediately noticed when a notification has made. As many people say, there're only a few ways of doing so. One is ...
1
vote
1answer
78 views

Polling Battery Drain

I'd like to know how much polling will drain battery life. Is it dependent on the message size? Or is just the fact that I'm polling at all that makes it drain the batter? I can provide more details: ...
2
votes
0answers
85 views

javascript doesn't seem to be getting data from rails source

I am using dataTables to display a nice table to display various information. The javascript successfully sends poll requests to the database/webserver, however the javascript doesn't seem to be ...
0
votes
4answers
940 views

How to wait for a WebSocket's readyState to change

I'm trying to implement a WebSocket with a fallback to polling. If the WebSocket connection succeeds, readyState becomes 1, but if it fails, readyState is 3, and I should begin polling. I tried ...
0
votes
3answers
57 views

How to start polling immediately?

I am trying to use polling for a small check that is performed at an interval of 15 secs. setInterval(function(){ $.ajax({ url: "aaa.com", success: function(data){ ...
0
votes
0answers
51 views

Issue with a Long Polling frame and Frame containing a Form

I have an ASP.NET web application that contains two frames. The top frame is a basic page containing buttons for navigating through "Agenda Items". This page contains a previous and next button, along ...
2
votes
3answers
227 views

How to stop javascript ajax requests in inactive Iframe?

I have made Website, where various other pages are built-in as "apps" with i frames: <iframe id="frame1" src="./app1.php"> <iframe id="frame2" src="./app2.php"> In these apps, there is ...
2
votes
1answer
138 views

Google App Engine Channel API Javascript Client: Set Poll Timer Manually

I am writing a web client that supports messages sent from a Google App Engine Java server, by using Google's official GAE Channel API Javascript client. I would like to know if it is possible for me ...
1
vote
3answers
1k views

JQuery AJAX Polling Syntax

I'm a bit green, so please bear with me. I need to poll a SharePoint webservice until it returns a value. I believe that I have formatted my code incorrectly. If there is a pre-existing thread that ...
1
vote
1answer
433 views

How does gmail chat send data to users without long-polling?

I have been fiddling with a chat program for some time now. Polling with AJAX has been successful, but it sends a request to the server every second, which seems too expensive to me, not to mention ...
2
votes
4answers
232 views

Do we need setTimeout for short polling?

If I want to implement short polling like this: function firstCall(){ $.ajax({ ... success: function(response){ if (response.OK == "OK"){ secondCall(); ...
0
votes
2answers
66 views

Try to revisit the URL in javascript

I want to visit certain REST URI. $.ajax({ type: "POST", url: url + "result/" + ticket_id, success: function(data) { setTimeout(function(){pollResponse(url,data.id);}, 3000); ...
0
votes
1answer
100 views

Auto restarting Ajax request after Javascript is turned off and then turned on

Is there any way to continue sending Ajax requests ( for example, in a polling application, where a request is sent whenever a response from the previous request is received, starting immediately on ...
6
votes
3answers
920 views

Polling request for updating Backbone Models/Views

I need to find a way to update a web App implemented with backbone. The use case will be the following: I have several Views, and each View, or maybe model/collection related to this view, needs to ...
0
votes
1answer
181 views

Periodically Polling Database with Rails View Updating without refresh

We're building a statusboard for all our external servers. Each entry in our database has references to OS, Software version, etc. These values are ever changing and we'd like to have the page ...
1
vote
3answers
77 views

Will faster frequency of polling bog down my page?

So I have a Rails app (which in this case seems like it would be irrelevant, but I'll mention it anyway). It's a sort of chat room application. In order to tell which users are currently in a chat ...
1
vote
2answers
1k views

AJAX polling and looping

My project is basically like a Reddit feed that updates in real-time. I'm trying to use AJAX to poll the server at intervals for updates on 15 items at a time. I wrote a for loop but it caused the ...
3
votes
1answer
528 views

Jquery PHP mySQL ajax method to sync data to two clients?

I'm developing an app where two or more separate clients will exchange specific information via a server transfer in real time by all clients invoking the process at approximately the same time ...
1
vote
0answers
74 views

How can I do 2 request at the same time to the server (asp.net mvc 3)

I really dont know how should I proceed to be able to poll information with a jscript and continue to call other script that will call methode on the server side. What i want is to do stuff for 42 ...
0
votes
1answer
259 views

AJAX MySQL Polling [closed]

I was wondering if someone could help me develop an AJAX/javascript script that will run a PHP script once every 5 minutes sending. This script runs sql query against a mysql table to see if a ...
0
votes
2answers
548 views

Efficiency / overhead of EventSource vs polled ajax?

I am writing a simple app that's very similar to a chat application in terms of its use. A host starts a "room", participants can join and send messages into said room. I am trying to make this as ...
1
vote
1answer
888 views

Using setInterval() to do simplistic continuos polling

For a simple webapp that needs to refresh parts of data presented to the user in set intervals, are there any downsides to just using setInterval() to get a json from an endpoint instead of using a ...
1
vote
1answer
918 views

Can't stop primefaces poll

I'm implementing some dialogs that need a common poll to get fresh values from the server. I'm trying use p:poll, but unfortunately I cant stop it. I start the poll when a user clicks on a button in ...
0
votes
4answers
238 views

How can long polling be helpfull at all?

I don't understand, how can long polling be helpfull at all if XMLHttpRequest gives no access to partial content??? There is no difference where to wait, on client, or on server. The responce can be ...
0
votes
3answers
94 views

Dynamically append content to an element with jQuery

I would like to be able to have an ajax get update the text in a span tag each time it is fired. $.ajax({ type: 'GET', url: "JSON URL", cache: false, contentType: ...
0
votes
2answers
117 views

Curious: what is this syntax that Facebook's polling services is using during the callback

I was watching the Network Monitor on Chrome's developer tool seeing how Facebook updates content throughout their news feed. All of the responses from AJAX begin with the following: for ...
0
votes
1answer
145 views

Is it possible to differentate between page refresh and close using the below method?

I want to open a popup window on closing the page and not during refresh of the page, So what i am thinking to do is. Clent Send ajax request to server every x seconds. Server var timeout=0 var ...
24
votes
3answers
6k views

Detect If Browser Tab Has Focus

Is there a reliable cross-browser way to detect that a tab has focus. The scenario is that we have an application that polls regularly for stock prices, and if the page doesn't have focus we could ...
1
vote
3answers
240 views

How do I cause the web browser to complete the loading process, although I am running pending AJAX requests in the background?

I am trying to implement a simple "comet" ajax long-polling mechanism (as described here). The problem is, I cannot figure out how to tell the browser to act as if it has finished loading the page, ...
0
votes
1answer
446 views

Ajax long polling problem

I looked at a brief introduction to ajax long polling here and tried to mimic it on my own pc using wamp, however I have encountered a couple of problems. I kept getting an error about undefined ...
9
votes
3answers
2k views

How does facebook push data to news feed?

I am curious as to how Facebook pushes data to the browser as in the news feed. New data shows up at the top of the feed without reloading the page or clicking a button Does Facebook achieve this by ...
13
votes
4answers
6k views

Polling a Collection with Backbone.js

I’m trying to keep a Backbone.js Collection up-to-date with what’s happening on the server. My code is similar to the following: var Comment = Backbone.Model.extend({}); var CommentCollection = ...
3
votes
3answers
268 views

jquery onscreen run offscreen pause

Is there a way to pause a long polling script when someone leaves a page up but is not viewing it? So if I have multiple tabs or windows of the app open only the one I am actively viewing would have ...
2
votes
2answers
436 views

javascript object equality / identity - comparison

I've got this code update_questions: function() { alert("UPDATING!!"); }, poll: function() { var self = this; $.post( ...
1
vote
1answer
455 views

Polling Control in ASP.NET

I want to make a voting control that allow the user to vote on one option and view the result , I don't know if there is a ready made controls that make that in ASP.NET or JavaScript, or I have to ...
0
votes
2answers
306 views

How do I return outside of the function?

How do I return a value from within $.ajax to the outer function? In the example below, I want getProxySrc() to return streamSrc. Also, I don't want to tie up javascript / the page while it's ...
3
votes
2answers
247 views

image polling through javascript

I need to poll an image using javascript and need to perform an action once the image is found at its position. This is the code I have written for this task. /*----Image handling script starts ...
1
vote
2answers
647 views

Detecting when the back/forward button is pressed without polling? (hash change)

I have a page that changes hashes quite a bit, and I'm wanting to add the functionality that when the back/forward button is pressed (as in, the hash changes), a function runs. I've seen that you can ...
2
votes
2answers
83 views

Any way to consume POST requests via browser?

Say you've got an app that can send out POST requests every time an action happens. It allows subscriptions to add/drop quickly and effortlessly. Say that site is Stackoverflow and it can send a you ...
0
votes
4answers
250 views

unable to refresh a page when i use setInterval() and pass in a function that uses document.write to output some javascript to the page

basically i have a blank html page that includes a javascript file, and in the javascript file i have this: function doIt() { document.writeln("asdf"); } // could also be setTimeout ...
2
votes
3answers
495 views

Trying to increment a javascript counter when using polling ajax http requests

I have a script that is running every 5 seconds, as a polling ajax http request. I want to send an incrementing amount through it, on each request (1,2,3,4,5,6 etc...) I have this so far, but the ...
0
votes
3answers
989 views

What is a good setTimeout interval for polling in a IE?

I have an ActiveX object (who source code I have) running in a browser (IE). The ActiveX object has a UI, which raises events. I want to respond to those events in the browser. I don't want to invoke ...
13
votes
2answers
10k views

Server polling with JavaScript

What is best practise for polling server with JavaScript for application that needs to refresh data very rapidly? I'm using jQuery for front-end and Java Spring Framework for backend. Example of ...
0
votes
1answer
1k views

PHP auto refresh page without losing user input

I'm working on a PHP collaboration software project. I have a page that shows the latest updates from other users who are adding content to the database, but also has a form input to allow the user ...
4
votes
3answers
3k 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 ...
0
votes
2answers
402 views

How can I make my javascript chat polling script be more efficient?

For some reason this check for new chat messages causes a larger amount of browser (and to some extent server) load than I would expect. Anyone see any ways that I can make it more efficient, to ...
0
votes
2answers
1k views

Real Time Twitter Streaming without constant Polling

I was looking at Twitter Streaming API for getting a real-time feed. But I dont want it stored on my server. I just want it pulled from the server and the browser page will retrieve the data from my ...
1
vote
7answers
4k views

How to get the instance name of an object

I use the below code to write code to query a web method in a specified interval. now in the this.Poll function I have to do this.tmo = setTimeout(this.strInstanceName + ".Poll()", this.iInterval); ...
3
votes
2answers
1k views

Poll the Server with Ajax and Dojo

I'm using dojo.xhrPost to sent Ajax Requests The call is wrapped by a function sendRequest() I've now to continuously (every 3sec) send the same ajax Post to the server How can I implement a Server ...
0
votes
1answer
403 views

How can I write a real time stats system? in ajax and php

I trying to make a realtime stats bar. And I think of using the Long Polling concept. But when a request is send to php. I need a way of testing if the stats are updated. Now I can just make a loop ...

1 2