Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing an application that connects to a webservice and I don't want it to wait too long if it can't get a connection. I therefore set the connectionTimeout of the httpparams. But it doesn't seem to have any effect whatsoever.

To test I turn of my WLAN temporarily. The application tries to connect for quite some time (way more than the 3 seconds I want) and then throws an UnknownHostException.

Here is my code:

try{
    HttpClient httpclient = new DefaultHttpClient();
    HttpParams params = httpclient.getParams();
    HttpConnectionParams.setConnectionTimeout(params, 3000);
    HttpConnectionParams.setSoTimeout(params, 3000);

    httppost = new HttpPost(URL);
    StringEntity se = new StringEntity(envelope,HTTP.UTF_8);
    httppost.setEntity(se);
    //Code stops here until UnknownHostException is thrown.
    BasicHttpResponse httpResponse = (BasicHttpResponse) httpclient.execute(httppost);

    HttpEntity entity = httpResponse.getEntity();
    return entity;

}catch (Exception e){
    e.printStackTrace();
}

Anyone have any ideas what I missed?

share|improve this question

3 Answers

up vote 44 down vote accepted

Try to do it this way:

HttpPost httpPost = new HttpPost(url);
StringEntity se = new StringEntity(envelope,HTTP.UTF_8);
httpPost.setEntity(se);

HttpParams httpParameters = new BasicHttpParams();
// Set the timeout in milliseconds until a connection is established.
int timeoutConnection = 3000;
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
// Set the default socket timeout (SO_TIMEOUT) 
// in milliseconds which is the timeout for waiting for data.
int timeoutSocket = 3000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);

DefaultHttpClient httpClient = new DefaultHttpClient(httpParameters);
BasicHttpResponse httpResponse = (BasicHttpResponse)  httpClient.execute(httpPost);

HttpEntity entity = httpResponse.getEntity();
return entity;

You then can catch a possible ConnectTimeoutException.

share|improve this answer
very useful.. – xydev Dec 8 '10 at 7:12
2  
How system is notified about timeout and what exception to handle? – vokilam Feb 28 '11 at 8:45
@VokilaM: I just edited my answer. – Cristian Feb 28 '11 at 13:12
1  
I am still getting a UnknownHostException after 30+ seconds. In this case the device is connected to a wifi router but there is no internet access. Any clue how to make this call handle that? Otherwise I might fall back to an external timer... :( – hooby3dfx Feb 22 at 21:17
@hooby3dfx It seems like an external timer is unavoidable in this case. Did you find any way around? – Mosquito 21 hours ago

This method works for me :

AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport( endpoint, 3000) ;
share|improve this answer

HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection); // Set the default socket timeout (SO_TIMEOUT)

share|improve this answer
This is not an answer to the question, because that method call is already a part of the code below; another tip: use code formatting for better presentation ... – Trinimon Mar 22 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.