Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my Java code, I tried to access a url. I kept getting socket connection timeout exception, no matter how I set the timeout. It seems the Java connection timeout value cannot be increased.

But I can browse that URL in web browser.

How can I fix this issue?

Thanks.

share|improve this question
Could you provide some code? – aioobe Nov 18 '10 at 14:19
Please post a code snippet. – Adamski Nov 18 '10 at 14:19
def url = new URL("xxxxxxx"); def connection = url.openConnection(); connection.setConnectTimeout(1000 * 1000); connection.connect(); – willpowerforever Nov 18 '10 at 14:39
Isn't it simply your firewall who is blocking HTTP requests from Java? – BalusC Nov 18 '10 at 14:41
Your browser is probably using a proxy while your Java process tries a direct connection. – Benoit Thiery Nov 18 '10 at 14:47
show 3 more comments

2 Answers

Contrary to what it says in the Javadoc. the socket connect timeout cannot be increased beyond the platform default, which is of the order of a minute.

share|improve this answer
Hi, EJP. You came out!!! I know you were encountered such issue. So, how did you handle it? – willpowerforever Nov 19 '10 at 9:35
You can't handle it. You can just keep retrying. But if you can't connect in about ten seconds you will never be able to connect, let alone a minute. – EJP Nov 19 '10 at 11:26

If you see connect timeout, it could mean nobody listening on the port or firewall is blocking the access.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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