chiranjib
chiranjib

Reputation: 5308

Exception to be handled for HttpConnection

Kindly provide me the code for handling the HttpConnection or related Exceptions & how to display that to the user.

Specifically , I would like to know how to handle TimeOut for HttpConnection & how to display that alert to the user.

Kindly provide the same code.

Upvotes: 0

Views: 338

Answers (1)

success_anil
success_anil

Reputation: 3658

Here's the code

HttpPost hPost = new HttpPost(url);
StringEntity se = new StringEntity(envelope,HTTP.UTF_8);
hPost.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(hPost);

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

Upvotes: 2

Related Questions