Hello, I am experiencing problems fetching data from a busy-wait servlet over a proxy (uses basic authetication).
The servlet looks more or less like: byte[] payLoad; Thread.sleep(2000); response.write(payLoad); So the response should take about 2s and then return the data - however what it does is to abort after about ~80-200ms without any data. If I send a single byte before the wait I get the single byte - but I never get the payload-data nore does the request take the full 2s. Since it works without proxy and I also can fetch ordinary html-files using exactly the same code over proxy I guess the proxy does kill my request because no data is traveling home for too long time. Could this be true? Had anybody else some experiences like this? How did you solve it? Thank you in advance, lg Clemens --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
