Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android AsyncTask SoapObject Request Issue

I want to use .net web service in my android app. I send request to web service by using asynctask. But request doesn't take value properly. I used this structure in many android apps and I never got error like this. What is the problem?

I have permission(INTERNET). Namespace and method name are true.

    public class MainActivity extends Activity {

        private static final String NAMESPACE = "http://tempuri.org/";  
        private static final String URL = "http://service.melihmucuk.com/ShopArWS.asmx";
        private String[][] items;

    private String[][] GetAllItems(){

        SoapObject request = new SoapObject(NAMESPACE, "GetAllItem");//faulty line
            SoapSerializationEnvelope envelope = new  SoapSerializationEnvelope(SoapEnvelope.VER11);
            envelope.dotNet = true;     
            envelope.setOutputSoapObject(request);
            HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
            androidHttpTransport.debug = true;

           try {

           androidHttpTransport.call("http://tempuri.org/GetAllItem", envelope);
           SoapObject response = (SoapObject) envelope.getResponse();
           items[0] = new String[response.getPropertyCount()]; //item_id
           items[1] = new String[response.getPropertyCount()]; //price
           items[2] = new String[response.getPropertyCount()]; //title
           items[3] = new String[response.getPropertyCount()]; //desc

           for(int i=0;i<response.getPropertyCount();i++){    
                   Object property = response.getProperty(i);
                   if(property instanceof SoapObject){
                       SoapObject item = (SoapObject) property;
                       String item_id = item.getProperty("item_id").toString();
                       String price = item.getProperty("price").toString();
                       String title = item.getProperty("title").toString();
                       String desc = item.getProperty("desc").toString();

                       items[0][i] = item_id;
                       items[1][i] = price;
                       items[2][i] = title;
                       items[3][i] = desc;
                   }    
           }
        }
            catch (Exception e) {           
                e.printStackTrace();
           }   
           return items;
        }

    public class GetAllItemsAS extends AsyncTask<String,String,String[][]>{



        @Override
         protected void onPreExecute() {

         }

    @Override
    protected String[][] doInBackground(String... params) {
        GetAllItems();
        return items;
    }

    protected void onPostExecute(String[][] items){
        ASFinish();

    }
}

    public void ASFinish(){
        ListView liste = (ListView)findViewById(R.id.listView1);
        ListArrayAdapter adapter = new ListArrayAdapter(MainActivity.this,items[0],items[1],items[2],items[3]);
        liste.setAdapter(adapter);
    }



        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);

            items = new String[4][0];
                    new GetAllItemsAS().execute();

        }
    }

My LogCat

05-22 01:07:10.201: E/WindowManager(22337): Activity com.zontul.shopar.MainActivity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@414ba3a0 that was originally added here
05-22 01:07:10.201: E/WindowManager(22337): android.view.WindowLeaked: Activity com.zontul.shopar.MainActivity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@414ba3a0 that was originally added here
05-22 01:07:10.201: E/WindowManager(22337):     at android.view.ViewRootImpl.<init>(ViewRootImpl.java:464)
05-22 01:07:10.201: E/WindowManager(22337):     at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:419)
05-22 01:07:10.201: E/WindowManager(22337):     at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:351)
05-22 01:07:10.201: E/WindowManager(22337):     at android.view.WindowManagerImpl$CompatModeWrapper.addView(WindowManagerImpl.java:171)
05-22 01:07:10.201: E/WindowManager(22337):     at android.view.Window$LocalWindowManager.addView(Window.java:558)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.Dialog.show(Dialog.java:282)
05-22 01:07:10.201: E/WindowManager(22337):     at com.zontul.shopar.MainActivity$GetAllItemsAS.onPreExecute(MainActivity.java:78)
05-22 01:07:10.201: E/WindowManager(22337):     at android.os.AsyncTask.executeOnExecutor(AsyncTask.java:586)
05-22 01:07:10.201: E/WindowManager(22337):     at android.os.AsyncTask.execute(AsyncTask.java:534)
05-22 01:07:10.201: E/WindowManager(22337):     at com.zontul.shopar.MainActivity.onCreate(MainActivity.java:115)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.Activity.performCreate(Activity.java:5066)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1101)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2311)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2391)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.ActivityThread.access$600(ActivityThread.java:151)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1335)
05-22 01:07:10.201: E/WindowManager(22337):     at android.os.Handler.dispatchMessage(Handler.java:99)
05-22 01:07:10.201: E/WindowManager(22337):     at android.os.Looper.loop(Looper.java:155)
05-22 01:07:10.201: E/WindowManager(22337):     at android.app.ActivityThread.main(ActivityThread.java:5520)
05-22 01:07:10.201: E/WindowManager(22337):     at java.lang.reflect.Method.invokeNative(Native Method)
05-22 01:07:10.201: E/WindowManager(22337):     at java.lang.reflect.Method.invoke(Method.java:511)
05-22 01:07:10.201: E/WindowManager(22337):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1029)
05-22 01:07:10.201: E/WindowManager(22337):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:796)
05-22 01:07:10.201: E/WindowManager(22337):     at dalvik.system.NativeStart.main(Native Method)

Edit: I edited my code and I don't use dialog. Please don't write an answer about dialog. Problem doesn't occur by dialog.

like image 438
Melih Mucuk Avatar asked May 17 '26 08:05

Melih Mucuk


1 Answers

you will need to initialize ProgressDialog inside onPreExecute instead of at class level:

private ProgressDialog dialog;  //declare here

    @Override
     protected void onPreExecute() {
        dialog = new ProgressDialog(MainActivity.this); //<< initialize here
        dialog.setMessage("Loading...");
        dialog.show();
     }
 //.....
protected void onPostExecute(String[][] items){
    ASFinish();
    if(null !=dialog)
     if(dialog.isShowing())
       dialog.dismiss();
}
like image 170
ρяσѕρєя K Avatar answered May 18 '26 21:05

ρяσѕρєя K



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!