I set 2 global networking timeouts:
System.setProperty("sun.net.client.defaultConnectTimeout", "2000");
System.setProperty("sun.net.client.defaultReadTimeout", "3000");
It works fine when in case of direct connections. But if proxy is set for the JVM, connections are kept in waiting state few minutes.
Proxy is alo set via JVM params:
http.proxyHost=some_host
http.proxyPort=8080
Why connections are not interrupted by timeout if proxy is involved? In general what network configuration can prevent http connection/read timeouts to act properly?