最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WCF如何綁定netTcpBinding寄宿到控制臺(tái)應(yīng)用程序詳解

 更新時(shí)間:2019年07月12日 14:44:53   作者:felixnet  
這篇文章主要給大家介紹了關(guān)于WCF如何綁定netTcpBinding寄宿到控制臺(tái)應(yīng)用程序的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用WCF具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧

契約

新建一個(gè)WCF服務(wù)類庫項(xiàng)目,在其中添加兩個(gè)WCF服務(wù):GameService,PlayerService

代碼如下:

[ServiceContract]
public interface IGameService
{
 [OperationContract]
 Task<string> DoWork(string arg);
}
public class GameService : IGameService
{
 public async Task<string> DoWork(string arg)
 {
  return await Task.FromResult($"Hello {arg}, I am the GameService.");
 }
}
[ServiceContract]
public interface IPlayerService
{
 [OperationContract]
 Task<string> DoWork(string arg);
}
public class PlayerService : IPlayerService
{
 public async Task<string> DoWork(string arg)
 {
  return await Task.FromResult($"Hello {arg}, I am the PlayerService.");
 }
}

服務(wù)端

新建一個(gè)控制臺(tái)應(yīng)用程序,添加一個(gè)類 ServiceHostManager

public interface IServiceHostManager : IDisposable
{
 void Start();
 void Stop();
}

public class ServiceHostManager<TService> : IServiceHostManager
 where TService : class
{
 ServiceHost _host;

 public ServiceHostManager()
 {
  _host = new ServiceHost(typeof(TService));
  _host.Opened += (s, a) => {
   Console.WriteLine("WCF監(jiān)聽已啟動(dòng)!{0}", _host.Description.Endpoints[0].Address);
  };
  _host.Closed += (s, a) =>
  {
   Console.WriteLine("WCF服務(wù)已終止!{0}", _host.Description.Endpoints[0].Name);
  };   
 }
 public void Start()
 {
  Console.WriteLine("正在開啟WCF服務(wù)...{0}", _host.Description.Endpoints[0].Name);
  _host.Open();
 }
 public void Stop()
 {
  if (_host != null && _host.State == CommunicationState.Opened)
  {
   Console.WriteLine("正在關(guān)閉WCF服務(wù)...{0}", _host.Description.Endpoints[0].Name);
   _host.Close();
  }
 }
 public void Dispose()
 {
  Stop();
 }

 public static Task StartNew(CancellationTokenSource cancelTokenSource)
 {
  var theTask = Task.Factory.StartNew(() =>
  {
   IServiceHostManager shs = null;
   try
   {
    shs = new ServiceHostManager<TService>();
    shs.Start();
    while (true)
    {
     if (cancelTokenSource.IsCancellationRequested && shs != null)
     {
      shs.Stop();
      break;
     }
    }
   }
   catch (Exception ex)
   {
    Console.WriteLine(ex);
    if (shs != null)
     shs.Stop();
   }
  }, cancelTokenSource.Token);

  return theTask;
 }
}

在Main方法中啟動(dòng)WCF主機(jī)

class Program
 {
  static Program()
  {
   Console.WriteLine("初始化...");
   Console.WriteLine("服務(wù)運(yùn)行期間,請(qǐng)不要關(guān)閉窗口。");
   Console.WriteLine();
  }

  static void Main(string[] args)
  {
   Console.Title = "WCF主機(jī) x64.(按 [Esc] 鍵停止服務(wù))";
   var cancelTokenSource = new CancellationTokenSource();
   ServiceHostManager<WcfContract.Services.GameService>.StartNew(cancelTokenSource);
   ServiceHostManager<WcfContract.Services.PlayerService>.StartNew(cancelTokenSource);
   while (true)
   {
    if (Console.ReadKey().Key == ConsoleKey.Escape)
    {
     Console.WriteLine();
     cancelTokenSource.Cancel();
     break;
    }
   }
   Console.ReadLine();
  }
 }

服務(wù)端配置

在控制臺(tái)應(yīng)用程序的App.config中配置system.serviceModel

<system.serviceModel>
 <services>
  <service name="Wettery.WcfContract.Services.GameService" behaviorConfiguration="gameMetadataBehavior">
  <endpoint address="net.tcp://localhost:19998/Wettery/GameService" binding="netTcpBinding" contract="Wettery.WcfContract.Services.IGameService" bindingConfiguration="netTcpBindingConfig">
   <identity>
   <dns value="localhost" />
   </identity>
  </endpoint>
  </service>
  <service name="Wettery.WcfContract.Services.PlayerService" behaviorConfiguration="playerMetadataBehavior">
  <endpoint address="net.tcp://localhost:19998/Wettery/PlayerService" binding="netTcpBinding" contract="Wettery.WcfContract.Services.IPlayerService" bindingConfiguration="netTcpBindingConfig">
   <identity>
   <dns value="localhost" />
   </identity>
  </endpoint>
  </service>
 </services>
 <bindings>
  <netTcpBinding>
  <binding name="netTcpBindingConfig" closeTimeout="00:30:00" openTimeout="00:30:00" receiveTimeout="00:30:00" sendTimeout="00:30:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="100" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="100" maxReceivedMessageSize="2147483647">
   <readerQuotas maxDepth="64" maxStringContentLength="2147483647" maxArrayLength="2147483647 " maxBytesPerRead="4096" maxNameTableCharCount="16384" />
   <reliableSession ordered="true" inactivityTimeout="00:30:00" enabled="false" />
   <security mode="Transport">
   <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
   </security>
  </binding>
  </netTcpBinding>
 </bindings>
 <behaviors>
  <serviceBehaviors>
  <behavior name="gameMetadataBehavior">
   <serviceMetadata httpGetEnabled="True" httpGetUrl="http://localhost:8081/Wettery/GameService/MetaData" />
   <serviceDebug includeExceptionDetailInFaults="True" />
   <serviceThrottling maxConcurrentCalls="1000" maxConcurrentInstances="1000" maxConcurrentSessions="1000" />
  </behavior>
  <behavior name="playerMetadataBehavior">
   <serviceMetadata httpGetEnabled="True" httpGetUrl="http://localhost:8081/Wettery/PlayerService/MetaData" />
   <serviceDebug includeExceptionDetailInFaults="True" />
   <serviceThrottling maxConcurrentCalls="1000" maxConcurrentInstances="1000" maxConcurrentSessions="1000" />
  </behavior>
  </serviceBehaviors>
 </behaviors>
 </system.serviceModel>

未避免元數(shù)據(jù)泄露,部署時(shí)將HttpGetEnable設(shè)為False

運(yùn)行控制臺(tái)應(yīng)用程序

按[ESC]鍵終止服務(wù)

客戶端測試

服務(wù)端運(yùn)行后,用wcftestclient工具測試,服務(wù)地址即behavior中配置的元數(shù)據(jù)GET地址

http://localhost:8081/Wettery/GameService/MetaData

http://localhost:8081/Wettery/PlayerService/MetaData

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。

相關(guān)文章

  • .NET使用Collections.Pooled提升性能優(yōu)化的方法

    .NET使用Collections.Pooled提升性能優(yōu)化的方法

    這篇文章主要介紹了.NET使用Collections.Pooled性能優(yōu)化的方法,今天要給大家分享類庫Collections.Pooled,它是通過池化內(nèi)存來達(dá)到降低內(nèi)存占用和GC的目的,另外也會(huì)帶大家看看源碼,為什么它會(huì)帶來這些性能提升,一起通過本文學(xué)習(xí)下吧
    2022-05-05
  • .Net中如何操作IIS的虛擬目錄原理分析及實(shí)現(xiàn)方案

    .Net中如何操作IIS的虛擬目錄原理分析及實(shí)現(xiàn)方案

    編程控制IIS實(shí)際上很簡單,和ASP一樣,.Net中需要使用ADSI來操作IIS,但是此時(shí)我們不再需要GetObject這個(gè)東東了,因?yàn)镹et為我們提供了更加強(qiáng)大功能的新東東
    2012-12-12
  • ASP.NET學(xué)習(xí)路線(詳細(xì))

    ASP.NET學(xué)習(xí)路線(詳細(xì))

    本文介紹的是ASP.NET的學(xué)習(xí)順序的問題,主要針對(duì)初學(xué)者,希望對(duì)你有幫助,一起來看。
    2015-10-10
  • 自動(dòng)類型安全的REST.NET標(biāo)準(zhǔn)庫refit

    自動(dòng)類型安全的REST.NET標(biāo)準(zhǔn)庫refit

    這篇文章介紹了自動(dòng)類型安全的REST.NET標(biāo)準(zhǔn)庫refit,文中通過示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-04-04
  • 簡單了解.NET Framework

    簡單了解.NET Framework

    這篇文章主要介紹了.NET Framework的相關(guān)資料,文中講解非常細(xì)致,幫助大家更好的學(xué)習(xí).NET Framework,有意向想學(xué)習(xí).NET Framework的朋友可以了解下
    2020-07-07
  • 加密web.config的方法分享

    加密web.config的方法分享

    加密web.config的方法分享,需要的朋友可以參考一下
    2013-03-03
  • 在ASP.NET2.0中通過Gmail發(fā)送郵件的代碼

    在ASP.NET2.0中通過Gmail發(fā)送郵件的代碼

    我們有時(shí)候需要發(fā)送郵件給訪問網(wǎng)頁的用戶,例如,注冊(cè)的時(shí)候,發(fā)一確認(rèn)信什么的。那么,在ASP.NET2.0中該如果操作呢?
    2008-06-06
  • .NET?6新特性試用之TryGetNonEnumeratedCount?方法

    .NET?6新特性試用之TryGetNonEnumeratedCount?方法

    這篇文章主要介紹了.NET?6新特性試用TryGetNonEnumeratedCount,這個(gè)方法可計(jì)算可枚舉類型的元素總數(shù),下面來看看具體的使用方式吧,需要的朋友可以參考一下
    2022-03-03
  • .net驗(yàn)證碼的刷新或局部刷新的方法實(shí)例

    .net驗(yàn)證碼的刷新或局部刷新的方法實(shí)例

    .net驗(yàn)證碼的刷新或局部刷新的方法實(shí)例,下面是實(shí)例,需要的朋友可以參考一下
    2013-03-03
  • 一篇文章教你如何排查.NET內(nèi)存泄漏

    一篇文章教你如何排查.NET內(nèi)存泄漏

    這篇文章主要給大家介紹了如何通過一篇文章教你排查 .NET 內(nèi)存泄漏的相關(guān)資料,.NET內(nèi)存泄漏,更準(zhǔn)確的說應(yīng)該是對(duì)象超過生命周期而不能被GC回收,本文通過示例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2021-09-09

最新評(píng)論

安阳市| 浠水县| 闽清县| 黄山市| 武威市| 泊头市| 南涧| 柯坪县| 镇雄县| 酒泉市| 安康市| 甘洛县| 潢川县| 乌拉特后旗| 大余县| 永康市| 安泽县| 米易县| 广宁县| 凤台县| 灵寿县| 仙桃市| 延寿县| 文水县| 定结县| 吴川市| 和林格尔县| 成安县| 监利县| 玛多县| 修武县| 疏勒县| 金华市| 雅安市| 兴国县| 会泽县| 高碑店市| 攀枝花市| 宁武县| 永嘉县| 汨罗市|