我在Request.xsd中定义了架构,它将引用common.xsd。 我期待输出应该如下所示
<Request xmlns="http://ws.myref.com/schemas/test"
xmlns="http://ps.myref.com/schemas/2008/Common">
<EmailList>
<Mail>test@gmail.com</Mmail>
</EmailList>
</Request>
但我得到额外的命名空间“ns2”问题。任何人都可以帮我解决这个问题
<ns2:Request xmlns:ns2="http://ps.myref.com/schemas/test"
xmlns="http://ps.myref.com/schemas/Common">
<ns2:EmailList>
<Mail>test@gmail.com</Mail>
</ns2:EmailList>
</ns2:Request>
Request.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" targetNamespace="http://ps.myref.com/schemas/schemas/test"
xmlns="http://ps.myref.com/schemas/schemas/test" xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
xmlns:com="http://ps.myref.com/schemas/Common">
<xsd:import namespace="http://ps.myref.com/schemas/Common" schemaLocation="../schemas/common/common.xsd"/>
<xsd:element name="Request">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="EmailLists" type="com:EmailList" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
Common.xsd
<?xml version="1.0"?>
<xsd:schema xmlns="http://ps.myref.com/schemas/2008/Common" elementFormDefault="unqualified"
targetNamespace="http://ps.myref.com/schemas/Common"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsd:complexType name="EmailList">
<xsd:sequence>
<xsd:element name="Mail" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
答案 0 :(得分:3)
在这种情况下,你的期望是不合理的。
因为类型“EmailList”是在common.xsd文件中的名称空间http://ps.myref.com/schemas/2008/Common
下定义的,所以当您在另一个模式中使用EmailList类型时,除了以某种方式区分它之外别无选择。如果你看一下request.xsd,你可以看到这里的结果很简单:
<xsd:element name="EmailLists" type="com:EmailList" />
在这种情况下,com:
是一个前缀,旨在表明该类型是在另一个模式中定义的,并且在与正在使用的名称空间不同的名称空间下。
以同样的方式,当xsd验证器使用request.xsd验证模式实例时,它必须确保您在实例中使用的EmailList类型与common.xsd中定义的EmailList类型相同。模式,它可以做到这一点的唯一方法是使用命名空间。
因此可以概括您的期望:
“我应该能够将两个不同模式定义中定义的类型自由地混合在一起而不区分它们,解析器应该理解这一点。”
所以你现在应该能够看到你的期望是如何没有逻辑意义的。
如果您不想要“ns2:”,那么您唯一的另一种选择就是:
<Request xmlns"http://ps.myref.com/schemas/test">
<EmailList xmlns"http://ps.myref.com/schemas/test">
<Mail xmlns="http://ps.myref.com/schemas/Common">test@gmail.com</Mail>
</EmailList>
</Request>