我想从基本XML文件中定义的类型继承,但是我想进行一次修改。基本文件架构中可选的元素在我的新架构文件中必须是必需的。命名空间不同,我无法更改它们。有什么更好的解决方案?我有下面的代码,但出现错误。
文件base.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
targetNamespace="http://basetype"
xmlns="http://basetype">
<xs:element name="BaseTypeElement" type="BaseType"/>
<xs:complexType name="BaseType">
<xs:sequence>
<xs:element name="id" type="xs:long"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
文件strictbasetype.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
targetNamespace="http://restrictbasetype"
xmlns:bas="http://basetype"
xmlns="http://restrictbasetype">
<xs:import schemaLocation="base.xsd" namespace="http://basetype"/>
<xs:element name="RestrictedElement" type="BaseTypeRestriction"/>
<xs:complexType name="BaseTypeRestriction">
<xs:complexContent>
<xs:restriction base="bas:BaseType">
<xs:sequence>
<xs:element name="id" type="xs:long"/>
<!-- name is now mandatory -->
<xs:element name="name" type="xs:string" minOccurs="1"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
答案 0 :(得分:0)
错误是因为名称空间之间的冲突。
您的第一个架构base.xsd
具有{http://basetype}
目标名称空间。
第二个模式restrictbasetype.xsd
具有{restrictbasetype.xsd}
目标名称空间。此外,您的两个架构都在其头部中指定了elementFormDefault="qualified"
属性,这意味着所有本地声明的元素均是合格的,属于它们架构的目标名称空间。对于XML处理器,这意味着您的两个架构都定义了完全不同的事物。因此,它们可能只是共存,而不能彼此强制执行任何事情。
具体地说,这是错误的地方:
<xs:complexType name="BaseTypeRestriction">
<xs:complexContent>
<!-- The restriction means that anything defined inside it may be just
overridings fully compatible with the content defined by parent type: 'bas:BaseType'
-->
<xs:restriction base="bas:BaseType">
<xs:sequence>
<!-- But here you actually declare an element with the qualified name:
{http://restrictbasetype}:id. It won't override the 'id' element in
'bas:BaseType' because that one has the qulified name: {http://basetype}:id.
On the other hand, you cannot even extend the content of 'bas:BaseType'
because it is the restriction.
So, this particular declaration is completely wrong!
-->
<xs:element name="id" type="xs:long"/>
<!-- the same is for this -->
<xs:element name="name" type="xs:string" minOccurs="1"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
那么,您可以做些什么来使您的意图发挥作用?您应该在两个架构头中都删除 elementFormDefault="qualified"
。然后,任何本地声明的元素都将位于相同的{no namespace}
中,因此有可能被覆盖。
这些模式确实对我有用:
base.xsd
<?xml version="1.0" encoding="UTF-8"?>
<!-- no 'elementFormDefault' attribute -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://basetype"
xmlns="http://basetype">
<xs:element name="BaseTypeElement" type="BaseType"/>
<xs:complexType name="BaseType">
<xs:sequence>
<xs:element name="id" type="xs:long"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
restrictbasetype.xsd
<?xml version="1.0" encoding="UTF-8"?>
<!-- no 'elementFormDefault' attribute -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://restrictbasetype"
xmlns:bas="http://basetype"
xmlns="http://restrictbasetype">
<xs:import schemaLocation="base.xsd" namespace="http://basetype"/>
<xs:element name="RestrictedElement" type="BaseTypeRestriction"/>
<xs:complexType name="BaseTypeRestriction">
<xs:complexContent>
<xs:restriction base="bas:BaseType">
<xs:sequence>
<xs:element name="id" type="xs:long"/>
<!-- name is now mandatory -->
<xs:element name="name" type="xs:string" minOccurs="1"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
</xs:schema>
促销附加组件。这些链接对于使用XML模式和WSDL的人可能很有趣:FlexDoc/XML XSDDoc&WSDLDoc –带有图表的高性能通用XML Schema / WSDL文档生成器