Can anyone help me to configure Tcp/ip monitor on eclipse.
I'm writing a client for a Web Server running on remote machine.This
is my code:


import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapPrimitive;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.AndroidHttpTransport;
import org.ksoap2.transport.HttpTransportSE;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;

public class SOAP2 extends Activity {



    private static String SOAP_ACTION = "http://session/
getAllPositions";
    private static String METHOD_NAME = "getAllPositions";
    private static String NAMESPACE = "http://session/";;
    private static String URL ="http://192.41.218.56:8080/WSGeoEAR-
WSGeoServer/NavFinderBean?WSDL";

   TextView tv;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(R.layout.main);
        tv=(TextView)findViewById(R.id.result);
        try {

       Log.i("Invio request","1");
      //Chiamo il Metodo del WebServer
       SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

        Log.i("PROPERTYINFO","2");
     PropertyInfo propertyInfo=new PropertyInfo();
          propertyInfo.name = "arg0";
          propertyInfo.setValue(1);
          propertyInfo.type = propertyInfo.INTEGER_CLASS;
          request.addProperty(propertyInfo);

          /*propertyInfo.setName("idUtente");
          propertyInfo.setValue(1);
          propertyInfo.setNamespace(NAMESPACE);

          request.addProperty(propertyInfo);
      */

          Log.i("Aggiunte le proprietà alla request","3");
                SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
        envelope.dotNet = true;
        envelope.setOutputSoapObject(request);

        Log.i("ENVELOPE SETTATA","4");

        HttpTransportSE androidHttpTransport = new
HttpTransportSE(URL);
        Log.i("TRasport url","5");
        androidHttpTransport.call(SOAP_ACTION, envelope);
         Log.i("Envelope inviata","6");
        //Prende la risposta SOAP e ne estrae il corpo

     SoapObject resultsRequestSOAP =  (SoapObject) envelope.bodyIn;
            Log.i("Ricevuta risposta","7");

 String res = resultsRequestSOAP.toString();
  Log.i("Metto la risposta nella var res","8");
  ((TextView)findViewById(R.id.lblStatus)).setText(res.toString()
                );

 
((TextView)findViewById(R.id.lblStatus)).setText(resultsRequestSOAP.toString());


  Log.i("STAMPO A VIDEO","9");
           }catch(Exception E) {
        ((TextView)findViewById(R.id.lblStatus)).setText("ERROR:" +
E.getClass().getName() + ": " + E.getMessage());
            Log.i("Stampo errore","9");
          }
        }
I've Tomcat ho run on localhost:8080,How can I configure Tcp/ip
Monitor??

Thanks in advance

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" 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-developers?hl=en

Reply via email to