如何在 Python 中使用带有 zeep 的 WSDL 中的复杂类型
How to use a complex type from a WSDL with zeep in Python
我有一个包含如下复杂类型的 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 for the soap client and want to use that type as a parameter to one of the other methods referenced in the WSDL. I can't seem to figure out how to use this type though. When I looked through the documentation 来说明如何使用 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 中的上述类型,我将不胜感激。谢谢。
client.get_type() 方法 returns 一个 'type constructor' 以后可以用来构造值。您需要将构造的值分配给一个单独的变量并在方法调用中使用该变量:
wsdl = "https://wsdl.location.com/?wsdl"
client = Client(wsdl=wsdl)
string_array_type = client.get_type('tns:string_array')
string_array = string_array_type(['some value'])
client.service.method(string_array)
我有一个包含如下复杂类型的 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 for the soap client and want to use that type as a parameter to one of the other methods referenced in the WSDL. I can't seem to figure out how to use this type though. When I looked through the documentation 来说明如何使用 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 中的上述类型,我将不胜感激。谢谢。
client.get_type() 方法 returns 一个 'type constructor' 以后可以用来构造值。您需要将构造的值分配给一个单独的变量并在方法调用中使用该变量:
wsdl = "https://wsdl.location.com/?wsdl"
client = Client(wsdl=wsdl)
string_array_type = client.get_type('tns:string_array')
string_array = string_array_type(['some value'])
client.service.method(string_array)