Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T22:12:30Z http://stackoverflow.com/feeds/question/86824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe 2 Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? Sarah Haskins 2008-09-17T19:40:57Z 2009-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.&lt;init&gt;(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#86862 0 Answer by amo-ej1 for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? amo-ej1 2008-09-17T19:44:24Z 2008-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#86876 0 Answer by larsivi for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? larsivi 2008-09-17T19:45:37Z 2008-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#86883 0 Answer by benefactual for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? benefactual 2008-09-17T19:46:39Z 2008-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#86908 4 Answer by Jumpy for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? Jumpy 2008-09-17T19:48:33Z 2008-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#87118 1 Answer by Alexander for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? Alexander 2008-09-17T20:12:03Z 2008-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#87160 0 Answer by John Gardner for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? John Gardner 2008-09-17T20:17:01Z 2008-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#87352 2 Answer by R. Bemrose for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? R. Bemrose 2008-09-17T20:34:54Z 2008-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#327614 0 Answer by shahbaz sikander for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? shahbaz sikander 2008-11-29T15:20:30Z 2008-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#476366 0 Answer by Stat for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? Stat 2009-01-24T17:24:21Z 2009-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#1243237 0 Answer by martin de la torre for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? martin de la torre 2009-08-07T06:36:53Z 2009-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#1243304 0 Answer by martin de la torre for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up? martin de la torre 2009-08-07T06:55:51Z 2009-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>