Questions tagged [request-queueing]
42 questions
9
votes
2 answers
Web Api Requests Queueing up forever on IIS (in state: ExecuteRequestHandler)
I'm currently experiencing some hangs on production environment, and after some investigation I'm seeing a lot of request queued up in the worker process of the Application Pool. The common thing is that every request that is queued for a long time…

Escobar5
- 3,941
- 8
- 39
- 62
4
votes
2 answers
RestKit - Send added/edited/deleted objects after offline storage
Using RestKit with Core Data I'm providing offline support when the user adds, edits or deletes objects without an internet connection by flagging the objects and saving them with Core Data.
If the internet is available again, I'll fetch all…

flashfabrixx
- 1,183
- 9
- 22
4
votes
2 answers
ASP.NET requests queued, can I identify what these requests are?
It seems helpful to find out what kind of requests currently in the queue when the queue blocked. Are there any ways for me to know the infomation of them? e.g. request url, client ip, cookie, body...

Jeffrey Zhao
- 4,923
- 4
- 30
- 52
4
votes
2 answers
Store HTTP/REST requests in case no connection is available
I am currently developing an android application using HTTP/REST requests to communicate with my backend. I am not using any particular library yet since until now the built-in HttpURLConnection works fine for me. However I would like to have some…

Obi
- 53
- 5
4
votes
1 answer
C# Request Queue
My Web Service uses another API to obtain data. I cache the data, clean it and return it do the user when they make a request. At the moment I am getting a lot of requests and because I can only access the data API 2 times per second, I am getting…

Simeon Wislang
- 461
- 2
- 9
- 21
3
votes
1 answer
Is there a way to debug why a chrome request was queued?
Background: Chrome has a requests queue. It will queue delayable requests under some circumstances. But I found it hard to determine which requests are causing the requests queuing.
My question is: do we have a way to dive into the root cause of the…

Z.better
- 348
- 1
- 5
- 15
3
votes
1 answer
How to access to worker's queued requests?
I'm implementing a web server using nodejs which must serve a lot of concurrent requests. As nodejs processes the requests one by one, it keeps them in an internal queue (in libuv, I guess).
I also want to run my web server using cluster module, so…

Majid Yaghouti
- 907
- 12
- 25
3
votes
4 answers
.NET Best approach to implementing client/server queuing model with external app?
Here is the spec:
Multiple clients using a WPF winforms application on their local machines
Clients initiate requests to the server to execute a simulation. This initiation should probably be via a web service but other suggestions are…

Alex
- 3,099
- 6
- 41
- 56
3
votes
1 answer
can any one explain why requestQueue are used in volley android
can any one explain why requestQueue are used in volley. and i also understood that all successful request are added to requestQueue (correct me if i am wrong). but why do we need to add successful request to requestQueue

vijay surya
- 135
- 1
- 6
2
votes
1 answer
Why is a .NET request waiting for the other?
As of my empirically gathered knowledge suggests, .NET WebForms is probably using a queue of requests and when the first request is properly handled, the new first comes to the head of the queue and so on. This behavior recently led to a…

Lajos Arpad
- 64,414
- 37
- 100
- 175
2
votes
2 answers
How to send JSON array containg jsonobjects to php server
Hello everyone I m sorry if this has been asked earlier , i have been searching for this solution since past 3 days.I am new in android and php.
I want to know how can i send "jsonArray"(shown below) to my php server and then extract jsonobject…

Sankalp Nigam
- 37
- 1
- 1
- 7
2
votes
2 answers
WCF Service & Request queueing
Is using a handrolled POCO queue class using pseudo code
T Dequeue() {
lock(syncRoot) {
if(queue.Empty) Thread.Wait();
}
}
void Enqueue(T item) {
queue.Enqueue(item);
Thread.Notify();
}
For WCF is request queueing a scalable…

Vyas Bharghava
- 6,372
- 9
- 39
- 59
1
vote
2 answers
How to queue requests in React Native without Redux?
Let's say I have a notes app. I want to enable the user to make changes while he is offline, save the changes optimistically in a Mobx store, and add a request to save the changes (on the server) to a queue.
Then when the internet connection is…

Vladan Mikic
- 63
- 7
1
vote
1 answer
Why the requests in Chrome Debugger still queueing as the HTTP2 Protocol has been enabled?
As I have enabled the HTTP2 protocol of IIS, but the requests of the main javascript files were still queueing. According to the explanation of queueing by Chrome, I really don't know what cause this.
You can check at here:…

Li Lee
- 11
- 2
1
vote
3 answers
Volley JsonObjectRequest response
I'm retrieving data from my server through JSON using Volley JSONObjectRequest to achieve this. After getting the JSON response, I want to save it into a variable and use it through out the activity. Below is my code sample:
private String…

Mike
- 697
- 1
- 9
- 21