我有和android客户端,它使用ksoap与用c#asp.net编写的wsdl web服务进行通信。我在Web服务和客户端之间匹配参数类型时遇到问题。 Web服务器期望这种请求(自动生成):
<?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>
<GetDetails xmlns="http://host.org/">
<event_id>int</event_id>
</GetDetails>
</soap:Body>
</soap:Envelope>
客户端使用ksoap发送请求,它们看起来像这样:
<v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header />
<v:Body>
<n0:GetDetails id="o0" c:root="1" xmlns:n0="http://tempuri.org">
<event_id i:type="d:int">1</event_id>
</n0:GetDetails>
</v:Body>
</v:Envelope>
由于某种原因,当手动组装请求看起来像第一个选项时,WS会将以下'客户端请求解析为0(我猜是因为其他类型属性 - i:type =“d:int”)工作正常。 如何使Web服务正确读取ksoap格式或如何将其预期格式更改为ksoap请求。 (Web服务soap协议是自动生成的。)
答案 0 :(得分:0)
该解决方案有两个部分: 1.关于删除属性类型,我在这里找到答案: using addMapping without the "i:type=" attribute in ksoap2 for android 我需要设置:
envelope.implicitTypes = true;