SOAP 标头与使用的 Web Services
使用“添加 Web 引用”对话框将 Web 服务添加到业务流程后,可以使用 Web 服务描述语言 (WSDL) 在 Web 服务中定义的 SOAP 标头。
注意
使用的 Web Services 不支持未知 SOAP 标头。
使用的 Web 服务的 WSDL 列出了绑定元素中定义的 SOAP 标头。 以下示例演示使用的 Web 服务的 WSDL 文件中的绑定元素:
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://SOAPHeaderWS.ItemAvailability" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://SOAPHeaderWS.ItemAvailability" xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<s:schema elementFormDefault="qualified" targetNamespace="http://SOAPHeaderWS.ItemAvailability">
<s:element name="OrigDest" type="s0:OrigDest"/>
<s:complexType name="OrigDest">
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="Origination" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="Destination" type="s:string"/>
</s:sequence>
</s:complexType>
</s:schema>
</types>
<binding name="ItemAvailabilityServiceSoap" type="s0:ItemAvailabilityServiceSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="ItemAvailability">
<soap:operation soapAction="http://SOAPHeaderWS.ItemAvailability/ItemAvailability" style="document"/>
<input>
<soap:body use="literal"/>
<soap:header message="s0:ItemAvailabilityOrigDest" part="OrigDest" use="literal"/>
</input>
<output>
<soap:body use="literal"/>
<soap:header message="s0:ItemAvailabilityOrigDest" part="OrigDest" use="literal"/>
</output>
</operation>
</binding>
<service name="ItemAvailabilityService">
<port name="ItemAvailabilityServiceSoap" binding="s0:ItemAvailabilityServiceSoap">
<soap:address location="http://localhost/SOAPHeaderWS/ItemAvailability.asmx"/>
</port>
</service>
</definitions>
有关使用 SOAP 标头的详细信息,请参阅 .NET Framework 文档中https://go.microsoft.com/fwlink/?LinkId=62266的“使用 SOAP 标头”。