WCF技術剖析之二十九:換種不同的方式呼叫WCF服務[提供原始碼下載]

weixin_33858249發表於2017-10-27

我們有兩種典型的WCF呼叫方式:通過SvcUtil.exe(或者新增Web引用)匯入釋出的服務後設資料生成服務代理相關的程式碼和配置;通過ChannelFactory<TChannel>建立服務代理物件。在這篇文章中,我們採用一種獨特的方式進行服務的呼叫。從本質上講,我們只要能夠建立於服務端相匹配的終結點,就能夠實現正常的服務呼叫。在WCF客戶端後設資料架構體系中,利用MetadataExchangeClient可以獲取服務的後設資料,而利用MetadataImporter將獲取的後設資料匯入成ServiceEndpoint物件。在本例中,我們將利用這兩個元件定義了一個獨特的服務呼叫的簡單的例子,相信可以幫助讀者進一步加深對WCF後設資料框架體系的理解。 (Source從這裡下載)

我們依然採用我們熟悉的計算服務的例子,下面是該服務相應的服務契約、服務型別的定義和寄宿該服務採用的配置。

   1: using System.ServiceModel;
   2: namespace Artech.ServiceInvocationViaMetadata.Contracts
   3: {
   4:     [ServiceContract(Namespace = "http://www.artech.com/")]
   5:     public interface ICalculator
   6:     {
   7:         [OperationContract]
   8:         double Add(double x, double y);
   9:     }
  10: }

服務型別:

   1: using System.ServiceModel;
   2: using Artech.ServiceInvocationViaMetadata.Contracts;
   3:  
   4: namespace Artech.ServiceInvocationViaMetadata.Services
   5: {
   6:     public class CalculatorService : ICalculator
   7:     {
   8:         public double Add(double x, double y)
   9:         {
  10:             return x + y;
  11:         }
  12:     }
  13: }

配置:

   1: <?xml version="1.0" encoding="utf-8" ?>
   2: <configuration>
   3:     <system.serviceModel>
   4:         <behaviors>
   5:             <serviceBehaviors>
   6:                 <behavior name="mexBehavior">
   7:                     <serviceMetadata />
   8:                 </behavior>
   9:             </serviceBehaviors>
  10:         </behaviors>
  11:         <services>
  12:             <service behaviorConfiguration="mexBehavior" name="Artech.ServiceInvocationViaMetadata.Services.CalculatorService">
  13:                 <endpoint address="http://127.0.0.1:3721/calculatorservice" binding="ws2007HttpBinding" contract="Artech.ServiceInvocationViaMetadata.Contracts.ICalculator" />
  14:                 <endpoint address="http://127.0.0.1:3721/calculatorservice/mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  15:             </service>
  16:         </services>
  17:     </system.serviceModel>
  18: </configuration>

從上面的配置我們可以看到,服務的後設資料通過WS-MEX模式釋出出來,釋出的地址和採用的MEX繫結分別為:http://127.0.0.1:3721/calculatorservice/mex和mexHttpBinding。

接下來,我們就可以通過下面的方式對該服務進行呼叫了。我們先建立MetadataExchangeClient物件並利用它獲取包含後設資料的MetadataSet物件,並利用該物件建立WsdlImporter物件。接下來,我們將基於ICalculator介面的服務契約新增到該WsdlImporter的已知契約列表中,呼叫ImportAllEndpoints方法得到匯入的ServiceEndpoint列表。最後根據匯出的ServiceEndpoint物件建立ChannelFactory<ICalculator>物件,並建立服務代理進行服務呼叫。

   1: sing System;
   2: using System.ServiceModel;
   3: using System.ServiceModel.Description;
   4: using System.Xml;
   5: using Artech.ServiceInvocationViaMetadata.Contracts;
   6: namespace Artech.ServiceInvocationViaMetadata.Client
   7: {
   8:     class Program
   9:     {
  10:         static void Main(string[] args)
  11:         {
  12:             MetadataExchangeClient metadataExchangeClient = new MetadataExchangeClient(MetadataExchangeBindings.CreateMexHttpBinding());
  13:             MetadataSet metadata = metadataExchangeClient.GetMetadata(new EndpointAddress("http://127.0.0.1:3721/calculatorservice/mex"));
  14:             WsdlImporter wsdlImporter = new WsdlImporter(metadata);
  15:             //新增已知契約型別
  16:             ContractDescription contract = ContractDescription.GetContract(typeof(ICalculator));
  17:             wsdlImporter.KnownContracts.Add(new XmlQualifiedName(contract.Name, contract.Namespace), contract);
  18:             ServiceEndpointCollection endpoints = wsdlImporter.ImportAllEndpoints();
  19:             using (ChannelFactory<ICalculator> channelFactory = new ChannelFactory<ICalculator>(endpoints[0]))
  20:             {
  21:                 ICalculator calculator = channelFactory.CreateChannel();
  22:                 using (calculator as IDisposable)
  23:                 {
  24:                     try
  25:                     {
  26:                         Console.WriteLine("x + y = {2} when x = {0} and y = {1}", 1, 2, calculator.Add(1, 2));
  27:                     }
  28:                     catch(TimeoutException)
  29:                     {
  30:                         (calculator as ICommunicationObject).Abort();
  31:                         throw;
  32:                     }
  33:                     catch(CommunicationException)
  34:                     {
  35:                         (calculator as ICommunicationObject).Abort();
  36:                         throw;
  37:                     }
  38:                 }
  39:             }
  40:             Console.Read();
  41:         }
  42:     }
  43: }

作者:蔣金楠
微信公眾賬號:大內老A
微博:www.weibo.com/artech
如果你想及時得到個人撰寫文章以及著作的訊息推送,或者想看看個人推薦的技術資料,可以掃描左邊二維碼(或者長按識別二維碼)關注個人公眾號(原來公眾帳號蔣金楠的自媒體將會停用)。
本文版權歸作者和部落格園共有,歡迎轉載,但未經作者同意必須保留此段宣告,且在文章頁面明顯位置給出原文連線,否則保留追究法律責任的權利。

相關文章