使用元素树解析wsdl(从定义中检索命名空间)

时间:2011-11-18 07:14:23

标签: python wsdl elementtree qualified-name

我正在尝试使用ElementTree解析wsdl文件,作为其中的一部分,我想从给定的wsdl定义元素中检索所有命名空间。

例如,在下面的代码片段中,我试图检索定义标记

中的所有名称空间
<?xml version="1.0"?>
<definitions name="DateService" targetNamespace="http://dev-b.handel-dev.local:8080/DateService.wsdl" xmlns:tns="http://dev-b.handel-dev.local:8080/DateService.wsdl"
  xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:myType="DateType_NS" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">

我的代码看起来像这样

import xml.etree.ElementTree as ET

xml_file='<path_to_my_wsdl>'
tree = xml.parse(xml_file)
rootElement = tree.getroot()
print (rootElement.tag)       #{http://schemas.xmlsoap.org/wsdl/}definitions
print(rootElement.attrib)     #targetNamespace="http://dev-b..../DateService.wsdl"

据我所知,在ElementTree中,名称空间URI与元素的本地名称相结合。如何从定义元素中检索所有名称空间条目?

感谢您对此的帮助

P.S:我是新的(非常!)到python

2 个答案:

答案 0 :(得分:2)

>>> import xml.etree.ElementTree as etree
>>> from StringIO import StringIO
>>>
>>> s = """<?xml version="1.0"?>
... <definitions
...   name="DateService"
...   targetNamespace="http://dev-b.handel-dev.local:8080/DateService.wsdl"
...   xmlns:tns="http://dev-b.handel-dev.local:8080/DateService.wsdl"
...   xmlns="http://schemas.xmlsoap.org/wsdl/"
...   xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
...   xmlns:myType="DateType_NS"
...   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...   xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
... </definitions>"""
>>> file_ = StringIO(s)
>>> namespaces = []
>>> for event, elem in etree.iterparse(file_, events=('start-ns',)):
...     print elem
...
(u'tns', 'http://dev-b.handel-dev.local:8080/DateService.wsdl')
('', 'http://schemas.xmlsoap.org/wsdl/')
(u'soap', 'http://schemas.xmlsoap.org/wsdl/soap/')
(u'myType', 'DateType_NS')
(u'xsd', 'http://www.w3.org/2001/XMLSchema')
(u'wsdl', 'http://schemas.xmlsoap.org/wsdl/')

ElementTree documentation

的启发

答案 1 :(得分:0)

您可以使用lxml

from lxml import etree
tree = etree.parse(file)
root = tree.getroot()
namespaces = root.nsmap

请参阅https://stackoverflow.com/a/26807636/5375693