I have this XML to access a SoapClient
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://localhost/I9ProWebService">
<env:Body>
<ns1:ExecutarXML>
<ns1:Servico>ListarComissoesPagas</ns1:Servico>
<ns1:conteudoXML>
<i9proerp><listarcomissoespagas id_pessoa_corretor ="205"/></i4proerp>
</ns1:conteudoXML>
</ns1:ExecutarXML>
</env:Body>
</env:Envelope>
My code is like this:
$client = new SoapClient("http://domain/i9pro/webservice/I9ProWebService.asmx?WSDL", array("features" => SOAP_SINGLE_ELEMENT_ARRAYS, "encoding" => "utf-8","trace"=> TRUE, 'soap_version'=>SOAP_1_2));
$strVariavel = "<ns1:conteudoXML><i9proerp><listarcomissoespagas id_pessoa_corretor =\"".$_SESSION['CORRETOR_id_pessoa_corretor']."\"/></i9proerp></ns1:conteudoXML>";
$soapvar = new SoapVar($strVariavel, 147);
$object = $client->ExecutarXML(array('Servico'=>'ListarComissoesPagas','conteudoXML'=>$soapvar));
$xml = new SimpleXMLElement($object->ExecutarXMLResult->any);
The application puts this "env" that I want to change to "soap" and "ns1" that I want change to "i9p" . It not works if I don“t do that. I tried into SoapUI and only works by changing the tags. Please, anyone can help me?
Thanks in advance.