I am using some web services in android in which i want that if response is not coming within 1 minute it should show some alert dialog that internet is not available. I am using connection timeout as in the following code:
try
{
HttpPost httppost =new HttpPost(Constants.getHostString()
+ "/apps_user_ebooks_preview.jsp");
HttpParams httpParameters = new BasicHttpParams();
int timeoutConnection = 60000;
HttpConnectionParams.setConnectionTimeout(
httpParameters, timeoutConnection);
int timeoutSocket = 60000;
HttpConnectionParams.setSoTimeout(httpParameters,
timeoutSocket);
DefaultHttpClient httpClient =new DefaultHttpClient(httpParameters);
BasicHttpResponse httpResponse =(BasicHttpResponse) httpClient.execute(httppost);
httpClient.setParams(httpParameters);
HttpEntity entity = httpResponse.getEntity();
ResponseHandler<String> res =new BasicResponseHandler();
List<NameValuePair> NVP =new ArrayList<NameValuePair>();
NVP.add(new BasicNameValuePair("postString", j.toString()));
httppost.setEntity(new UrlEncodedFormEntity(NVP));
response = httpClient.execute(httppost, res);
}catch(ConnectTimeoutException e){
e.printStackTrace();
System.out.println("here i am ");
handler.sendEmptyMessage(CONNECTION_TIMEOUT);
cnct=1;
}
case CONNECTION_TIMEOUT:
if (!isFinishing())
{
// m_ProgressDialog.cancel();
lDialog =
new Dialog(AdminEbooks.this,
android.R.style.Theme_Translucent_NoTitleBar);
lDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
lDialog.setContentView(R.layout.r_okdialogview);
((TextView) lDialog.findViewById(R.id.dialog_title))
.setVisibility(View.GONE);
((TextView) lDialog.findViewById(R.id.dialog_message))
.setText("Internet Unavailable.");
((Button) lDialog.findViewById(R.id.ok)).setText("Ok");
((Button) lDialog.findViewById(R.id.ok))
.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
lDialog.dismiss();
}
});
lDialog.show();
}
break;
But it is not working. Can anyone help me over this?
THanks