Python - 如何编辑 Soap Envelope 的命名空间 / xmlns:encodingStyle

Python - How to edit the namespaces of Soap Envelope / xmlns:encodingStyle

我在为 SOAP 调用创建 XML 文件时遇到问题

我正在使用以下代码创建 XML:

from lxml import etree as ET

SOAP_NS = "URL"
ENCODE_NS = "URL2/soap-encoding"
ns_map = {'soap' : SOAP_NS, 'encodingStyle' : ENCODE_NS}

root = ET.Element(ET.QName(SOAP_NS, 'Envelope'), nsmap=ns_map)
body = ET.SubElement(root, ET.QName(SOAP_NS, 'Body'), nsmap=ns_map)

Data = ET.SubElement(body, 'Data')
Data.text="1234"
Data.set('type','import')
xml_file = ET.ElementTree(root)
xml_file.write('Test.xml', pretty_print=True)

因此我得到以下 XML-file:

<soap:Envelope xmlns:soap="URL1" xmlns:encodingStyle="URL2/soap-encoding">
  <soap:Body>
    <Data type="import">1234</Data>
  </soap:Body>
</soap:Envelope>

我需要创建的 XML 文件的第一行必须是这样的

<soap:Envelope xmlns:soap="URL1" soap:encodingStyle="URL2/soap-encoding">
  <soap:Body>
    <Data type="import">1234</Data>
  </soap:Body>
</soap:Envelope>

如何将 URL 2 的 prefix/namespace 从 xmlns:encodingStyle 更改为 soap:encodingStyle 或者如果我的方法是错误的,我该如何将 soap:encodingStyle 添加到信封中?

提前致谢

soap:encodingStyle 是绑定到名称空间的属性。使用set()方法添加。

from lxml import etree as ET
 
SOAP_NS = "URL"
ENCODE_NS = "URL2/soap-encoding"
ns_map = {'soap' : SOAP_NS}
 
root = ET.Element(ET.QName(SOAP_NS, 'Envelope'), nsmap=ns_map)
root.set(ET.QName(SOAP_NS, "encodingStyle"), ENCODE_NS)
 
body = ET.SubElement(root, ET.QName(SOAP_NS, 'Body'), nsmap=ns_map)
 
Data = ET.SubElement(body, 'Data')
Data.text="1234"
Data.set('type','import')
xml_file = ET.ElementTree(root)
xml_file.write('Test.xml', pretty_print=True)