XML验证在属性上失败

时间:2012-05-25 08:58:46

标签: xml validation xsd xerces

我在针对我定义的架构验证xml时遇到了一些问题。奇怪的是,只有当我使用默认命名空间xmlns="http://retis.sssup.it/duck-lab"时,验证才会失败,而如果我将其定义为xmlns:dl="http://retis.sssup.it/duck-lab",它就像魅力一样。

当我使用空命名空间时,验证仅对具有以下消息的属性失败:

cvc-complex-type.3.2.2: Attribute 'data_len' is not allowed to appear in element 'data'.    
cvc-complex-type.4: Attribute 'data_len' must appear on element 'data'.

VALID XML:

<dl:duck xmlns:dl="http://retis.sssup.it/duck-lab" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://retis.sssup.it/duck-lab ../duck.xsd ">
...
        <dl:data dl:data_len="1" dl:data_name="name uint" dl:data_type="uint16" dl:endianess="big-endian"/>

INVALID XML:

<duck xmlns="http://retis.sssup.it/duck-lab" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://retis.sssup.it/duck-lab ../duck.xsd ">
...
    <data data_len="1" data_name="name uint" data_type="uint16" endianess="big-endian"/>

- 编辑 -

DUCK.XSD

<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://retis.sssup.it/duck-lab"
    xmlns:dl="http://retis.sssup.it/duck-lab" elementFormDefault="qualified">

    <include schemaLocation="datatypes.xsd"/>
    <include schemaLocation="duck_message.xsd"/>

    <complexType name="DuckDefinitionType" block="#all" final="#all">
        <sequence>
            <element type="dl:MessageType" name="message_description" form="qualified"/>
        </sequence>
    </complexType>

    <element name="duck" type="dl:DuckDefinitionType" />

</schema>

DATATYPES.XSD

<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://retis.sssup.it/duck-lab"
    xmlns:dl="http://retis.sssup.it/duck-lab" elementFormDefault="qualified">
        <attribute name="data_name" type="string"/>
    <attribute name="data_len" type="nonNegativeInteger"/>
    <attribute name="data_type" type="string"/>
    <attribute name="endianess" type="string"/>
        <element name="data">
        <complexType>
            <attribute ref="dl:data_name" use="required"/>
            <attribute ref="dl:data_len" use="required"/>
            <attribute ref="dl:data_type" use="required"/>
            <attribute ref="dl:endianess" use="required"/>
        </complexType>
    </element>
</schema>

DUCK_MESSAGE.XSD

<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://retis.sssup.it/duck-lab"
    xmlns:dl="http://retis.sssup.it/duck-lab" elementFormDefault="qualified">

    <include schemaLocation="datatypes.xsd"></include>
    <complexType name="MessageType">
        <sequence maxOccurs="unbounded">
            <element ref="dl:data"></element>
        </sequence> 
    </complexType>
</schema>

显然我可以绕过定义非空命名空间的问题,但我想了解什么是错误的。

非常感谢。

1 个答案:

答案 0 :(得分:2)

默认命名空间的处理对于属性是不同的 - 没有命名空间前缀的属性不与默认命名空间相关联,它没有命名空间,请参阅here

这意味着在无效的XML中,各种属性data-lendata-name等没有名称空间,而模式声明它们位于http://retis.sssup.it/duck-lab名称空间中,因为{{ 1}}指令。