lxml xsi:schemaLocation名称空间URI验证问题

时间:2016-09-21 14:11:22

标签: python xml lxml xml-namespaces cda

我尝试使用lxml.etree来重现CDA QuickStart Guide found here中找到的CDA示例。

特别是,我遇到了尝试重新创建此元素的命名空间问题。

<ClinicalDocument xmlns="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="urn:hl7-org:v3 CDA.xsd">

我使用的代码如下

root = etree.Element('ClinicalDocument',
                    nsmap={None: 'urn:hl7-org:v3',
                           'mif': 'urn:hl7-org:v3/mif',
                           'xsi': 'http://www.w3.org/2001/XMLSchema-instance',
                           '{http://www.w3.org/2001/XMLSchema-instance}schemaLocation': 'urn:hl7-org:v3 CDA.xsd'})

问题在于schemaLocation中的nsmap条目。 lxml似乎正在尝试验证该值并提供错误

ValueError: Invalid namespace URI u'urn:hl7-org:v3 CDA.xsd'

我是否错误地指定了schemaLocation值?有没有办法强制lxml接受任何字符串值?或者示例中的值是否只是一个占位符,我应该用其他东西替换它?

1 个答案:

答案 0 :(得分:7)

nsmap是前缀到名称空间URI的映射。 urn:hl7-org:v3 CDA.xsdxsi:schemaLocation属性的有效值,但它不是有效的命名空间URI。

类似问题的解决方案How to include the namespaces into a xml file using lxmf?也适用于此。使用QName创建xsi:schemaLocation属性。

from lxml import etree

attr_qname = etree.QName("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation")

root = etree.Element('ClinicalDocument',
                     {attr_qname: 'urn:hl7-org:v3 CDA.xsd'},
                     nsmap={None: 'urn:hl7-org:v3',
                            'mif': 'urn:hl7-org:v3/mif',
                            'xsi': 'http://www.w3.org/2001/XMLSchema-instance',
                            })