WCF 动态调用(1)
生活随笔
收集整理的這篇文章主要介紹了
WCF 动态调用(1)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
很多時候,服務地址都不止一個的,這個時候就要動態去配置地址。配置Web.config,很麻煩
下面就看看怎樣實現動態調用WCF。
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ServiceModel; using System.ServiceModel.Channels;/// <summary> /// 動態調用WCF的工具類庫 /// </summary> public class InvokeContext {#region Wcf服務工廠public static T CreateWCFServiceByURL<T>(string url){return CreateWCFServiceByURL<T>(url, "wsHttpBinding");}public static T CreateWCFServiceByURL<T>(string url, string bing){if (string.IsNullOrEmpty(url)) throw new NotSupportedException("this url isn`t Null or Empty!");EndpointAddress address = new EndpointAddress(url);Binding binding = CreateBinding(bing);ChannelFactory<T> factory = new ChannelFactory<T>(binding, address);return factory.CreateChannel();}#endregion#region 創建傳輸協議/// <summary>/// 創建傳輸協議/// </summary>/// <param name="binding">傳輸協議名稱</param>/// <returns></returns>private static Binding CreateBinding(string binding){Binding bindinginstance = null;if (binding.ToLower() == "basichttpbinding"){BasicHttpBinding ws = new BasicHttpBinding();ws.MaxBufferSize = 2147483647;ws.MaxBufferPoolSize = 2147483647;ws.MaxReceivedMessageSize = 2147483647;ws.ReaderQuotas.MaxStringContentLength = 2147483647;ws.CloseTimeout = new TimeSpan(0, 10, 0);ws.OpenTimeout = new TimeSpan(0, 10, 0);ws.ReceiveTimeout = new TimeSpan(0, 10, 0);ws.SendTimeout = new TimeSpan(0, 10, 0);bindinginstance = ws;}else if (binding.ToLower() == "netnamedpipebinding"){NetNamedPipeBinding ws = new NetNamedPipeBinding();ws.MaxReceivedMessageSize = 65535000;bindinginstance = ws;}else if (binding.ToLower() == "netpeertcpbinding"){NetPeerTcpBinding ws = new NetPeerTcpBinding();ws.MaxReceivedMessageSize = 65535000;bindinginstance = ws;}else if (binding.ToLower() == "nettcpbinding"){NetTcpBinding ws = new NetTcpBinding();ws.MaxReceivedMessageSize = 65535000;ws.Security.Mode = SecurityMode.None;bindinginstance = ws;}else if (binding.ToLower() == "wsdualhttpbinding"){WSDualHttpBinding ws = new WSDualHttpBinding();ws.MaxReceivedMessageSize = 65535000;bindinginstance = ws;}else if (binding.ToLower() == "webhttpbinding"){//WebHttpBinding ws = new WebHttpBinding();//ws.MaxReceivedMessageSize = 65535000;//bindinginstance = ws; }else if (binding.ToLower() == "wsfederationhttpbinding"){WSFederationHttpBinding ws = new WSFederationHttpBinding();ws.MaxReceivedMessageSize = 65535000;bindinginstance = ws;}else if (binding.ToLower() == "wshttpbinding"){WSHttpBinding ws = new WSHttpBinding(SecurityMode.None);ws.MaxReceivedMessageSize = 65535000;ws.Security.Message.ClientCredentialType = System.ServiceModel.MessageCredentialType.Windows;ws.Security.Transport.ClientCredentialType = System.ServiceModel.HttpClientCredentialType.Windows;bindinginstance = ws;}return bindinginstance;}#endregion} IWCFserver 是通過?svcutil.exe http://localhost:8034/WCFserver.svc?wsdl IWCFserver dpser = InvokeContext.CreateWCFServiceByURL<IWCFserver>(Public.getXmlElementValue("LocalDpPathologySliceServ"), "basicHttpBinding");
?
轉載于:https://www.cnblogs.com/rinack/p/5675792.html
總結
以上是生活随笔為你收集整理的WCF 动态调用(1)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 轻松学习正则表达式
- 下一篇: 关于网络流sap算法