cvc-elt.1.a: 找不到元素声明

Cvc-elt.1.a: Cannot Find The Declaration Of Element

验证 XML 时出现错误:

Cvc-elt.1.a: Can not Find The Declaration Of Element 'ValidaLinea'

这是XML:

 <?xml version="1.0" encoding="UTF-8"?>
<ValidaLinea>
    <cveBanco>40058</cveBanco>
    <importe>0</importe>
    <fechaHoraEnvio>2002-05-30T09:00:00</fechaHoraEnvio>
    <Signature xmlns="http://www.w3.org/2000/09/xmldsig#">  
    </Signature>
</ValidaLinea>

这是 XSD:

 <?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"  
            >
<xs:complexType name="ValidaLinea">
    <xs:sequence>
        <xs:element name="cveBanco">
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:pattern value="[0-9]{5}" />
                </xs:restriction>
            </xs:simpleType>
        </xs:element>
        <xs:element name="importe">
            <xs:simpleType>
                <xs:restriction base="xs:long">
                    <xs:totalDigits value="14" />
                </xs:restriction>
            </xs:simpleType>
        </xs:element>
        <xs:element name="fechaHoraEnvio">
            <xs:simpleType>
                <xs:restriction base="xs:dateTime">
                </xs:restriction>
            </xs:simpleType>
        </xs:element>
        <xs:element name="Signature" />
    </xs:sequence>
</xs:complexType> 
</xs:schema>

当我尝试使用 XSD 验证 XML 时出现错误,错误是它无法识别 ValidaLinea 元素。

您只为 ValidaLinea.

声明了 type

要为 ValidaLinea 声明 元素 ,添加到 xs:schema:

<xs:element name="ValidaLinea" type="ValidaLinea"/>

请注意,您可能需要清理命名并使用 ValidaLineaType 作为类型。