我正在调用web服务,我想通过xsd验证来验证soap响应。我真的不想做一个严格的xsd验证,我只是想知道是否有一些元素&# 34;历史"在答复中出现。
因此,当存在"历史元素"时,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>
答案 0 :(得分:1)
如果您让XSD验证器知道 TuDetailsResponse 和 History 元素,那么当它在任何中看到它们时,它应该使用为他们定义的规则。
<强> Main.xsd 强>
<强> TuDetailsResponse.xsd 强>
<强> Main.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/”中的“历史记录”。
但是您真的应该使用一些soap soapper,这应该验证WSDL中对模式的响应,并且还正确地整理所有失败消息。有一些工具可以为大多数平台和语言生成SOAP包装器。
注意:此示例中的验证是使用.Net类完成的。
答案 1 :(得分:0)
在Hashmap / Map中添加所有必需实体及其命名空间,同时逐个解析响应读取实体并检查该实体是否存在于Map中。