I get some code to make a connection to a URL Timeouts work with JDK but not with classpath, the main reason is that at the end on a java.net.Socked this method is called:
public void connect(SocketAddress endpoint) throws IOException {
connect(endpoint, 0);
}Where 0 stands for infitelly wait connection.
In the JDK if you stablish "sun.net.client.defaultReadTimeout"
system property to the value of the Timeout in milisecs, after that
time SocketTimeoutException is thrown if not succeded on connecting or reading.
am i rigth, Should it be checked somewhere, is it allready? and if so... where should it be checked?
Thx
_______________________________________________ Classpath mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/classpath

