我有一个包含复杂类型的 WSDL,如下所示:
<xsd:complexType name="string_array">
<xsd:complexContent>
<xsd:restriction base="SOAP-ENC:Array">
<xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="xsd:string[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
我已决定将zeep用于肥皂客户端,并希望将该类型用作 WSDL 中引用的其他方法之一的参数。我似乎无法弄清楚如何使用这种类型。当我查看有关如何使用 WSDL 中引用的某些数据结构的文档client.get_type()
时,它说要使用该方法,因此我执行了以下操作:
wsdl = "https://wsdl.location.com/?wsdl"
client = Client(wsdl=wsdl)
string_array = client.get_type('tns:string_array')
string_array('some value')
client.service.method(string_array)
这给出了一个错误TypeError: argument of type 'string_array' is not iterable
。我还尝试了许多变体,并尝试使用这样的字典:
client.service.method(param_name=['some value'])
这给出了错误
ValueError: Error while create XML for complexType '{https://wsdl.location.com/?wsdl}string_array': Expected instance of type <class 'zeep.objects.string_array'>, received <class 'str'> instead.`
如果有人知道如何通过 zeep 使用 WSDL 中的上述类型,我将不胜感激。谢谢。