我正在尝试编写一个XSD来验证我的SOAP服务的响应。我不得不导入http:// schemas.xmlsoap.org/soap/envelope/,而不是重新定义像Envelope,Head和Body这样的SOAP元素,但是Body的xmlsoap.org模式定义太宽泛了 - - 一旦我导入SOAP Schema,突然我的XSD(我已经为我的服务精心定制)验证了所有SOAP消息。
我该如何处理XSD中SOAP信封,头部,主体的定义?
我怀疑问题是我正在尝试重新使用其他我不应该尝试重用的模式。当然,那些用于SOAP的Schema旨在定义(所有)SOAP消息应该是什么样子。也许我只需要在我的架构中定义我想要的特定肥皂体看起来像什么。
我可能刚刚回答了我自己的问题。也许有人有不同的解决方案?
我在编写XSD来描述来自我的一个SOAP服务的响应消息时遇到了一些麻烦。
这是我正在尝试验证的服务的示例响应:
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<helloResponse xmlns="http://justinfaulkner/wsdl/1.0">
<Message>Hello, Justin!</Message>
<Message>Your lucky numbers are: 329, 9</Message>
</helloResponse>
</soap:Body>
</soap:Envelope>
我的目标是使用XSD验证我的服务响应。所以,我手工编写了一个XSD,它描述了我服务的soap:Body中所有类型
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://justinfaulkner/wsdl/1.0" xmlns:tns="http://justinfaulkner/wsdl/1.0">
<xsd:complexType name="helloResponseType">
<xsd:sequence>
<xsd:element name="Message" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="helloResponse" type="tns:helloResponseType"/>
</xsd:schema>
当我尝试使用PHP的DOMDocument :: schemaValidateSource()功能验证带有Schema(第2个代码片段)的示例响应(第一个XML片段)时,验证器指出了我的第一个明显的错误:
元素'soap:Envelope':没有匹配的全局声明可用
“糟糕,呃,”我想,“这些元素是在SOAP的命名空间中定义的,所以我需要导入SOAP的XSD。”
所以我编辑了我的XSD并添加了一个导入:
<xsd:import namespace="http://schemas.xmlsoap.org/soap/envelope/" schemaLocation="http://schemas.xmlsoap.org/soap/envelope/"/>
它奏效了!当我使用XSD验证soap响应时,DOMDocument :: schemaValidateSource返回true。
然后,作为一个完整性检查,我采取了不同的肥皂反应XSD我躺在周围:
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://justinfaulkner/wsdl/1.0" xmlns:tns="http://justinfaulkner/wsdl/1.0">
<xsd:import namespace="http://schemas.xmlsoap.org/soap/envelope/" schemaLocation="http://schemas.xmlsoap.org/soap/envelope/"/>
<xsd:complexType name="OtherServiceResponseType">
<xsd:all>
<xsd:element name="CompletionCode" type="xsd:string"/>
<xsd:element name="ResponseMessage" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
<xsd:element name="OtherServiceResponse" type="tns:OtherServiceResponseType"/>
</xsd:schema>
我尝试用这个完全不相关的Schema来验证我的肥皂反应......
乍一看,根本没有描述此消息的模式也验证了soap响应。
然后我意识到XSD的Schema必须是响应验证这两种不同模式的原因。我从http://schemas.xmlsoap.org/soap/envelope/导入的SOAP模式将Body元素定义为:
<xs:element name="Body" type="tns:Body" />
<xs:complexType name="Body" >
<xs:sequence>
<xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
</xs:sequence>
<xs:anyAttribute namespace="##any" processContents="lax" >
<xs:annotation>
<xs:documentation>
Prose in the spec does not specify that attributes are allowed on the Body element
</xs:documentation>
</xs:annotation>
</xs:anyAttribute>
</xs:complexType>
这允许Body标签的内容基本上是任何东西。
这是有道理的,XSD的XSD的目的是定义所有XSD应该是什么样子,而不仅仅是我的。
所以我的问题是,我应该如何构建一个XSD来验证这些SOAP响应,如果可能的话重用现有的SOAP XSD?
这是我一直追求的方向......
您应该使用SOAP Web服务框架来执行此操作。 wikipedia page上列出了许多编程语言。编写WSDL以指定Web服务API,并在其中导入XSD以定义有效负载格式(契约优先方法)。使用框架提供的wsdl2xxx工具生成API存根。您编写API实现代码。该框架将处理其余部分(处理SOAP消息并绑定到您的实现代码)。