Invoking Webservice in J2ME Programming Software Development by gitech … java.io.*; import javax.microedition.io.*; import org.ksoap.*; import org.ksoap.transport.*; import org.ksoap.SoapObject; public class testWebService extends MIDlet { private… What's Wrong Here? Programming Web Development by prussell … /android_service_test.asmx HTTP/1.1 Host: ikonicsoft.com user-agent: kSOAP/2.0 soapaction: [url]http://ikonicsoft.com/TestMethod[/url] content… Android KSoap Output Error Programming Mobile Development by rockenpeace I've tried to work web service on android but I've taken an error in emulator output: [code=text]org.xmlpull.v1.XmlPullParserException:expecteed: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope(position:START_TAG@1:6 in java.io.InputStreamReader@43e567a0) [/code] In here, my code: [CODE=java] package com.webServiceDeneme; … how to manipulate with web service data in ksoap on android Programming Mobile Development by aldm Hi, I'm new in android and I have to call wcf service from android app. Everything works fine, but I don't know how can I manipulate with result set of WCF method. This is my code snippet: [CODE] SoapObject request=new SoapObject(NAMESPACE, METHOD_NAME); SoapSerializationEnvelope envelope=new … Re: Invoking Webservice in J2ME Programming Software Development by peter_budo Have look at this tutorial from [URL="http://www.netbeans.org/kb/55/mobile-dilbert.html"]NetBeans[/URL] Re: Invoking Webservice in J2ME Programming Software Development by mvmalderen Congratulations! You've just decreased your chances of being helped by the people here. You can find your double thread [URL="http://www.daniweb.com/forums/thread205529.html"]here[/URL] (in case you don't know what I'm talking about). If you want a quicker (more useful) reply than this one, then I suggest you to put your time into … Re: Invoking Webservice in J2ME Programming Software Development by peter_budo Off topic: The double been already flagged and soon be dealt by moderator of the section Re: What's Wrong Here? Programming Web Development by balazs.kelemen Hi! I have the same problem. I figured it is the envelope that should be the same type for the post and the response, but don't know yet how to fix it.