我正在尝试创建一个 Web 服务使用者,给定一个已经启动并运行的服务的 WSDL。挑战在于,在运行时动态地完成整个事情。我正在使用 C#。总结一下,我必须做到以下几点:
- 我有一个应用程序,它将作为 WSDL 文件(url)的输入。完毕
- 应用程序将深入研究 WSDL 文件,识别所使用的操作、消息和类型。(我遇到麻烦的一点)
- 它将创建调用 Web 服务所需的代码,对其进行编译并通过反射加载它。完毕
- 为调用做好一切准备,包括创建必要的参数并将其发送到远程方法。然后它将正确处理响应。完毕
我在使用 #2 时遇到了一些问题,即在 WSDL 文件中解析和向下钻取。具体来说:提取看似“嵌套”的复杂类型。
我已经阅读了一些关于提取复杂类型的非常有用的资源:
http://mikehadlow.blogspot.com/2006/06/simple-wsdl-object.html
但是,我对我收到的用于测试的示例 WSDL 感到有些困惑:
<definitions name='MyWSService' targetNamespace='http://some.url.com/' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://some.url.com/' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<types>
<xs:schema attributeFormDefault='qualified' elementFormDefault='qualified' targetNamespace='http://some.url.com/' version='1.0' xmlns:tns='http://some.url.com/' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
<xs:element name='dsSendOperationName' type='tns:systemSendOperationName'/>
<xs:element name='dsSendOperationNameResponse' type='tns:systemSendOperationNameResponse'/>
<xs:complexType name='systemSendOperationName'>
<xs:sequence>
<xs:element minOccurs='0' name='systemOperationName' type='tns:systemOperationName'/>
</xs:sequence>
</xs:complexType>
<xs:complexType name='systemOperationName'>
<xs:sequence>
<xs:element minOccurs='0' name='param1' type='xs:string'/>
<xs:element minOccurs='0' name='param2' type='xs:string'/>
<xs:element minOccurs='0' name='param3' type='xs:string'/>
<xs:element minOccurs='0' name='param4' type='xs:string'/>
<xs:element minOccurs='0' name='param5' type='xs:string'/>
</xs:sequence>
</xs:complexType>
<xs:complexType name='systemSendOperationNameResponse'>
<xs:sequence>
<xs:element minOccurs='0' name='return' type='xs:string'/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</types>
<message name='SystemOperationNameWS_dsSendOperationName'>
<part element='tns:dsSendOperationName' name='dsSendOperationName'></part>
</message>
<message name='SystemOperationNameWS_dsSendOperationNameResponse'>
<part element='tns:dsSendOperationNameResponse' name='dsSendOperationNameResponse'></part>
</message>
<portType name='SystemOperationNameWS'>
<operation name='dsSendOperationName' parameterOrder='dsSendOperationName'>
<input message='tns:SystemOperationNameWS_dsSendOperationName'></input>
<output message='tns:SystemOperationNameWS_dsSendOperationNameResponse'></output>
</operation>
</portType>
<binding name='SystemOperationNameWSBinding' type='tns:SystemOperationNameWS'>
<soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
<operation name='dsSendOperationName'>
<soap:operation soapAction=''/>
<input>
<soap:body use='literal'/>
</input>
<output>
<soap:body use='literal'/>
</output>
</operation>
</binding>
<service name='SystemOperationNameWSService'>
<port binding='tns:SystemOperationNameWSBinding' name='SystemOperationNameWSPort'>
<soap:address location='http://a.url.here.com'/>
</port>
</service>
</definitions>
看看根元素(如消息部分中定义的)如何引用复杂类型,该类型具有稍后声明为复杂类型的元素,该元素最终具有具有标准 XSD 类型的元素序列。
以编程方式,我能够深入到该“链”的最后一个元素。但是,我对发送到 Web 服务的实际消息的类型感到困惑。是吗:
- 一个包含 5 个字符串的系统操作名称的系统发送操作名称?或者
- 一个包含 5 个字符串的 systemOperationName 对象?
总的来说,这种嵌套类型正常吗?到目前为止,我还没有找到类似的例子。
编辑:
使我最初的帖子中的一些观点更加清晰,以避免任何混淆。