对于xsd:any,processContents strict vs lax vs skip

时间:2014-12-11 10:09:50

标签: xml xsd

master.xsd:

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.gworks.cn/waf_profile"
    xmlns:tns="http://www.gworks.cn/waf_profile" elementFormDefault="qualified">
    <element name="profile">
        <complexType>
            <sequence>
                <element name="aspect">
                    <complexType>
                        <sequence minOccurs="1" >
                            <any processContents="strict" />
                        </sequence>
                        <attribute name="id" type="string" use="required"></attribute>
                        <attribute name="class" type="string" use="required"></attribute>
                        <attribute name="desc" type="string" use="optional"></attribute>
                    </complexType>
                </element>
            </sequence>
            <attribute name="name" type="string" use="required"></attribute>
        </complexType>
    </element>
</schema>

我是否可以针对此架构编写XML文件,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<profile name="开发" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.gworks.cn/waf_profile"
    xsi:schemaLocation="http://www.gworks.cn/waf_profile http://www.gworks.cn/waf_profile.xsd">
    <aspect id="security" class="cn.gworks.waf.config.SecurityConfig" desc="安全配置">
        <security xsi:schemaLocation="http://www.gworks.cn/config_security http://www.gworks.cn/config_security.xsd">
            <authService impl="com.bgzchina.ccms.security.SSOAuthService" enabled="true">
                <certificate>
                    <field name="Token" isKey="true" />
                </certificate>
            </authService>
            <authService impl="com.bgzchina.ccms.security.NoAuthService" enabled="true">
                <certificate>
                    <field name="username" isKey="true" />
                </certificate>
            </authService>
        </security>
    </aspect>
</profile>

子元素&#34;安全性&#34;有自己的架构定义。

1 个答案:

答案 0 :(得分:15)

因为XSD指定

<any processContents="strict" />

aspect的内容模型中,由于processContents="strict",您的XML无效,要求XML处理器必须能够获取XSD定义在这种情况下,security 并且必须能够对其进行验证

如果将其更改为

<any processContents="lax" />

您的XML将有效,如果您在XSD中定义security,则将在验证期间使用该定义。 (如果找不到定义,您的文档仍将被视为有效。)此要求内容仅在XML处理器可以找到其定义时才有效。

如果将其更改为

<any processContents="skip" />

您的XML将有效且 XML处理器不会尝试验证 aspect下的子内容(除非要求某些 sequence约束下的单个元素。

备注: