如何在python zeep中使用额外的xsd?

时间:2017-12-07 21:57:27

标签: python xsd zeep spml

我需要实现一个SPML接口,它最终通过HTTP执行SOAP请求。我有一个wsdl for it,归结为:

<wsdl:types>
  <schema targetNamespace="http://soapadapter.something" xmlns="http://www.w3.org/2001/XMLSchema">
   <element name="receiveRequest" type="xsd:anyType"/>
  </schema>
</wsdl:types>
[...]
<wsdl:operation name="receiveRequest">
 <wsdl:input message="impl:receiveRequestRequest" name="receiveRequestRequest"/>
</wsdl:operation>

如您所见,唯一定义的请求元素的类型为&#34; xsd:anyType&#34;。我有一个单独的xsd,在wsdl中根本没有链接,它描述了应该如何形成请求。

我想使用zeep来实现使用该接口的SOAP请求。如何让zeep知道那个(本地)xsd文件?

我找到了zeep.xsd.schema.SchemaDocument类,但没有在任何地方使用它的例子。 有人可以给我一个如何创建使用wsdl和单独的xsd文件的客户端的用法示例吗?

1 个答案:

答案 0 :(得分:2)

是的,您可以通过以下方式将其他模式添加到zeep客户端:

import os
from zeep.loader import load_external
from zeep import Client


XSD_SCHEMA_FILE = "/path/to/your.xsd"
CONTAINER_DIR = os.path.dirname(XSD_SCHEMA_FILE)  # Where to load dependencies if any

client = Client('https://path/to/your.wsdl')
schema_doc = load_external(open(XSD_SCHEMA_FILE, "rb"), None)
doc = client.wsdl.types.create_new_document(schema_doc, f"file://{CONTAINER_DIR}")
doc.resolve()