Re: keepalive - multiple choice answer

2002-04-22 Thread Dan Davis
I don't think you should use HttpUrlConnection unless you first tests that it disables the Nagle algorithm on the underlying socket. The client has to disable this or each request will take 200 ms. See java.net.Socket.setNoDelay() and Stevens' Network Programming.

RE: keepalive - multiple choice answer

2002-04-22 Thread Volkmann, Mark
Title: RE: keepalive - multiple choice answer I wasn't aware of the issues with HttpURLConnection. Thanks for educating me! > -Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 22, 2002 7:15 PM > To: [EMAIL PROTECTED] > Su

Re: keepalive - multiple choice answer

2002-04-22 Thread Steve Loughran
- Original Message - From: "Volkmann, Mark" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 22, 2002 2:56 PM Subject: keepalive - multiple choice answer > I know everybody is busy getting ready for beta 2, but I'd really appreciate > just a terse answer to this question.