嗨,我试图了解XSD,XML和命名空间,但我不能按照我希望的方式工作.
我有一个XSD,目前,这样开始:
<xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.com"> <xs:import namespace="http://www.example.com" schemaLocation="Include.xsd" />
<xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://www.example.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.com">
然后我有一些基于这个模式的xml文档:
<foobar> <whatever>....
基本上我不关心命名空间是什么,我只是想让这件事工作.以前我没有使用任何命名空间,但似乎我必须使用它们才能将一个XSD导入另一个.我不想做的是必须为我的xml文档中的所有元素提供前缀.
为了实现这一点,我需要在XSD和XML文档中的各种属性(targetNamespace,namespace,xmlns,elementFormDefault等)中使用哪些值组合?
目前,导入的XSD文档中定义的任何元素都需要XML中的命名空间限定.
如果您没有使用名称空间或您的模式共享相同的名称空间,那么使用xs:include而不是xs:import会更好.如果B具有与A相同的命名空间或者没有声明命名空间(如果后者是这种情况,则B’在包含时采用’包含者的命名空间),则模式A可以包括模式B.所以…类似于:
原文链接:https://www.f2er.com/xml/292368.html<xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.com"> <xs:include schemaLocation="Include.xsd" /> <!-- ... --> </xs:schema>