配置WCF

出處:http://blog.csdn.net/fangxing80/article/details/6106228 前面一篇文章《WCF 學習總結1 -- 簡單實例》一古腦兒展現了幾種WCF部署方式,其中配置文件(App.config/Web.config)都是IDE自動生成,省去了咱們很多功夫。如今回過頭來看看IDE提供的Wcf Service Library項目模板中的默認服務端配置文件——App.config裏面究竟有什麼祕密。 服務端的配置文件主要是對services、bindings、behaviors的配置。在默認的App.config中,使用的是WCF Framework定義好的wsHttpBinding默認配置,因此看不到binding配置節。 appconfig_overview 配置節展開以下圖:appconfig_comment BTW: "元數據端點」經過WS-MetadataExchange幫咱們實現了對服務的描述,提供了WSDL,啓動Host以後咱們能夠經過 http://localhost:8732/Design_Time_Addresses/WcfServiceLib/Service1/?wsdl 查看到公開的服務描述。 配置節展開以下圖:appconfig_comment_1 關於WCF中的地址和綁定,須要補充一下。 WCF中支持的傳輸協議包括HTTP、TCP、Peer network(對等網)、IPC(基於命名管道的內部進程通訊)以及MSMQ(微軟消息隊列),每一個協議對應一個地址類型: HTTP地址:http://localhost:8080/ TCP地址: net.tcp://localhost:8080/ IPC地址: net.pipe://localhost/ (適用於跨進程,不能使用於不一樣機器間) MSMQ地址: net.msmq://localhost/ 對等網地址: net.p2p://localhost/ WCF中提供的綁定有: BasicHttpBinding: 最簡單的綁定類型,一般用於 Web Services。使用 HTTP 協議,Text/XML 編碼方式。 WSHttpBinding: 比 BasicHttpBinding 更加安全,一般用於 non-duplex 服務通信。 WSDualHttpBinding: 和 WSHttpBinding 相比,它支持 duplex 類型的服務。 WSFederationHttpBinding: 支持 WS-Federation 安全通信協議。 NetTcpBinding: 效率最高,安全的跨機器通信方式。 NetNamedPipeBinding: 安全、可靠、高效的單機服務通信方式。 NetMsmqBinding: 使用消息隊列在不一樣機器間進行通信。 NetPeerTcpBinding: 使用 P2P 協議在多機器間通信。 MsmqIntegrationBinding: 使用現有的消息隊列系統進行跨機器通信。如 MSMQ。 ------ 弱弱的分隔線 ----- OK,有了上面的基礎,就讓WCF風暴來的猛烈些吧。作一個多服務,多端點的示例。 sample_overview 1.WcfServiceLib 代碼: [c-sharp] view plaincopy [ServiceContract] public interface IService { [OperationContract] string GetMessage(); } public class Service1 : IService { public string GetMessage() { var address = OperationContext.Current.Channel.LocalAddress.ToString(); return string.Format("From Server1: Hello Client at [{0}]", address); } } public class Service2 : IService { public string GetMessage() { var address = OperationContext.Current.Channel.LocalAddress.ToString(); return string.Format("來自 Service2: 好 Client at [{0}]", address); } } 2.WcfConsoleHost 代碼: [c-sharp] view plaincopy static void Main(string[] args) { ServiceHost host1 = new ServiceHost(typeof(WcfServiceLib.Service1)); host1.Open(); Console.WriteLine("Server1 Opened!"); ServiceHost host2 = new ServiceHost(typeof(WcfServiceLib.Service2)); host2.Open(); Console.WriteLine("Server2 Opened!"); Console.Read(); } 3.服務端配置文件: [xhtml] view plaincopy 4. 啓動Host,在Client工程中添加Service Reference 由於有兩個Service,因此要添加兩次。 (1) WcfSvc1(Url:http://localhost:9999/WcfStudy3/Service1) client_1 (2) WcfSvc2(Url:http://localhost:9999/WcfStudy3/Service2) 圖略 5. 客戶端配置文件: 配置節中,生成了4個Endpoint,分別對應服務端的4個Endpoint。經過 name屬性區別。 [xhtml] view plaincopy 6. 客戶端代碼: [c-sharp] view plaincopy static void Main(string[] args) { Console.WriteLine("------------"); WcfSvc1.ServiceClient client1_1 = new WcfSvc1.ServiceClient("WSHttpBinding_IService"); Console.WriteLine(client1_1.GetMessage()); Console.WriteLine("------------"); WcfSvc1.ServiceClient client1_2 = new WcfSvc1.ServiceClient("MetadataExchangeTcpBinding_IService"); Console.WriteLine(client1_2.GetMessage()); Console.WriteLine("------------"); WcfSvc2.ServiceClient client2_1 = new WcfSvc2.ServiceClient("WSHttpBinding_IService1"); Console.WriteLine(client2_1.GetMessage()); Console.WriteLine("------------"); WcfSvc2.ServiceClient client2_2 = new WcfSvc2.ServiceClient("MetadataExchangeTcpBinding_IService1"); Console.WriteLine(client2_2.GetMessage()); Console.Read(); } 7.運行結果: result 有人會問,那麼生成完的配置文件都要一個個手動修改嗎?答案固然不是,VS已經爲咱們準備了WCF配置工具:IDE > Tools > WCF Service Configuration Editor 。 關於工具的使用,你們能夠看這裏: http://www.rainsts.net/article.asp?id=441 上面的示例代碼,請猛擊這裏下載。
相關文章
相關標籤/搜索