在XSD中允许xml:space =“preserve”进行验证

时间:2012-06-27 10:31:31

标签: php xml xsd xsd-validation

我正在尝试使用我编写的模式验证xml文件但是它失败了:

Element 'Route', attribute '{http://www.w3.org/XML/1998/namespace}space': The attribute '{http://www.w3.org/XML/1998/namespace}space' is not allowed.

XML文件有时包含:

 <Route xml:space="preserve">

</Route>

这显然是导致问题的原因,我该如何处理我的xsd文件?

这是我的XSD,其中包含一些不相关的内容

<?xml version="1.0" standalone="yes"?>
<xs:schema id="NewDataSet" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
  <xs:element name="NewDataSet">
      <xs:element name="Route" type="xs:string" minOccurs="0" /> 
      <xs:element name="FurtherRequirements" type="xs:string" minOccurs="0" />

等。等

感谢所有的帮助!

1 个答案:

答案 0 :(得分:4)

您必须将Route从类型xs:string更改为string-with-xml-space类型,其中string-with-xml-space是具有简单内容的复杂类型,定义如下:

<xs:complexType name="string-with-xml-space">
  <xs:complexContent>
    <xs:extension base="xs:string">
      <xs:attribute ref="xml:space"/>

您还需要xs:import XML命名空间的架构:

<xs:import namespace='http://www.w3.org/XML/1998/namespace'  
           schemaLocation='http://www.w3.org/2001/xml.xsd'/>