Hi
I am try to understand SOAP how do you work with this
if I am try to get GetCapitalByCountryResult to textbox
do you write the soap respond to xml file and then read it to the textbox
or do I need to get the string when I get the respond
I use this web service
http://www.ezzylearning.com/services/CountryInformationService.asmx?wsdl
this is what I get from the web service using SoapUI
this is when I use basic4android
Regards
Sigster
I am try to understand SOAP how do you work with this
if I am try to get GetCapitalByCountryResult to textbox
do you write the soap respond to xml file and then read it to the textbox
or do I need to get the string when I get the respond
I use this web service
http://www.ezzylearning.com/services/CountryInformationService.asmx?wsdl
this is what I get from the web service using SoapUI
B4X:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCapitalByCountryResponse xmlns="http://www.ezzylearning.com/services/CountryInformationService.asmx">
<GetCapitalByCountryResult>Madrid</GetCapitalByCountryResult>
</GetCapitalByCountryResponse>
</soap:Body>
</soap:Envelope>
this is when I use basic4android
B4X:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCapitalByCountryResponse xmlns="http://www.ezzylearning.com/services/CountryInformationService.asmx">
<GetCapitalByCountryResult>Madrid</GetCapitalByCountryResult>
</GetCapitalByCountryResponse>
</soap:Body>
</soap:Envelope>
Regards
Sigster
Last edited: