QName值'{http://schemas.xmlsoap.org/soap/encoding/}Array'未解析为(n)简单类型定义

时间:2012-08-29 00:53:19

标签: xml soap wsdl xsd lxml

我是一个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

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

1 个答案:

答案 0 :(得分:2)

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