vote up 0 vote down star

I was having a problem where HttpURLConnection.getOutputStream() took 2-3 seconds. I set the connect timeout using HttpURLConnection.setConnectTimeout, expecting a SocketTimeoutException (wrapped by IOException) to be thrown from getOutputStream(), so I could retry the whole operation on another server.

Instead, it just works now. Does getOutputStream() try to connect internally if it gets a SocketTimeoutException?

flag

63% accept rate

2 Answers

vote up 1 vote down

If you setConnectTimeout(), it will not retry. Otherwise, it tries just one more time before it throws IOException.

In my opinion, you should handle retry yourself though.

link|flag
Do you have a reference for this? – ripper234 Sep 16 at 16:01
No. We found out this behavior while looking at some HTTP traces and confirmed by looking at Java 5 source code. So this is only a special behavior of Java 5's URL handler. – ZZ Coder Sep 16 at 17:29
The thing is ... I found that setting the timeout did seem to cause internal retries. I'm downloading the code now. – ripper234 Sep 16 at 19:38
vote up 0 vote down

Isn't this addressed here?

link|flag
No, I don't think so. – ripper234 Sep 16 at 16:01
"Some non-standard implmentation of this method may ignore the specified timeout. To see the connect timeout set, please call getConnectTimeout()." – alphazero Sep 16 at 18:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.