0

我是一个 XML 新手,在解析模式时遇到了一些奇怪的问题。这是您可以运行的最小示例:

#! /usr/bin/env python
from lxml import etree
from StringIO import StringIO

XML = StringIO('''<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <xs:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    <xs:complexType name="ArrayOfDocumentLink">
        <xs:complexContent>
            <xs:restriction base="soapenc:Array">
                <xs:attribute ref="soapenc:arrayType" wsdl:arrayType="tns:DocumentLink[]"/>
            </xs:restriction>
        </xs:complexContent>
    </xs:complexType>
</xs:schema>''')

etree.XMLSchema(file=XML)

lxml.etree.XMLSchemaParseError: complex type 'ArrayOfDocumentLink', attribute 'base': The QName value '{http://schemas.xmlsoap.org/soap/encoding/}Array' does not resolve to a(n) simple type definition., line 7

我一无所知。各种邮件列表和这个SO question 表明有一种解决方法,涉及将所有定义收集到外部文件中。但这并不能真正帮助新手了解正在发生的事情。非常感谢任何见解!

4

1 回答 1

2

您已经指出需要为命名空间http://schemas.xmlsoap.org/soap/encoding/导入模式定义,但是您没有告诉处理器在哪里可以找到这些定义。尝试添加(到 xs:import)一个 schemaLocation 属性,该属性告诉处理器在哪里可以找到此名称空间的模式文档。

于 2012-08-29T07:49:17.140 回答