Hello everyone, I hope in your help.
I've this android application and I need connect to my hosting database with web service Asmx.
The webservice working in test browser and working in the android tablet.
The output in webservice is a DataSet.
In my application I don't have error but the output is :
anyType{schema=anyType{element=anyType{complexType= ...
I tried this solution but not success:
try {
httpTransport.call(SOAP_ACTION, envelope);
SoapObject result = (SoapObject) envelope.bodyIn;
String Result = result.getProperty(0).toString();
textView.setText(Result.toString());
} catch (Exception exception) {
textView.setText(exception.toString());
}
Can you help me?
Any help would be appreciated