我需要与 SOAP 服务进行交互,并且在这样做时遇到了很多麻烦;非常感谢对此的任何指示。原来的错误信息是:
org.apache.axis2.databinding.ADBException: Any type element type has not been given
经过一番研究,事实证明这是SUDS之间的分歧,服务器必须如何处理
type="xsd:anyType"
关于有问题的元素。
我已经确认使用 SOAPUI,并且在建议可以通过以下步骤解决问题后:
- 将 xsi:type="xsd:string" 添加到导致问题的每个元素
- 将 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 添加到 SOAP 信封
因此,SUDS 目前在哪里执行此操作:
<SOAP-ENV:Envelope ... xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<ns3:Body>
<ns0:method>
<parameter>
<values>
<table>
<key>EMAIL_ADDRESS</key>
<value>example@example.org</value>
</table>
</values>
</parameter>
</ns0:method>
它应该产生这个:
<SOAP-ENV:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" ... xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<ns3:Body>
<ns0:method>
...
<parameter>
<values>
<table>
<key xsi:type="xsd:string">EMAIL_ADDRESS</key>
<value xsi:type="xsd:string">example@example.org</value>
</table>
</values>
</parameter>
</ns0:method>
有没有正确的方法来做到这一点?我已经看到使用 ImportDoctor 或 MessagePlugins 的建议,但还没有真正了解如何达到预期的效果。