Re: Performance Issue

2003-07-26 Thread Todd Wolff
Thanks for the reply Oleg. I tried setUseExpectHeader(true) as suggested, but no improvement. I ran the exact same test with all else held equal except the httpclient libs used (alpha3 vs. beta2) and I've attached the debug logs. I've also attached the code. (No security constraint was used thi

Re: Commons-HttpClient conflict with WebDAVClient

2003-07-26 Thread Eric Johnson
Daniel, Sorry I didn't respond sooner, but I was on vacation. I'm hoping you've gotten an answer on the Slide mailing list, but I've not had a chance to check. I've been doing some work to keep the latest code in Slide up-to-date with the latest of HttpClient 2.0. You should have success ther

Re: Performance Issue

2003-07-26 Thread Oleg Kalnichevski
I think I tell the reason even without having seen the code. Since beta-1 'expect: 100-continue' handshake is off per default, that can make a huge difference in terms of performance with POST requests that require authentication. Just do the following httppost.setUseExpectHeader(true); http://