Android consmindo web service soap

1

I'm having trouble consuming a complex SOAP web services SOAP As I could send this request, I am a beginner in mobile development.

<Autenticacao xsi:type="urn:Autenticacao" xmlns:urn="urn:RouterBoxMobile">
     <ChaveIntegracao xsi:type="xsd:string">?</ChaveIntegracao>
</Autenticacao>
    
asked by anonymous 17.10.2016 / 13:46

1 answer

0

I solved the problem as follows.

SoapObject request = new SoapObject("urn:RouterBoxMobile","ListaDetalhe");


SoapObject chaveIntegracao = new SoapObject("urn:RouterBoxMobile","ListaDetalhe");

chaveIntegracao.addProperty("ChaveIntegracao","?");
request.addProperty("Autenticacao",chaveIntegracao);
    
18.10.2016 / 15:58