1

我正在调用 web 服务,我想通过 xsd 验证来验证 soap 响应。我真的不想进行严格的 xsd 验证,我只想知道响应中是否存在某些元素“历史”。

因此,当存在“历史元素”时,xsd 验证应该成功,而当该元素不存在时,验证应该失败。我一直从下面的 xsd 开始。我只想用我强制的“历史”元素来扩展它。我怎样才能做到这一点?

XSD:

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:ns="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
        targetNamespace="http://schemas.xmlsoap.org/soap/envelope/"
        elementFormDefault="qualified" attributeFormDefault="unqualified">

    <xsd:element name="Envelope">
        <xsd:complexType>
            <xsd:sequence>
                <xsd:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
            </xsd:sequence>
        </xsd:complexType>
    </xsd:element>
</xsd:schema>

肥皂反应

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soapenv:Header/>
   <soapenv:Body>
      <p793:TuDetailsResponse xmlns:p793="http://gls-group.eu/Tracking/">
         <p793:History>
            <p793:Date>
               <p793:Year>2012</p793:Year>
               <p793:Month>10</p793:Month>
               <p793:Day>12</p793:Day>
               <p793:Hour>9</p793:Hour>
               <p793:Minut>52</p793:Minut>
            <p793:ReasonName/>
         </p793:History>
         <p793:History>
            <p793:Date>
               <p793:Year>2012</p793:Year>
               <p793:Month>10</p793:Month>
               <p793:Day>12</p793:Day>
               <p793:Hour>5</p793:Hour>
               <p793:Minut>45</p793:Minut>
            </p793:Date>
            <p793:ReasonName/>
         </p793:History>
      </p793:TuDetailsResponse>
   </soapenv:Body>
</soapenv:Envelope>
4

2 回答 2

1

如果您让 XSD 验证器知道TuDetailsResponseHistory元素,那么当它在any中看到它们时,它应该使用为它们定义的规则。

主要.xsd

主要.xsd

TuDetailsResponse.xsd

TuDetailsResponse.xsd

主要.xsd

<?xml version="1.0" encoding="utf-8" ?>
<!--Created with Liquid XML Studio 2013 Designer Edition (Trial) 11.0.0.0 (http://www.liquid-technologies.com)-->
<xs:schema xmlns:ns0="http://gls-group.eu/Tracking/"
           elementFormDefault="qualified"
           targetNamespace="http://schemas.xmlsoap.org/soap/envelope/"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import schemaLocation="C:\Temp\TuDetailsResponse.xsd"
               namespace="http://gls-group.eu/Tracking/" />
    <xs:element name="Envelope">
        <xs:complexType>
            <xs:sequence>
                <xs:any minOccurs="0"
                        maxOccurs="unbounded"
                        namespace="##any"
                        processContents="lax" />
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

TuDetailsResponse.xsd

<?xml version="1.0" encoding="utf-8" ?>
<!--Created with Liquid XML Studio 2013 Designer Edition (Trial) 11.0.0.0 (http://www.liquid-technologies.com)-->
<xs:schema xmlns:tns="http://gls-group.eu/Tracking/"
           elementFormDefault="qualified"
           targetNamespace="http://gls-group.eu/Tracking/"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="TuDetailsResponse">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="History"
                            maxOccurs="unbounded">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:any minOccurs="0"
                                    maxOccurs="unbounded"
                                    namespace="##any" />
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

示例有效 XML 文件

<?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid XML Studio 2013 Designer Edition (Trial) 11.0.0.0 (http://www.liquid-technologies.com) -->
<Envelope xmlns:tns="http://gls-group.eu/Tracking/"
          xmlns="http://schemas.xmlsoap.org/soap/envelope/"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ Main.xsd">
    <Body>
        <tns:TuDetailsResponse>
            <tns:History></tns:History>
        </tns:TuDetailsResponse>
    </Body>
</Envelope>

注意 Body 元素可能会导致生成警告。

无效的 XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid XML Studio 2013 Designer Edition (Trial) 11.0.0.0 (http://www.liquid-technologies.com) -->
<Envelope xmlns:tns="http://gls-group.eu/Tracking/"
          xmlns="http://schemas.xmlsoap.org/soap/envelope/"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ file:///C:/Temp/WSDL%20Sample.xsd">
    <Body>
        <tns:TuDetailsResponse>
        </tns:TuDetailsResponse>
    </Body>
</Envelope>

产生错误

(9:11) 错误命名空间“ http://gls-group.eu/Tracking/ ”中的元素“TuDetailsResponse”内容不完整。预期的可能元素列表:命名空间“ http://gls-group.eu/Tracking/ ”中的“历史”。

但是您确实应该使用一些肥皂包装器,这应该根据 WSDL 中的模式验证响应,并正确地整理所有失败消息。有一些工具可以为大多数平台和语言生成 SOAP 包装器。

注意:此示例中的验证是使用 .Net 类完成的。

于 2013-01-03T10:11:55.797 回答
0

在 Hashmap/Map 中添加所有必需实体及其命名空间,同时解析响应读取实体一一并检查实体是否存在于 Map 中。

于 2013-01-03T09:17:35.357 回答