我正在尝试编写一个 SOAP 调用,示例请求如下:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://server.opsware.com" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<soapenv:Header/>
<soapenv:Body>
<ser:attachPolicies soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<self xsi:type="xsd:anyType">?</self>
<policies xsi:type="ser:ArrayOf_xsd_anyType" soapenc:arrayType="xsd:anyType[]"/>
</ser:attachPolicies>
</soapenv:Body>
</soapenv:Envelope>
ArrayOf_xsd_anyType
关于可能意味着什么或我如何找到有效选项的任何想法?