如何在Android中的Web Service调用中发送XML头而不使用kso​​ap库

时间:2018-06-13 13:22:19

标签: android web-services soap xmlhttprequest

我正在使用HttpPost请求正文来执行SOAP API上的Web服务调用。我在每个Web服务调用中都有头XML。 标题结构如下:

<soapenv:Header>
   <authentication-header xmlns="mywebsite.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<EncryptedSignature xmlns="http://schemas.datacontract.org/2004/07/OE.ServiceBase.Contracts">mytoken</EncryptedSignature>
    </authentication-header>
   </soapenv:Header>

我已将Content-Type添加为text/xml

httpPost.setHeader("Content-Type", "text/xml");

我无法在网络服务中添加此标头。任何人都可以帮助我。

注意:我没有使用Ksoap库。

0 个答案:

没有答案