What steps will reproduce the problem? 1. Staring the Application, since it's quite small I think that should do it here.
What is the expected output? What do you see instead?
Well actually I'm not quite sure what should be the output in the end, but while debugging the app I noticed that it won't execute the line:
aht.call(SOAP_ACTION, soapEnvelope); and the errorlog says the following: expected: START_TAG {http://www.w3.org/2001/12/soap-envelope}Envelope (position:START_TAG <h1>@1:4 in java.io.InputStreamReader@43d1b8f8)
Maybe you folks already know what's the problem is, but just to be sure I'll provide the code of my app here, thanks a lot:
// Most of the code is taken from this really good video // http://www.vimeo.com/9633556
package com.Connect;
import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.SoapObject; import org.ksoap2.serialization.SoapPrimitive; import org.ksoap2.serialization.SoapSerializationEnvelope; import org.ksoap2.transport.AndroidHttpTransport;
import android.app.Activity; import android.os.Bundle; import android.widget.TextView;
public class connect extends Activity { /** Called when the activity is first created. */ // tempuri.Org wird aus der WSDL File genommen. // private static final String SOAP_ACTION = "http://server.contextlayer.bscwi.de/createContext"; // private static final String SOAP_ACTION = "ClientWS"; private static final String SOAP_ACTION = ""; private static final String METHOD_NAME = "createContext"; private static final String NAME_SPACE = "http://server.contextlayer.bscwi.de/"; // WICHTIG: nicht wsdl File!! private static final String URL = "http://10.0.2.2:10360/ContextWS"; //private static final String URL = "http://10.0.2.2:10360/ContextWSService"; TextView tv; @Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById (R.id.TextView01);
SoapObject Request = new SoapObject (NAME_SPACE, METHOD_NAME);
Request.addProperty("arg0", "testSituation");
SoapSerializationEnvelope soapEnvelope = new
SoapSerializationEnvelope (SoapEnvelope.VER12); // soapEnvelope.dotNet = true; soapEnvelope.setOutputSoapObject(Request);
AndroidHttpTransport aht = new AndroidHttpTransport (URL);
try{
aht.call(SOAP_ACTION, soapEnvelope);
Object bla =
soapEnvelope.getResponse();
System.out.println(bla.toString());
SoapPrimitive resultBoolean = (SoapPrimitive)
soapEnvelope.getResponse();
// Eigentlich nicht sonderlich viel Anhnung was er bei einem
Boolean ausgibt, naja mal sehen. tv.setText("Result: "+ (bla));} catch(Exception e){ e.printStackTrace(); System.out.println(e); } } }
What version of the product are you using? On what operating system?
Please provide any additional information below.
Comment #1
Posted on May 19, 2010 by Helpful HippoOh I just thought it might be handy for you to know the WSDL file so here you go and thanks again!
− − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − − −
Comment #2
Posted on May 24, 2010 by Helpful HippoHey I guess I solved the problem by entering the correct URL, which can be found in the WSDL under or actually just 4 lines above this post =). Still I'm getting some errors but to keep this thread tidy I decided to create a new thread. http://code.google.com/p/ksoap2-android/issues/detail?id=21
Thanks Folks!
Comment #3
Posted on Oct 12, 2010 by Swift HippoSubmitter fixed himself.
Status: Invalid
Labels:
Type-Defect
Priority-Medium