Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am new to the android and I just want to call a wcf service (that performs some operations) from the code.

I have used the below code,
C#
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);

envelope.dotnet = true;

envelope.setOutputSoapObject(request);

HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

androidHttpTransport.call(SOAP_ACTION, envelope);

When I am trying to execute the above line, I am getting the exception like
org.xmlpull.v1.XmlPullParserEx...

Pleae help me out.
Posted
v2
Comments
AndroidVivek 8-Dec-12 1:48am    
check your URL link , error should be there..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900