0

我正在尝试使用 XSD 验证我的 XML 文档。我尝试为所有内容提供名称空间,包括默认名称。但是,错误仍然存​​在。如果有人可以告诉我出了什么问题,那么将不胜感激

    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- <!DOCTYPE people SYSTEM "validator.dtd"> -->

    <people 
    xmlns:cmuq="http://www.cmu.edu/ns/students"
    xmlns="http://www.cmu.edy/ns/blank"
    xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance"
    xsi:schemaLocation="student.xsd"
    >
        <cmuq:student>
            <name>John</name>
            <course>Computer Technology</course>
            <semester>6</semester>
            <scheme>E</scheme>
        </cmuq:student>

        <cmuq:student>
            <name>Foo</name>
            <course>Industrial Electronics</course>
            <semester>6</semester>
            <scheme>E</scheme>
        </cmuq:student>
    </people>   

XSD

<?xml version="1.0"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.cmu.edu/ns/blank"
targetNamespace="http://www.cmu.edu/ns/students">
    <xs:element name="people">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="student" maxOccurs="unbounded">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element name="name" type="xs:string" />
                            <xs:element name="course" type="xs:string" />
                            <xs:element name="semester">
                                <xs:simpleType>
                                    <xs:restriction base="xs:string">
                                        <xs:enumeration value="1" />
                                        <xs:enumeration value="2" />
                                        <xs:enumeration value="3" />
                                        <xs:enumeration value="4" />
                                        <xs:enumeration value="5" />
                                        <xs:enumeration value="6" />
                                    </xs:restriction>
                                </xs:simpleType>
                            </xs:element>
                            <xs:element name="scheme">
                                <xs:simpleType>
                                    <xs:restriction base="xs:string">
                                        <xs:pattern value = "E|C" />
                                    </xs:restriction>
                                </xs:simpleType>
                            </xs:element>
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>  

请告诉我如何解决该错误


伊恩罗伯茨回答后更新

XSD<schema>标签:

  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.cmu.edu/ns/blank"
    targetNamespace="http://www.cmu.edu/ns/blank"
    elementFormDefault="qualified"> 

XML 的根,<people>标记。

 <people
    xmlns="http://www.cmu.edu/ns/blank"
    xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.cmu.edu/ns/blank student.xsd">  

它仍然没有验证。我暂时放弃了添加的想法,xmlns:cmuq但问题仍然存在。>

4

1 回答 1

1

那里的架构声明了命名空间中的people元素http://www.cmu.edu/ns/students(架构的目标命名空间)以及无命名空间中的所有嵌套元素(因为您不使用elementFormDefault)。所以它需要

<cmuq:people
  xmlns:cmuq="http://www.cmu.edu/ns/students"
  xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.cmu.edu/ns/students student.xsd"
>
    <student>

另请注意,xsi:schemaLocation需要是对列表namespaceUri schema,而不仅仅是单个模式地址 - 此属性可以将不同的模式与每个命名空间相关联。

于 2013-05-10T08:20:50.077 回答