I am responsible to complete an Android app with SOAP. I need to consume data. How do I do that? I am sharing response, request structure and web url. Thanks in advance.
url and the others. Just a example is enough for me. What dependencies should I use?
URL :  HYPERLINK "http://mobileexam.veripark.com/mobileforeks/service.asmx" http://mobileexam.veripark.com/mobileforeks/service.asmx 
Request :
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Encrypt xmlns="http://tempuri.org/">
      <request>RequestIsValid29:01:2015 16:31</request>
    </Encrypt>
  </soap:Body>
</soap:Envelope>
Response :
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope 
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <EncryptResponse 
            xmlns="http://tempuri.org/">
         <EncryptResult>%%UmVxdWVzdElzVmFsaWQyOTowMToyMDE1IDE2OjMx%%</EncryptResult>
        </EncryptResponse>
    </soap:Body>
</soap:Envelope>
 
    