Re: http pipelining

2010-07-19 Thread Oleg Kalnichevski
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

Re: http pipelining

2010-07-19 Thread am am
Kalnichevski ol...@apache.org To: HttpClient User Discussion httpclient-users@hc.apache.org 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

Re: http pipelining

2010-07-19 Thread Oleg Kalnichevski
On Mon, 2010-07-19 at 03:26 -0700, am am wrote: 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

Re: http pipelining

2010-07-19 Thread am am
is already a standard implementation Thank you very much in advance! From: Oleg Kalnichevski ol...@apache.org To: HttpClient User Discussion httpclient-users@hc.apache.org Sent: Mon, July 19, 2010 2:45:38 PM Subject: Re: http pipelining On Mon, 2010-07-19 at 03:26

Re: http pipelining

2010-07-19 Thread Oleg Kalnichevski
On Mon, 2010-07-19 at 05:00 -0700, am am wrote: Oleg, thank you for your reply. Is it easy to get a specific reference/paper/example that serves as a valid argument/example to avoid implementing pipelining in the httpclient? That would be very helpful to me. Because articles e.g. about

http pipelining

2010-07-18 Thread am am
Hi, Does httpclient support http pipelining as stated in rfc2616? 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?

Re: HTTP pipelining example

2010-03-12 Thread Ken Krugler
Hi Brian, Based on http://issues.apache.org/jira/browse/HTTPCLIENT-258, my guess is that HttpClient doesn't yet support pipelining. Though the last comment on it was by Oleg, from 3 years ago,. -- Ken On Mar 11, 2010, at 10:18pm, Brian Long wrote: Hi, I wasn't able to find anything on

Re: HTTP pipelining example

2010-03-12 Thread Brian Long
Hi Ken, I saw that comment as well, although I guess I was being optimistic to assume that HttpClient 4.x does indeed now support pipelining. I'm just not able to tell for sure, I can't find any specific mention of the word pipeline in any release notes, javadocs, etc. -Brian On Fri, Mar 12,

Re: HTTP pipelining example

2010-03-12 Thread Oleg Kalnichevski
Brian Long wrote: Hi Ken, I saw that comment as well, although I guess I was being optimistic to assume that HttpClient 4.x does indeed now support pipelining. I'm just not able to tell for sure, I can't find any specific mention of the word pipeline in any release notes, javadocs, etc.

HTTP pipelining example

2010-03-11 Thread Brian Long
Hi, I wasn't able to find anything on the website or archives (I guess it's kind of hard to search). Can someone please give me an example of how to perform a series of pipelined requests using http client 4.x? (simple GETs). They'll actually be Range: requests against S3 (since S3 does not

Re: http pipelining

2008-06-10 Thread Oleg Kalnichevski
On Tue, 2008-06-10 at 14:35 +0200, Martin Zdila wrote: hello is there support for http pipelining in the httpclient/httpcore 4? if not, are thare any plans to support it? Martin, The trouble is that pipelining and 'expect:continue' handshaking are (pretty much) mutually exclusive