我正在尝试使用流量网络服务。下面给出了SOAP请求的一个示例。
我使用WSDL结构中的Wsdl.exe在c#中创建了一个代理类。
我认为我现在需要以某种方式将'authenticate'SOAP标头插入到SOAP结构中 方法调用。我不确定如何将标头添加到服务方法调用?
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="http://www.inteleacst.com.au/wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Header>
<ns1:authenticate>
<SOAP-ENC:Struct>
<username>username</username>
<password>password</password>
</SOAP-ENC:Struct>
</ns1:authenticate>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<ns1:getAllTraffic>
<States SOAP-ENC:arrayType="xsd:string[3]" xsi:type="ns1:State_Arr">
<item xsi:type="xsd:string">VIC</item>
<item xsi:type="xsd:string">NSW</item>
<item xsi:type="xsd:string">NT</item>
</States>
<EventCodes SOAP-ENC:arrayType="xsd:int[1]" xsi:type="ns1:EventCode_arr">
<item xsi:type="xsd:int">802</item>
</EventCodes>
</ns1:getAllTraffic>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
以下是用于调用Web服务方法的代理类中的代码。
[System.Web.Services.Protocols.SoapRpcMethodAttribute("http://webservice.intelecast.com.au/traffic/PublicSoap/server.php#getAllTraffic", RequestNamespace="http://webservice.intelecast.com.au/traffic/PublicSoap/server.php", ResponseNamespace="http://webservice.intelecast.com.au/traffic/PublicSoap/server.php")]
[return: System.Xml.Serialization.SoapElementAttribute("return")]
public TrafficInfo[] getAllTraffic(string[] States, int[] EventCodes) {
object[] results = this.Invoke("getAllTraffic", new object[] {
States,
EventCodes});
return ((TrafficInfo[])(results[0]));
}
答案 0 :(得分:4)
在网上搜索我发现了一篇关于非常类似问题的论坛帖子和一个很好的解决方案。 可在此处获取 - forums.asp.net/t/1137408.aspx
答案 1 :(得分:2)
与Visual Studio .Net 2003/2005中之前的“添加Web服务引用”和创建SOAP扩展相比,添加SOAP头是使用WCF更复杂的事情之一。
要在WCF中执行此操作,您需要添加EndPointBehavior。有很多例子,google在IEndpointBehavior和IClientMessageInspector上。这个article提供了一个很好的简洁示例,但您可能需要扩展它。