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 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

share|improve this question
Did you ever get this working? I know it is a little delayed... – Prince Jul 10 '12 at 17:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.