我是一个 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 表明有一种解决方法,涉及将所有定义收集到外部文件中。但这并不能真正帮助新手了解正在发生的事情。非常感谢任何见解!