Hello. I need my tag like this:
<?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>
<EnviarArquivo xmlns="http:(CLIENT LINK)">
<Sistema>1</Sistema>
<Chave>1</Chave>
<Solicitacao>1</Solicitacao>
<OK>TRUE</OK>
<Observacao></Observacao>
<Arquivo>1</Arquivo>
</EnviarArquivo>
</soap:Body>
</soap:Envelope>
my when the server get my request its going like this:
<?xml version="1.0" encoding="utf-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<NS1:EnviarArquivo xmlns:NS1="http:(CLIENT LINK)">
<Sistema>1</Sistema>
<Chave>1</Chave>
<Solicitacao>1</Solicitacao>
<OK>TRUE</OK>
<Observacao></Observacao>
<Arquivo>0</Arquivo>
</NS1:EnviarArquivo>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
how can i remove/edit this itens?
- "SOAP-ENV"
- "SOAP-ENC"
- <SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
i need the to send the xml as the first xml sample! can any1 help-me? thanks! ^_^