Tagged Questions
10
votes
3answers
6k views
Trying to run multiple HTTP requests in parallel, but being limited by Windows (registry)
I'm developing an application (winforms C# .NET 4.0) where I access a lookup functionality from a 3rd party through a simple HTTP request. I call an url with a parameter, and in return I get a small ...
1
vote
3answers
921 views
How to cancel DefaulHttpClient execution process in multithread
I am developing an android application that rely very much on internet, I retrieve data frequently using this RestClient Class, that wrap some detail on using DefaultHttpClient to do network request.
...
2
votes
4answers
524 views
Server-side performing multiple requests against cloud services
I am in the process of writing a web-app that uses multiple web APIs.
For a single request of a single user, my app may need to perform up to 30 HTTP requests to other sites. The site housing the ...
2
votes
2answers
1k views
How to use Apache HttpClient while the underlying connection is stateful?
I have googled a lot about how to use HttpClient with multithreading.
Most of them suggest using the ThreadSafeClientConnManager.
But my application has to login some host(a login form page) so that ...
6
votes
3answers
6k views
Multi-Threading httpClient
public class test {
public static final int nThreads = 2;
public static void main(String[] args) throws ExecutionException, InterruptedException{
// Runnable myrunnable = new ...
2
votes
2answers
5k views
How to use HttpClient with multithreaded operation?
I've to do an application that performs a Login POST request in a certain host, then navigates some pages, finds and retrieves some data.
Becase the website resouce is protected by session, so I have ...