Does somebody know a library with the HTTP client pipelining support?
Asked
Active
Viewed 2,070 times
3
-
2Do you need an HTTP Server or an HTTP Client? – Josef Pfleger Feb 27 '11 at 11:07
-
@Josef, I need a client. @Samuh what does "work on ur accetp rate" means? Thanks both of u for the answers – Blackbelt Feb 27 '11 at 11:55
-
Ok, and what exactly do you mean by *pipelining support*? Does the built-in Apache HttpClient not support it? – Josef Pfleger Feb 27 '11 at 11:58
-
@Josef, Yes it does not support. If I have no misunderstood, with the pipelining supports is possible to make multiple requests to the server without waiting the answer. Normally I made a request and waiting for an answer.. – Blackbelt Feb 27 '11 at 12:10
-
2HTTP pipelining is a (required!) feature of HTTP 1.1 which allows the client to fire multiple requests in the same TCP stream before receiving any response. It's actually pretty nice for high latency connections, but seems to be disabled in all major HTTP clients (except Opera, maybe): http://en.wikipedia.org/wiki/HTTP_pipelining – lxgr Jan 26 '12 at 10:35
-
possible duplicate of [Java based HTTP Client which supports Pipelining](http://stackoverflow.com/questions/2777005/java-based-http-client-which-supports-pipelining) – nhahtdh Dec 03 '12 at 10:03
1 Answers
-1
You could try the one from the response of Java based HTTP Client which supports Pipelining.
HTTP 1.1 Pipelining has some additional information.
-
thanks, I had already read the response of the link you posted. no useful answer in it. – Blackbelt Jan 26 '12 at 11:17
-
http://hotpotato.biasedbit.com/ mentions supporting pipelining in the very first sentence, in bold. Doesn't that library work on Android? – lxgr Jan 26 '12 at 11:25
-