setting timeout for HTTP request
Hi, I'm looking for a way to set timeout for an HTTP request made from a Java application (through URL object). How can I do it ? Zhenya.
[173 byte] By [
fabrikant] at [2007-9-26 6:30:19]

Hi,You can set the HTTP Request Property by calling the setRequestProperty(String property,String value) method on the URLConnection object. The URL Connection object is returned by calling the openConnection() method on the URL object.
kmsr1 at 2007-7-1 15:38:48 >
