Ksoap2 Android Sending Data
I'm trying to get ksoap2 working on android. I have spent at least 10 hours now reading forum posts, and documentations. Just querying some methods like getServerTime where I don't
Solution 1:
Try
envelope.dotNet = true;
Solution 2:
I got the answer! The server is faulty, something is wrong on the server side! :(
I tried another service(http://footballpool.dataaccess.eu/data/info.wso?), and it works like a charm.
Solution 3:
I made an article about the topic
http://www.helloandroid.com/tutorials/using-ksoap2-android-and-parsing-output-data
Solution 4:
SoapObjectrequest=newSoapObject(NAMESPACE, METHOD_NAME);
soapobjetsp=newsoapobject("http://www.nanonull.com/TimeService/","getCityTime");
sp.addproperty("city", "Chicago");
request.addsoapobject(sp);
Post a Comment for "Ksoap2 Android Sending Data"