Spyne - 保存生成的架构?

时间:2015-07-11 16:23:26

标签: soap schema spyne

我有一个可用的Spyne / SOAP / WSDL服务器 - 如何保存生成的模式?我希望能够将生成的模式与现有模式进行比较,但它会从日志中查找,如模式生成为临时文档,然后删除。

2 个答案:

答案 0 :(得分:0)

有一种hacky方法可以做到这一点,即查找Spyne库中的代码,该代码在使用后删除架构并注释掉删除。然后,您可以获取模式(日志记录有助于指示它的位置),然后重新启用库代码。然而,如果有一些标志或控件生成一个模式并且至少说不要删除它,那么它会更好。在这里保存一份副本......'。

答案 1 :(得分:0)

我刚刚将此功能添加到神经元。

https://github.com/plq/neurons/blob/0f350bbdbcd0eda6a3132311a32548b7a8007b53/neurons/daemon/main.py#L106

这是一个更清洁的版本:

from lxml import etree

from spyne.interface.wsdl import Wsdl11
from spyne.test.sort_wsdl import sort_wsdl

app = Application(...) # a spyne.Application instance

# Hack to make WSDL generator happy
app.transport = "no_transport_at_all"

wsdl = Wsdl11(app.interface)

# A real URL can be passed here, if it's known in advance
wsdl.build_interface_document('hxxp://invalid_url')
doc = wsdl.get_interface_document()

# We need to do it via StringIO because sort_wsdl expects
# an ElementTree instance    
tree = etree.parse(StringIO(doc))
sort_wsdl(tree)

file_name = 'wsdl.%s.xml' % name

with open(file_name, 'w') as f:
    f.write(etree.tostring(elt, pretty_print=True))

如果您只想要Xml架构文档,请改用XmlSchema类:

from spyne.interface.xml_schema import XmlSchema


app = Application(...) # a spyne.Application instance

document = XmlSchema(app.interface)
document.build_interface_document()

schemas = document.get_interface_document()

你有一个命名空间的dict:schema_doc对在模式中。