< ..snip...>
Hello,
I'm using your product for an application that we're building (that fetches some
HTTP content) and I'm running into an issue where it isn't timing out
----------This is how we're connecting -----------------Try specifying an SO_TIMEOUT in milliseconds via HttpClient.setTimeOut() method.
HttpClient client = new HttpClient(); client.setConnectionTimeout (connectionTimeout * 1000); client.setTimeout (transferTimeout * 1000); HttpMethod method = new GetMethod(url); try { statusCode = client.executeMethod(method); }
Otherwise, it will default to whatever is the default SO_TIMEOUT on your platform.
BTW, does anyone have a compilation / list of the defautl SO_TIMEOUT values for each platform ?
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]