I\'m trying to access a webservice
in Android via Ksoap2
for Android.
The SoapObject
is created OK, the S.O.P of the bodyOu
You need to set the debug field of the Transport
instance to true
, then call the call(String,SoapEnvelope)
method in order for the requestDump
field to be set:
HttpTransportSE http_transport = new HttpTransportSE(URL);
http_transport.debug = true;
try {
http_transport.call(SOAP_ACTION, envelope);
System.out.println(http_transport.requestDump);
//...