我正在使用 ksoap2-android-assembly-3.0.0-jar-with-dependencies.jar
我正在做一个需要以下肥皂请求的项目:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mod="http://www.tmforum.org/xml/tip/model" xmlns:cust="http://www.tmforum.org/xml/tip/customer/cust">
<soapenv:Header/>
<soapenv:Body>
<mod:listProblemsRequest>
<!--Optional:-->
<mod:customer>
<cust:iD >1100000677</cust:iD>
</mod:customer>
</mod:listProblemsRequest>
</soapenv:Body>
</soapenv:Envelope>
但使用 KSOAP2 我能够生成以下请求:
<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>
<retrieveCustomerProfileRequest xmlns="http://www.tmforum.org/xml/tip/model">
<n0:customer xmlns:n0="http://www.tmforum.org/xml/tip/model">
<n1:iD i:type="d:string" xmlns:n1="http://www.tmforum.org/xml/tip/customer /cust">1100000990</n1:iD>
</n0:customer>
</retrieveCustomerProfileRequest>
</v:Body>
</v:Envelope>
如何i:type="d:string"
从 SOAP 请求中删除。
请提出可以在 KSOAP2 的源代码中完成的解决方案或任何解决方法,以便我能够生成适当的请求。