So I would have to built my own client using httpcore? Is this something straithforward? I mean was there a reason it was prefered the httpclient to not support pipelining? Are there issues in servers support for pipelining or something similar?
________________________________ From: Oleg Kalnichevski <[email protected]> To: HttpClient User Discussion <[email protected]> Sent: Mon, July 19, 2010 12:57:32 PM Subject: Re: http pipelining On Sun, 2010-07-18 at 14:50 -0700, am am wrote: > Hi, > Does httpclient support http pipelining as stated in rfc2616? It does not. HTTP pipelining and 'expect:continue' handshaking are (pretty much) mutually exclusive. HttpClient support the latter. HttpClient is based on HttpCore, which is fully pipelining capable. Oleg > In the implemented > standards in httpclient page, rfc2616 is stated but I could not find an >explicit > > statement that the httpclient actually supports pipelining. So does it > support > pipelining? > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: mailto:[email protected] For additional commands, e-mail: mailto:[email protected]
