RE: SSL Performance Problem

2003-04-03 Thread Kalnichevski, Oleg
Andre, 1) SSL HttpClient is reliant upon Sun's JSSE implementation (alternative SSL implementation can also be plugged-in with a bit of coding) to provide SSL transport encryption. From the HttpClient's standpoint HTTP does not differ much from HTTPS (if at all) once communication socket has

Re: SSL Performance Problem

2003-04-03 Thread Michael Becke
Hello André, Unfortunately it seems that the attachments were stipped from your message. Jeff, Oleg do you have any idea how we can get this fixed? I'm guessing the poor performance with SSL is due to the Expect: 100-continue header. Try calling setUseExpectHeader(false) on the post method.

RE: SSL Performance Problem

2003-04-03 Thread André Augusto de Oliveira Aragão
To: Commons HttpClient Project Subject: Re: SSL Performance Problem Hello André, Unfortunately it seems that the attachments were stipped from your message. Jeff, Oleg do you have any idea how we can get this fixed? I'm guessing the poor performance with SSL is due to the Expect: 100-continue header

RE: SSL Performance Problem

2003-04-03 Thread Kalnichevski, Oleg
: Donnerstag, 3. April 2003 16:55 To: 'Commons HttpClient Project' Cc: '[EMAIL PROTECTED]' Subject: RE: SSL Performance Problem Thanks Michael, I´m trying to send it again, this time as zip file. About the poor performance, I'm measuring time only after receiving the 100 server response

RE: SSL Performance Problem

2003-04-03 Thread Kalnichevski, Oleg
Project' Subject: RE: SSL Performance Problem HI! I got the latest nightly build. The times are no more constant, and the performance is now ok. There is a new message in the log: org.apache.commons.httpclient.HttpMethod - Discarding unexpected response: HTTP/1.1 100 Continue Why is it discarding

Re: SSL Performance Problem

2003-04-03 Thread Michael Becke
' Subject: RE: SSL Performance Problem HI! I got the latest nightly build. The times are no more constant, and the performance is now ok. There is a new message in the log: org.apache.commons.httpclient.HttpMethod - Discarding unexpected response: HTTP/1.1 100 Continue Why is it discarding? Is the server

Re: SSL Performance Problem

2003-04-03 Thread Simon Roberts
- From: Oleg Kalnichevski [EMAIL PROTECTED] To: Commons HttpClient Project [EMAIL PROTECTED] Sent: Friday, April 04, 2003 6:22 AM Subject: RE: SSL Performance Problem Andre, I know for sure Jetty server always sends 100 status code when processing POST HTTP/1.1 regardless of 'expect: 100-continue