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
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 ...
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 ...
1
vote
0answers
57 views

Multiple long pollings using php in news feed with likes and comments

I'm developing a website where there are news items that are displayed in real time using the long polling php approach. Each news has like and comment buttons and the number of likes are displayed ...
0
votes
1answer
146 views

http-long polling and -streaming: send data on same connection?

Just another quick question of understanding here... I'm wondering, while an HTTP request from a client is pending on the server when using long-polling or http-streaming, is it possible for the ...
0
votes
1answer
139 views

long polling doesn't stop

I tried to modified the long polling code to fit my situation. I would like to count the total number from mysql and if the number changes (increase or decrease), it will notify me. The problem is ...
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
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
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 ...
3
votes
3answers
269 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 ...
1
vote
1answer
4k views

Android Long Polling - Timeout executing service

I am trying to implement LongPolling in my Android Application. Long Polling If the LongPolling needs to long to get a answer my android service crashes. I tried with Threads and Async. Generally i ...
3
votes
1answer
896 views

What are the pros and cons of long polling vs. regular polling?

I have a web page that I need to check the server for an update every second. Updates could be relatively frequent or infrequent. There could be a lot of web clients simultaneously checking the ...