日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

WCF 动态调用(1)

發布時間:2024/6/21 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。