Hi,
I've a WebService (something like http://www.domain.com/CellWS.asmx)
I've finally done the basic functionality in SOAP1.2, I'm able to read the resulting data in this format:
Now I'm facing a new problem, there's one WebService that returns a Table Dataset, and the result data is this:
Inside VisualStudio the WebService returns a dataset with four columns and many rows.
Can you help me understanding how to read that result?
Thanks a lot!
I've a WebService (something like http://www.domain.com/CellWS.asmx)
I've finally done the basic functionality in SOAP1.2, I'm able to read the resulting data in this format:
B4X:
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<LoginResponse xmlns="http://tempuri.org/">
<LoginResult>
<Result01>string</Result01>
<Result02>string</Result02>
<Result03>string</Result03>
<Result04>string</Result04>
</LoginResult>
</LoginResponse>
</soap12:Body>
</soap12:Envelope>
Now I'm facing a new problem, there's one WebService that returns a Table Dataset, and the result data is this:
B4X:
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetDataSetResponse xmlns="http://tempuri.org/">
<GetDataSetResult>
<xsd:schema>schema</xsd:schema>xml</GetDataSetResult>
</GetDataSetResponse>
</soap12:Body>
</soap12:Envelope>
Inside VisualStudio the WebService returns a dataset with four columns and many rows.
Can you help me understanding how to read that result?
Thanks a lot!