Polling is actively sampling the status of an external device by a client program as a synchronous activity.

learn more… | top users | synonyms

75
votes
9answers
22k views

FileSystemWatcher vs polling to watch for file changes

I need to setup an application that watches for files being created in a folder (locally or on a network drive) and I was wondering if anyone has any thoughts on whether the FileSystemWatcher or ...
26
votes
7answers
14k 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 ...
32
votes
3answers
19k views

jQuery AJAX polling for JSON response, handling based on AJAX result or JSON content

I'm a novice-to-intermediate JavaScript/jQuery programmer, so concrete/executable examples would be very much appreciated. My project requires using AJAX to poll a URL that returns JSON containing ...
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 ...
15
votes
5answers
11k views

jQuery, simple polling example

I'm learning jQuery, and I'm trying to find a simple code example that will poll an API for a condition. (ie, request a webpage every few seconds and process the results) I'm familiar with how to do ...
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
4answers
3k views

Shell process' standard output reading in Visual Basic 6

First, let me say that I'm not a Visual Basic 6 expert... My need is to: launch from a VB6 client code an exeternal .exe file wait for the process to finish and - during its execution - read the ...
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 ...
9
votes
5answers
9k views

Why are touch events destroying my Android framerate?

I'm developing a game for Android. It's got a lot going on but is running reasonably smoothly. That is, of course, until the user touches the screen. While they're touching it, onTouchEvent is called ...
5
votes
4answers
4k views

Getting historical data from Twitter

For a research project I would like to get the last 3 months worth of Twitter messages. Technical challenges aside, is this possible? by using some sort of slow polling mechanism to keep the rate ...
7
votes
2answers
397 views

WCF Silverlight client getting 404 not found response for poll message

Eventually WCF duplex Silverlight 4 client start getting 404 Not Found errors for poll messages, immediately after poll was send from WCF service to Silverlight client, sometimes this happens for ...
2
votes
0answers
33 views

How to change from ajax polling to long polling [duplicate]

I have an ajax polling script ( chat ) and it works great but the problem is that it gets request every 1 second so probably i think that long polling will be better so how can i change this normal ...
0
votes
0answers
320 views

Polling for new messages received by a GSM modem using Python

I am using python to send, receive and delete messages received on a GSM modem that is connected to my laptop via a serial port. I want to poll for new message indications so I know exactly when a ...
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 = ...
1
vote
5answers
4k views

How do I do realtime database polling in MySQL/PHP?

I have a Ruby script which is constantly updating a MySQL database. I want to show the "mysql_num_rows()" in realtime. So as an entry is entered into the database by the Ruby script I want the PHP ...
7
votes
2answers
2k views

Polling, Comet, WebSockets, etc

I'm needing to build in some pretty agressive "auto refresh" capabilities into a web application. It's kind of a photo gallery and the images are stored on AmazonS3 but the data about the images are ...
5
votes
2answers
4k views

Progress notification in WCF for long running processes - How?

I have to design and implement a way to deal with long running processes in a client/server application. A typical long running process would/could take 2-3 minutes. I also need to report progress to ...
12
votes
3answers
3k views

What is a RESTful way of monitoring a REST resource for changes?

If there is a REST resource that I want to monitor for changes or modifications from other clients, what is the best (and most RESTful) way of doing so? One idea I've had for doing so is by providing ...
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 ...
4
votes
4answers
3k views

polling a HTTP server from J2ME client

I have a J2ME app running on my mobile phone(client), I would like to open an HTTP connection with the server and keep polling for updated information on the server. Every poll performed will use ...
7
votes
5answers
5k views

What's the best way to ping many network devices in parallel?

I poll a lot of devices in network (more than 300) by iterative ping. The program polls the devices sequentially, so it's slow. I'd like to enhance the speed of polling. There some ways to do this ...
3
votes
4answers
4k views

alternative to polling database?

I have an application that works as follows: Linux machines generate 28 different types of letter to customers. The letters must be sent in .docx (Microsoft Word format). A secretary maintains MS Word ...
6
votes
3answers
930 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 ...
4
votes
3answers
509 views

To poll or not to poll (in a web services context)

We can use polling to find out about updates from some source, for example, clients connected to a webserver. WCF provides a nifty feature in the way of Duplex contracts, in which, I can maintain a ...
3
votes
2answers
2k views

Socket connections and Polling. Which is a better solution in terms of battery life?

So... I'm making an application for Android. The application needs to send and receive realtime chat data (needs to be a socket) but it also needs to send commands (which don't as the client knows ...
2
votes
2answers
2k views

jquery polling with smart poll plugin

I'm trying for the life of me to get this plugin to work but I'm not understanding the status function so retry is not firing. $.poll(10000, function(retry){ $.get('willfail', function(response, ...
2
votes
2answers
2k views

jQuery - polling of a job queue

I have a database table which contains a queue of jobs. A separate program processes these jobs. I want to provide a webpage for users to watch the progress of the queue. The Server side scripting to ...
1
vote
1answer
707 views

how to do polling in backbone.js?

Hi i am working on a paly2.0 framework application(with java) using backbone.js. In my application i need to get the table data from the database regularly ( for the use case of displaying the ...
8
votes
8answers
652 views

Is it better to poll or wait?

I have seen a question on why "polling is bad", but I am wonderring, in terms of minimizing the amount of processor time used by one thread, would it be better to do a spin wait (i.e. poll for a ...
5
votes
3answers
1k views

Android - Sockets vs Polling

As part of an Android app I'm developing there is a chat room feature. We have a server which can process the incoming messages and store the messages. Is it better to keep a socket connection open ...
4
votes
2answers
1k views

Hudson infinite loop polling for changes in Git repository?

The git plugin for hudson works well. However, the build script must update a version number in the files in the repository, commit, and push back to the repository. When Hudson polls next to check ...
4
votes
3answers
578 views

Is there a notification mechanism for when getifaddrs() results change?

On startup, my program calls getifaddrs() to find out what network interfaces are available for link-local IPv6 multicasting. This works as far as it goes, but it doesn't handle the case where the ...
3
votes
2answers
2k views

What is the difference between busy-wait and polling?

From the Wikipedia article on Polling Polling, or polled operation, in computer science, refers to actively sampling the status of an external device by a client program as a synchronous activity. ...
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 ...
2
votes
1answer
92 views

Using the Linux sysfs_notify call

I am trying to communicate asynchronously between a kernel driver and a user-space program (I know there are lots of questions here that ask for similar information, but I could find none that deal ...
2
votes
4answers
888 views

Most efficient way to tail/poll a log file in Java

There are many approaches, one could use create a Program and just call the Unix tail command, however the problem with this is that the process must be installed on a Unix machine with tail ...
2
votes
4answers
2k views

chat application on appengine

I am willing to implement a chat website on App Engine. But I found that App Engine will not allow me to go with server push. (as it will kill the response after 30 sec). So whats the other ...
2
votes
5answers
610 views

Detect a file in transit?

I'm writing an application that monitors a directory for new input files by polling the directory every few seconds. New files may often be several megabytes, and so take some time to fully arrive in ...
1
vote
1answer
2k views

BizTalk - Receive Port reading twice from DB

My receive port is of sqlBinding and typed polling. It invokes a SP to fetch a record and based on filter condition the corresponding orchestration kicks off. The BizTalk group consists of 2 servers; ...
10
votes
4answers
3k views

How does push notification technology work on Android? [closed]

How has Google implemented their push notification feature? Does it work through polling done by a service running in the background or in a different way?
4
votes
2answers
680 views

iOS: PUSH Notifications As A “Trigger” for Webservice Polling?

I'm just starting out learning OBJ-C but I do have an end-goal app that I'm working toward building; this app will be a master/detail app on the iPad that will be required to keep itself updated with ...
3
votes
1answer
1k views

Comet vs Ajax for chatting

My site needs a chat room, and I'm also looking to implement a facebookesque person to person chat system. What is most cost-efficient/performant (purely in terms of bw and server) for me. A regular ...
2
votes
2answers
132 views

Java poll on network connections

I am writing a program in Java where I have opened 256 network connections on one thread. Whenever there is any data on a socket, I should read it and process the same. Currently, I am using the ...
2
votes
2answers
482 views

Directory Scanner in Java

Scan a set of directories continuously for a set of file name filters. For each file name filter arrived, process the file and repeat the steps for all What can be the recommended design for this in ...
0
votes
1answer
121 views

How to poll email with hosted solutions? PHP or ASP

I have been looking for some time now but i cannot really find a good way to process an emial box using a hosted solution as justhost or asphost . Now my instinct tells me to write a service .. but i ...
0
votes
2answers
759 views

How Polling mechanism can be realized with RMI?

Following the design/architecture i created for multiuser/network turn-based game with RMI server callbacks, I have tried to create a distributed animation in which my model(Ball) is remote object ...
0
votes
3answers
993 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 ...
0
votes
3answers
3k views

Polling database for updates from C# application

I'm attempting to create my first "real" C# application - a small pet project to help schedule peer reviews at work. Due to the insane amount of process/bureaucracy involved in implementing anything ...