I have followed the instructions of kuester2000\'s answer, but my timeout settings don\'t seem to work.
try
{
int timeout = 3000;
URL myURL = //some
The other option to set on the client itself:
AndroidHttpClient client = AndroidHttpClient.newInstance("Client V/1.0");
HttpConnectionParams.setConnectionTimeout(this.client.getParams(), 3000);
HttpConnectionParams.setSoTimeout(this.client.getParams(), 5000);
This should result in those particular params being set...
HTH