hi all,
i tried to write a SOAP application where a .net server is running a
method Add in local host and returns an integer value 2000
here is the code for android to connect to local server via SOAP
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import java.*;


import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;


     public class Test extends Activity {
          private Button okButton;

           private int a;
          private static final String SOAP_ACTION = "http://
10.0.2.2:8000/target.asmx/Add";
          private static final String METHOD_NAME = "Add";
          private static final String NAMESPACE = "http://
tempuri.org";
          private static final String URL = "http://10.0.2.2:8000/
target.asmx";

         @Override
         protected void onCreate(Bundle icicle) {
             super.onCreate(icicle);
             setContentView(R.layout.main);


            okButton = (Button) findViewById(R.id.but);
             okButton.setOnClickListener(new View.OnClickListener() {

                 public void onClick(View view) {
                  //   setResult(RESULT_OK);

                     a= mymethod();

                 }
             });
             TextView tv=new TextView(this);
             tv.setText(a);
             setContentView(tv);

         }
         public static int  mymethod() {
           SoapObject request = new SoapObject(NAMESPACE,
METHOD_NAME);


           SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
           envelope.dotNet = true;
           envelope.setOutputSoapObject(request);
           HttpTransportSE androidHttpTransport = new HttpTransportSE
(URL);
           int a=0;

           try {
                androidHttpTransport.call(SOAP_ACTION, envelope);
                  a=(Integer)envelope.getResponse();
           } catch (Exception e) {
                e.printStackTrace();
           }
         return a;


         }
     }

when trying to run in emulator giving error as "PROCESS STOPPED
UNEXCEPTEDLY".....please tell me where is the mistake..... thank you
in advance..

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to