类型命名空间未声明或不是简单类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类型命名空间未声明或不是简单类型相关的知识,希望对你有一定的参考价值。

我试图使用在一个模式文件中定义的类型,并在另一个模式文件中使用它。我相信格式是正确的但我在验证时仍然收到相同的错误消息。

主模式文件

<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns="urn:deliverableNamespace" xmlns:mstns="urn:deliverableNamespace" attributeFormDefault="unqualified" elementFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:deliverableNamespace">
<xs:include schemaLocation="ManageDeliverableLookup.xsd" />
 <xs:element name="GEMS">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="header">
      <xs:complexType>
        <xs:sequence>
          <xs:element name="token" type="xs:string" />
          <xs:element name="timestamp" type="xs:string" />
          <xs:element name="system">
            <xs:complexType>
              <xs:attribute name="id" type="SystemIdLkup" use="required"/>
            </xs:complexType>
          </xs:element>
        </xs:sequence>
      </xs:complexType>
    </xs:element>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
</xs:schema>

第二个架构文件

<?xml version="1.0" encoding="utf-8"?>
    <xs:schema id="ManageDeliverableLookup" targetNamespace="urn:deliverableNamespace" elementFormDefault="unqualified" attributeFormDefault="unqualified" xmlns="urn:deliverableNamespace" xmlns:mstns="urn:deliverableNamespace" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:simpleType name="SystemIdLkup">
     <xs:restriction base="xs:string" >
      <xs:enumeration value="3"/>
      <xs:enumeration value="4"/>
      <xs:enumeration value="5"/>
      <xs:enumeration value="16"/>
      <xs:enumeration value="18"/>
      <xs:enumeration value="56"/>
      <xs:enumeration value="150"/>
      <xs:enumeration value="151"/>
    </xs:restriction>

  </xs:simpleType>
</xs:schema>
答案

偶然的一瞥产生了这个,可能无法解决您的问题,但可能有助于让您更接近:您的targetnamespace在两个XSD中都是相同的值。它们应该是不同的,因为目标命名空间表示当前文档中声明的元素。您有两个文档,因此需要两个targetnamespaces。

以上是关于类型命名空间未声明或不是简单类型的主要内容,如果未能解决你的问题,请参考以下文章

错误 1 未能找到类型或命名空间名称“Form1”(是不是缺少 using 指令或程序集引用?)

为啥要将类型放在未命名的命名空间中?

访问修饰符,命名空间

vs2008中的错误 1 找不到类型或命名空间名称“Graphics”(是不是缺少 using 指令或程序集引用?)怎么解决?急

代码分析错误:在命名空间中声明类型

找不到类型或命名空间名称“T”(您是不是缺少 using 指令或程序集引用?)