Where are the response bits being read over the wire?

2004-05-13 Thread Steve Johnson
Hi All, We are extending classes in an initail effort to instrument DNS, connect, response(first buffer read), and download. The DNS and connect looks pretty good. Where are the bits actually being retrieved over the wire? Overriding HttpMethodBase. byte[] getResponseBody() and adding

Re: Where are the response bits being read over the wire?

2004-05-13 Thread Michael Becke
Hi Steve, Could it be that most of the responses are less that 4KB? This would explain the zero times since the timer does not start until after the first read. If would suggest setting responseEnd before the while loop. Also, it could be that System.currentTimeMillis() does not provide