作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想我想做的很像 github issue in zeep repo --- 但遗憾的是,这个问题还没有得到回应。我研究了 suds,安装并尝试了——甚至没有让发送参数正常工作,我认为 zeep 似乎维护得更好?
编辑 1:我肯定不是在谈论 this
最佳答案
您可以使用插件将 xml 编辑为纯字符串。我使用此插件将字符“<”和“>”保留在 CDATA 元素中。
from xml import etree
from zeep import Plugin
class my_plugin(Plugin):
def egress(self, envelope, http_headers, operation, binding_options):
xml_string = etree.ElementTree.tostring(envelope)
xml_string = xml_string.replace("<", "<")
xml_string = xml_string.replace(">", ">")
parser = etree.ElementTree.XMLParser(strip_cdata=False)
new_envelope = etree.ElementTree.XML(xml_string, parser=parser)
return new_envelope, http_headers
然后只需在客户端导入插件即可:
client = Client(wsdl='url', transport=transport, plugins=[my_plugin()])
关于 python 齐普 : send un-escaped xml as content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48655638/
我是一名优秀的程序员,十分优秀!