程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> WCF專題系列(2):深入WCF尋址Part 2—自定義尋址報頭

WCF專題系列(2):深入WCF尋址Part 2—自定義尋址報頭

編輯:關於.NET

在WCF專題系列(1):深入WCF尋址Part1一文中,我們對Web服務尋址規范做 了一些認識,了解了終結點引用和消息信息報頭兩種結構,該規范在Web服務中 的地位舉足輕重,後續我們會經常提到該規范。在本文中,我們將繼續深入WCF 尋址的內容,包括元數據中的終結點地址,自定義尋址標頭等相關信息。

終結點地址定義

了解了Web服務尋址規范,再回到WCF,在WCF中,終 結點地址是由EndpointAddress類來表示的,它其中很重要的幾個部分是:一個 表示服務地址的統一資源定位符 (URI),一個表示服務的安全標識的 Identity 和一個可選的 Headers 集合,其中Headers用於標識終結點或與終結點交互的更 多詳細尋址信息。如圖1所示:

 

圖1

記的我在WCF專題系列(1):深入WCF尋址Part1一文提到過 ,每個終結點引用都可以包含一些添加額外標識信息的引用參數,即尋址標頭, 在 WCF 中,將這些引用參數建模為 AddressHeader 類的實例,這裡的Headers 屬性就是這些實例的集合,可以通過AddressHeader類提供的靜態方法 CreateAddressHeader來創建一個AddressHeader實例,如下代碼所示:

AddressHeader header = AddressHeader.CreateAddressHeader ("basic",
             "http://www.cnblogs.com/terrylee", "Terrylee");

指定終結點地址

在WCF中提供了基址技術 ,這使的我們在指定終結點地址時可以酌情選用相對地址或者絕對地址,指定絕 對地址的方法是在終結點定義中提供完全限定的地址,如下代碼所示:

<service name="TerryLee.WCFAddressing.Service.CalculatorService"
     behaviorConfiguration="calculatorBehavior">
 <endpoint address="http://localhost:8887/CalculatorService"
       binding ="basicHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
</service>

使用絕對地址固 然簡單,但是如果我們的服務需要公開多個終結點,而這些終結點地址又具有相 同的基地址時,也許相對地址是更好的選擇。在創建服務宿主對象時,提供一個 基地址,如下代碼所示:

using (ServiceHost calculatorServiceHost =
    new ServiceHost(typeof (CalculatorService),
    new Uri ("http://localhost:8887/CalculatorService")))
{
   calculatorServiceHost.Opened += delegate
  {
     Console.WriteLine("Service begin to listen via the Address:{0} ",
      calculatorServiceHost.BaseAddresses [0].ToString());
  };
  calculatorServiceHost.Open();
  Console.Read();
}

又或者同時在配置文件中指定基地址 ,這樣就無須在每個終結點中指定絕對地址了,如下代碼所示:

<service name="TerryLee.WCFAddressing.Service.CalculatorService"
     behaviorConfiguration="calculatorBehavior">
 <host>
  <baseAddresses>
   <add baseAddress="http://localhost:8887/Calculator"/>
   </baseAddresses>
 </host>
 <endpoint address="myservice1"
      binding ="basicHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
 <endpoint address="myservice2"
      binding ="wsHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
</service>

但請注意,基址 技術是為我們在配置終結點時提供了方便,客戶端對它是毫無所知的,客戶端看 到的仍然是絕對地址,在打開服務宿主時,它會匹配所有的相對地址,從而為每 個終結點提供相應的絕對地址,如上面的示例,可以在WSDL中看到:

<wsdl:service name="CalculatorService">
 <wsdl:port name="BasicHttpBinding_ICalculator" binding="tns:BasicHttpBinding_ICalculator">
   <soap:address location="http://localhost:8887/Calculator/myservice1" />
 </wsdl:port>
 <wsdl:port name="WSHttpBinding_ICalculator" binding="tns:WSHttpBinding_ICalculator">
   <soap12:address location="http://localhost:8887/Calculator/myservice2" />
  <wsa10:EndpointReference>
    <wsa10:Address>http://localhost:8887/Calculator/myservice2</w sa10:Address>
   <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity&q uot;>
     <Upn>TerryLee-PC\TerryLee</Upn>
   </Identity>
  </wsa10:EndpointReference>
 </wsdl:port>
</wsdl:service>

如果在指定 了基地址的情況下,有以下幾種情況:指定相對地址為空,終結點地址與基地址 相同;指定相對地址不為空,追加相對地址到基地址上;指定一個絕對地址,基 地址不起作用,終結點地址仍然為指定的絕對地址;指定一個絕對地址和一個與 基地址不同的綁定,基地址不起作用。現在有這樣一段配置信息:

<service name="TerryLee.WCFAddressing.Service.CalculatorService"
     behaviorConfiguration="calculatorBehavior">
 <host>
  <baseAddresses>
   <add baseAddress="http://localhost:8887/Calculator"/>
   </baseAddresses>
 </host>
 <endpoint address=""
      binding ="wsHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
 <endpoint address="myservice2"
      binding ="wsHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
 <endpoint address="http://localhost:8886/CalculatorService"
       binding ="wsHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
 <endpoint address="net.tcp://localhost:8885/Calculator"
       binding ="netTcpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator"> </endpoint>
</service>

可以在 ServiceHost啟動後,輸出所有的終結點地址和綁定信息,如下代碼:

ServiceDescription desc = calculatorServiceHost.Description;
foreach (ServiceEndpoint endpoint in desc.Endpoints)
{
  Console.WriteLine ("Endpoint - address: {0}", endpoint.Address);
   Console.WriteLine("      binding: {0}", endpoint.Binding.Name);
  Console.WriteLine("      contract: {0}", endpoint.Contract.Name);
}

輸出結果 如圖2所示:

 

圖2

元數據中終結點地址

終結點地址在WSDL中表示為對應終結 點的 wsdl:port元素內的終結點引用(EndpointReference)元素。終結點引用 包含終結點的地址以及所有的地址屬性,如下示例代碼所示:

<wsdl:service name="CalculatorService">
 <wsdl:port name="WSHttpBinding_ICalculator" binding="tns:WSHttpBinding_ICalculator">
   <soap12:address location="http://localhost:8887/Calculator" />
   <wsa10:EndpointReference>
    <wsa10:Address>http://localhost:8887/Calculator</wsa10:Addres s>
   <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity&q uot;>
     <Upn>TerryLee-PC\TerryLee</Upn>
   </Identity>
  </wsa10:EndpointReference>
 </wsdl:port>
</wsdl:service>

自定義尋址 報頭

在本文的終結點定義一節,我們提到了尋址報頭,在某些情況下,我們 可能希望通過自定義尋址報頭來解決一些復雜的問題,如根據根據傳入的尋址報 頭中是否包含某些信息,將其轉發到不同的終結點,通過自定義尋址報頭,可以 實現SOAP消息的無限擴展,放置任何希望的控制信息到SOAP消息。如下面的代碼 :

using (ServiceHost calculatorServiceHost =
  new ServiceHost(typeof(CalculatorService),
  new Uri ("http://localhost:8887/CalculatorService")))
{
   calculatorServiceHost.Opened += delegate
  {
     Console.WriteLine("Service begin to listen via the Address:{0} ",
      calculatorServiceHost.BaseAddresses [0].ToString());
  };
  AddressHeader header =
     AddressHeader.CreateAddressHeader("basic",
     "http://www.cnblogs.com/terrylee", "Terrylee");
  EndpointAddress ea = new EndpointAddress(
    new Uri ("http://localhost:8887/CalculatorService"), header);
  calculatorServiceHost.Description.Endpoints.Add(
    new ServiceEndpoint(
      ContractDescription.GetContract (typeof(ICalculator)),
      new WSHttpBinding(),
       ea));
  ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();
  behavior.HttpGetEnabled = true;
  calculatorServiceHost.Description.Behaviors.Add(behavior);
  calculatorServiceHost.Open();
  Console.Read();
}

我們在WSDL中可以看到該自定義的報頭,它作為終結點引用的引用參 數:

<wsdl:service name="CalculatorService">
 <wsdl:port name="WSHttpBinding_ICalculator" binding="tns:WSHttpBinding_ICalculator">
   <soap12:address location="http://localhost:8887/CalculatorService" />
  <wsa10:EndpointReference>
    <wsa10:Address>http://localhost:8887/CalculatorService</wsa10 :Address>
   <wsa10:ReferenceParameters>
     <basic xmlns="http://www.cnblogs.com/terrylee">Terrylee</basi c>
   </wsa10:ReferenceParameters>
    <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity&q uot;>
     <Upn>TerryLee-PC\TerryLee</Upn>
   </Identity>
  </wsa10:EndpointReference>
 </wsdl:port>
</wsdl:service>

截獲到SOAP 消息可以看到,在消息報頭中添加了basic這樣的信息,如下代碼所示:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
 <s:Header>
  <basic xmlns="http://www.cnblogs.com/terrylee">Terrylee</basi c>
  <To s:mustUnderstand="1">http://localhost:8887/CalculatorServ ice</To>
  <Action s:mustUnderstand="1">http://tempuri.org/ICalculator/Add&l t;/Action>
 </s:Header>
 <s:Body>
   <Add xmlns="http://tempuri.org/">
    <x>1</x>
   <y>2</y>
   </Add>
 </s:Body>
</s:Envelope>

當然我們也可以通過配置的方式來自定義尋址報頭,如下代碼所示:

<service name="TerryLee.WCFAddressing.Service.CalculatorService"
     behaviorConfiguration="calculatorBehavior">
 <host>
  <baseAddresses>
   <add baseAddress="http://localhost:8887/Calculator"/>
   </baseAddresses>
 </host>
 <endpoint address=""
      binding ="wsHttpBinding"
       contract="TerryLee.WCFAddressing.Contract.ICalculator">  <headers>
   <basic xmlns="http://www.cnblogs.com/terrylee">Terrylee</basi c>
  </headers>
 </endpoint>
</service>
結束語

本文相對於WCF專題系列(1):深入WCF 尋址Part1來說,注重於實際的使用,介紹了指定終結點地址、元數據中的終結 點地址、自定義消尋址報頭等,在下一篇中,我們將繼續深入WCF尋址,探討消 息篩選器等問題。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved