Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T22:12:30Zhttp://stackoverflow.com/feeds/question/86824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe2Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?Sarah Haskins2008-09-17T19:40:57Z2009-08-07T06:55:51Z
<p>I'm getting a ConnectException: Connection timed out with some frequency from my code. The URL I am trying to hit is up. The same code works for some users, but not others. It seems like once one user starts to get this exception they continue to get the exception.</p>
<p>Here is the stack trace:</p>
<pre><code>java.net.ConnectException: Connection timed out
Caused by: java.net.ConnectException: Connection timed out
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.Socket.connect(Socket.java:516)
at java.net.Socket.connect(Socket.java:466)
at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
at sun.net.www.http.HttpClient.New(HttpClient.java:287)
at sun.net.www.http.HttpClient.New(HttpClient.java:299)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:796)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:748)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:673)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:840)
</code></pre>
<p>Here is a snippet from my code:</p>
<pre><code>URLConnection urlConnection = null;
OutputStream outputStream = null;
OutputStreamWriter outputStreamWriter = null;
InputStream inputStream = null;
try {
URL url = new URL(urlBase);
urlConnection = url.openConnection();
urlConnection.setDoOutput(true);
outputStream = urlConnection.getOutputStream(); // exception occurs on this line
outputStreamWriter = new OutputStreamWriter(outputStream);
outputStreamWriter.write(urlString);
outputStreamWriter.flush();
inputStream = urlConnection.getInputStream();
String response = IOUtils.toString(inputStream);
return processResponse(urlString, urlBase, response);
} catch (IOException e) {
throw new Exception("Error querying url: " + urlString, e);
} finally {
IoUtil.close(inputStream);
IoUtil.close(outputStreamWriter);
IoUtil.close(outputStream);
}
</code></pre>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/86862#868620Answer by amo-ej1 for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?amo-ej12008-09-17T19:44:24Z2008-09-17T19:44:24Z<p>Why does it have to be your code ? Can't it be the server which is overloaded ? Or a network connection problem ? Simply to verify if you try to work with an url on another server ...</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/86876#868760Answer by larsivi for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?larsivi2008-09-17T19:45:37Z2008-09-17T19:45:37Z<p>There is a possibility that your IP/host are blocked by the remote host, especially if it thinks you are hitting it too hard.</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/86883#868830Answer by benefactual for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?benefactual2008-09-17T19:46:39Z2008-09-17T19:46:39Z<p>Do you need to close / dispose of the urlConnection as well? Perhaps a problem with too many open connections?</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/86908#869084Answer by Jumpy for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?Jumpy2008-09-17T19:48:33Z2008-09-17T19:48:33Z<p>Connection Timeouts (assuming a local network and several client machines) typically result from</p>
<p>a) some kind of firewall on the way that simply eats the packets without telling the sender things like "No Route to host"</p>
<p>b) packet loss due to wrong network configuration or line overload</p>
<p>c) too many requests overloading the server</p>
<p>d) a small number of simultaneously available threads/processes on the server which leads to all of them being taken. This happens especially with requests that take a long time to run and may combine with c).</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/87118#871181Answer by Alexander for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?Alexander2008-09-17T20:12:03Z2008-09-17T20:12:03Z<p>If the URL works fine in the web browser on the same machine, it might be that the Java code isn't using the HTTP proxy the browser is using for connecting to the URL.</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/87160#871600Answer by John Gardner for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?John Gardner2008-09-17T20:17:01Z2008-09-17T20:17:01Z<p>HTTP proxy may be a good bet, actually. Many apps get this configuration automatically (i believe java through webstart will set it automatically from the browser config too), most java desktop style apps have to have this manually configured.</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/87352#873522Answer by R. Bemrose for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?R. Bemrose2008-09-17T20:34:54Z2008-09-17T20:34:54Z<p>I'd recommend raising the connection timeout time before getting the output stream, like so:</p>
<pre><code>urlConnection.setConnectTimeout(1000);
</code></pre>
<p>Where 1000 is in milliseconds (1000 milliseconds = 1 second).</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/327614#3276140Answer by shahbaz sikander for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?shahbaz sikander2008-11-29T15:20:30Z2008-11-29T15:20:30Z<p>-try to do the telent to see any firewall issue
-perform tracert/traceroute to find number of hops.
-increase the timeout (not recommended)</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/476366#4763660Answer by Stat for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?Stat2009-01-24T17:24:21Z2009-01-24T17:24:21Z<p>are you trying to connect remotely? If so it may be a database issue.</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/1243237#12432370Answer by martin de la torre for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?martin de la torre2009-08-07T06:36:53Z2009-08-07T06:36:53Z<p>I think i have somthing similar as sarha explain,but i am working over internet
I have 15 long running requests all the time in the server because when they end a new one is sent.
i do not think it is to much and i expect to have much more in the future.This exception
appears after 20 minutes.
what can i do in this situation?</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/1243304#12433040Answer by martin de la torre for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?martin de la torre2009-08-07T06:55:51Z2009-08-07T06:55:51Z<p>I think i have somthing similar as sarha explain,but i am working over internet I have 15 long running requests all the time in the server because when they end a new one is sent. i do not think it is to much and i expect to have much more in the future.This exception appears after 20 minutes. what can i do in this situation?</p>