Did any one know about this exception.
try {
//SoapObject request = translateXMLDocumentNodeToSoapObject(params,mnamespace);
SoapObject users = new SoapObject(mnamespace, "users");
SoapObject john = new SoapObject(mnamespace, "user");
john.addProperty("name", "john");
john.addProperty("age", 12);
SoapObject marie = new SoapObject(mnamespace, "user");
john.addProperty("name", "marie");
john.addProperty("age", 27);
users.addSoapObject(john);
users.addSoapObject(marie);
/*
* Set the web service envelope
*
* */
SoapSerializationEnvelope envelope =
new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(users);
envelope.addMapping(mnamespace, "SoapObject", users.getClass());
HttpTransportSE androidHttpTransport = new HttpTransportSE(mWSUrl,mpintTimeOut);
// enable debug
androidHttpTransport.debug = true;
/*
* Call the web service and retrieve result ... how luvly <3
*
* */
androidHttpTransport.call(mnamespace + METHOD, envelope);
SoapPrimitive result = (SoapPrimitive)envelope.getResponse();
return result.toString();
} catch (Exception e) {
System.out.println("Calling the web services error: "+e.getMessage());
return null;
}