Polling is actively sampling the status of an external device by a client program as a synchronous activity.
0
votes
0answers
4 views
open source web application for reliable anonymous polls
Now with the power of crowd collaboration being used in so many social activities like periodism, human rights watch, elections watch, etc. I wonder wheter there is a web application capable of ...
0
votes
1answer
17 views
Postgres SQL: Best way to check for new data in a database I don't control
For an application I am writing, I need to be able to identify when new data is inserted into several tables of a database.
The problem is two fold, this data will be been inserted many times per ...
0
votes
0answers
24 views
Execution of DLL code from SQL server
I am trying to create an online MVC 4 web appointment reminder system and I would like some pointers into the direction I should take. At the moment, I am cracking my head trying to figure out the ...
1
vote
0answers
12 views
Post a poll with options on users's wall using Facebook Graph API
Can we use Facebook graph API to post question with options on user's wall. I tried using below API but its not working for me. Please help !!
https://graph.facebook.com/{fbid}/questions/
string ...
0
votes
1answer
15 views
Is it possible in wxwidgets to determine if the window is currently visible?
In my wxWidgets (wxPython) app, I am using a 50 ms timer to do some polling and update a window if there are any changes. If changes are detected it calls wxWindow.Refresh to update the window, and ...
0
votes
1answer
25 views
does linux socket poll handle discrete messages?
I dropped in to ask whether if I send, say, two discrete messages with send (linux C/C++) and read it out in a poll(2/3) callback, can it happen that the two writes (packets) will be read out as one, ...
0
votes
1answer
36 views
Scaling GCM Push. How often can you perform GCM Push?
Everybody tells me that polling server for new data is stupid if the server is yours and you should implement push with GCM instead. Well, I agree and have done so but, I was wondering, how often can ...
1
vote
1answer
33 views
Primefaces Polling
Hi I am really a newbie to Jsf and Primefaces world,I have a simple query regarding primefaces poll component which is as follows.
I have a login page,once the user is authenticated i redirect him ...
2
votes
2answers
54 views
Configure Jenkins to Poll less then a every minute
Configuring the Jenkins polling interval to: * * * * * will poll the SCM for every minute.
Is there a way to configure it to poll less then a minute? for example every 30 seconds?
0
votes
0answers
10 views
How to fire an event on file when file modification has stopped in Java using WatchService?
I have been using WatchService api to implement this. I want to check whether a file is unchanged for 10 seconds and if it is so, then process the file. I have developed a code which checks whether ...
1
vote
1answer
58 views
Why doesn't this call to `poll` block correctly on a sysfs device attribute file?
I have a simple sysfs device attribute which shows up under my sysfs directory, and on a call to read returns the value of a kernelspace variable. I want to call poll on this attribute to allow my ...
1
vote
0answers
44 views
Long polling with EmberJS / Ember-Data?
I have setup a very basic first application where I can add and remove names from a list, which are then added/removed from a database using a RESTful API, using Ember-Data with the default REST ...
1
vote
1answer
19 views
Does the mongoDB broker for Celery work by polling?
The Celery documentation for the mongoDB broker does not say whether or not it works by polling. I read in this blog post that pub/sub is possible with mongoDB, but I don't know if that's what the ...
0
votes
0answers
26 views
How to fire an event when a file is not been modified using Java WatchService?
I want to fire an event whenever a file has stopped being modified. I am polling a directory and if the filename matches to "input.csv" then i want to fire an event on that file. Time to check whether ...
0
votes
1answer
32 views
JQuery polling a database and changing dom element if true
OK I created my self a validation.php this will return
{"exists":false,"data":"", "id":101}
or
{"exists":true,"data":"www.example.com/thumbnail1.jpg", "id":101}
The script is below
//no ...
2
votes
1answer
87 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 ...
0
votes
1answer
31 views
Polling every 10 seonds
In the code below, I had the expectation that this would create a polling loop that would fire off every 10 seconds to get a "job status report" from the server. It seems it is creating over 100 calls ...
2
votes
1answer
55 views
Long polling in SERVICE STACK
We have developed a C# Webservice in Service stack. In this whenever we get a request for checking the availability of a Data we need to check in the Database and return the result. If data is not ...
0
votes
1answer
49 views
Non-Flickering Polling in Angular with REST Backend
I managed getting a constant polling of the backend functional using
this answer.
But on every timeout the UI is flickering (empty model for a short time).
How can I update the model (and the view ...
0
votes
1answer
39 views
how to listen for submit event.
Hi i want to know how to tell if a event was fire within 2.5 seconds.
here is external function written by some other developer.
function validateAndSubmit() {
if ...
1
vote
0answers
13 views
Creating One Poll for Blog and Facebook
Hey there I'm running a contest and would love to gather poll results both on my blog and my company Facebook page. Anyone know of a way to do this so the results are fluid? In other words a vote on ...
0
votes
1answer
55 views
Problems with php File I/O and ajax
I'm trying to polling with ajax and php for an app Im writing. The php essentially receives an stringified object to put into a file, that can be read later. I have the writing to objects working just ...
1
vote
1answer
34 views
Getting first unlocked row
I have a backend that pools a database for jobs. To facilitate system speedup, I would like for multiple backends to poll the database for jobs.
Job table:
jobid,date,action,completed
I was told ...
0
votes
1answer
94 views
Polling vs Long-polling vs Push (books and scientific papers)
I'm writing master's thesis and I've already wrote much about Ajax vs Comet vs WebSocket comparison based on the information I've found on the internet.
But I need some scientific researches to put ...
0
votes
1answer
50 views
How to properly monitor and log Android OS events/activity in the background
I would like to know the correct way to monitor system events and operating system activity in Android. My research so far indicates there are various methods for running Activities, Services, ...
0
votes
0answers
30 views
Watching/Polling FTP location
Could anyone suggest an open source library in JAVA to monitor FTP location changes? I'm trying to monitor the changes in FTP location and once the changes are detected, changed files are to be copied ...
0
votes
1answer
106 views
WCF Long Polling in 2013
Having gone through a few reads, including...
http://anthymecaillard.wordpress.com/2012/06/06/wcf-real-time-web-development-with-long-polling/
How does a WCF server inform a WCF client about ...
0
votes
1answer
34 views
How can I download files, and process them only if some file does not exist?
_why is back, and of course leaving spooled messages on his webserver. I'd like to periodically poll his site, check for new spools, and if they don't exist already, convert them to PDF.
I have the ...
0
votes
0answers
30 views
Android polling the printer to disable bluetooth sleep mode
I am using an starIOPort jar file in my application for printing. My application uses bluetooth for connectivity between mobile device and the printer.
My concern is i want to poll the printer every ...
0
votes
2answers
62 views
C++: BOOST-ASIO read_handler() does not work as expected?
On line 67 I have the code
void session::read_handler(const boost::system::error_code& ec, std::size_t bytes_transferred)
{
std::cout<<bytes_transferred<<std::endl;
}
Which ...
1
vote
1answer
101 views
Best practices in iOS for polling a webservice about task completion
Let's say we have an iOS app that communicates with a web service. Some requests are delegated to another web service, so that a HTTP 200 status code is returned immediately while the operation is in ...
0
votes
1answer
78 views
How to return some variable once in few seconds to client?
I'm learning python+tornado currently and was stopped with this problem:
i need to write some data one every few sec (for example) to client even using self.write(var)
I've tried:
time.sleep - it's ...
0
votes
1answer
94 views
Long polling chat system
I know that long polling is the best way for making chat updates its contents and i know about web-socket but i think that long polling is best because many browsers doesn't support web-socket . The ...
1
vote
1answer
80 views
How to integrate zeromq polling into pyqt main loop?
I've got a simple PySide program (my first GUI program) in which I just have two sliders going from -100 to 100. The first slider sends its value to a hardware controller using zeromq. This controller ...
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
40 views
is long polling and ajax infinite request same? [closed]
here is a thing
In my index I got an ajax function used to check if there is new record has been inserted to my database when my function does not get any result for new record I have a conditional ...
0
votes
1answer
61 views
abort both jquery long polling and php
I'm using long polling with jquery. I can abort any ajax requests by simple doing ajax_request.abort(), but what should i do to stop PHP process running which was called by ajax call?
p.s. my while ...
0
votes
1answer
39 views
how to use static file discriptor using poll linux function call?
poll is running for infinite time interval.
i want poll to hit when some thing is written into file or when file is updated.
but poll is not able to detect when file is written.
#include ...
0
votes
1answer
97 views
CometD long polling making session to never time out
I am using ExtJs + CometD on ui side and Spring + Jetty as backend for my application. The user gets authenticated using spring authentication manager (j_spring_security_check).
The normal http ...
0
votes
1answer
56 views
Combining print statements with list comprehension in python
I'm writing code to send and receive messages in python using a GSM modem.
Whenever a new message is received I get the following response in a list x after reading from a serial port object.
...
0
votes
0answers
59 views
primefaces poll not updating
In my code, I have an ArrayList of strings that are messages to the administrator of a page. when ever certain actions are taken, a string is added to the arraylist to notify the admin that the action ...
0
votes
0answers
315 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 ...
1
vote
2answers
551 views
Asp.Net Signal R - Detect Changes in Database ? Asp.net Web Forms
So I have a List View inside an Update Panel
Update Panel
List View
Email 1
Email 2
Email 3
...
I'm trying to do an inbox similar to GMAIL in ASP.NET, the ...
2
votes
2answers
128 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 ...
0
votes
2answers
90 views
Camel FTP - FTP consumer for known filenames
Is there a way to request files from an FTP endpoint if the name is known? In our case we want to retrieve files depending on date and time from a folder structure that is huge - listing recursively ...
1
vote
1answer
61 views
How does ActionController::Base in Rails know what class its model is?
I'm doing a bit of metaprogramming in Ruby. I'm writing a library to meta-define some methods for me, specifically in the controller (automate some find_by methods that I have to write for my ...
-3
votes
1answer
427 views
PHP/AJAX/LONG POLLING Chat between 2 logged users only ( like facebook ) [closed]
I'm Magikano and I am making at this moment a new social network like Facebook and I am good in PHP but I am bad in ajax and I want to make a chat between 2 users only like Facebook when you click on ...
0
votes
2answers
125 views
difference between POLLIN and POLLPRI in poll() syscall
The documentation of poll() did not explain this in detail. While polling on an fd, when should one POLLIN and when should one use POLLPRI? Any insights will be useful.
1
vote
1answer
40 views
Exposing message queues remotely with NServiceBus
I have a scenario where I need to expose a bunch of event messages that have been created in NServiceBus to third parties over a simple authenticated REST API. The third party may or may not be using ...
0
votes
1answer
132 views
Long polling using jQuery in Rails with turbolink
I am following an instruction to create long polling using jQuery AJAX request here.
Below is my code:
:javascript
(function poll(){
$.ajax({ url: $("comment").data("url"), success: ...

