欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2019年07月12日 14:44:53   作者:felixnet  
這篇文章主要給大家介紹了關(guān)于WCF如何綁定netTcpBinding寄宿到控制臺應(yīng)用程序的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(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è)控制臺應(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)聽已啟動!{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方法中啟動WCF主機(jī)

class Program
 {
  static Program()
  {
   Console.WriteLine("初始化...");
   Console.WriteLine("服務(wù)運(yùn)行期間,請不要關(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ù)端配置

在控制臺應(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)行控制臺應(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)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。

相關(guān)文章

  • ASP.NET Lable中進(jìn)行換行解決方案

    ASP.NET Lable中進(jìn)行換行解決方案

    這個(gè)問題,應(yīng)該算是很簡單的問題,可說實(shí)在的,折騰了2個(gè)小時(shí)的時(shí)候,后面整出來的時(shí)候,現(xiàn)在把這個(gè)過程給大家,希望可以給大家一個(gè)提醒
    2012-12-12
  • ASP.NET Core中如何利用Csp標(biāo)頭對抗Xss攻擊

    ASP.NET Core中如何利用Csp標(biāo)頭對抗Xss攻擊

    這篇文章主要給大家介紹了關(guān)于ASP.NET Core中如何利用Csp標(biāo)頭對抗Xss攻擊的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用ASP.NET Core具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-09-09
  • asp.net下將圖片保存到XML文件的方法

    asp.net下將圖片保存到XML文件的方法

    asp.net 將圖片保存到XML文件的方法,其實(shí)在實(shí)際應(yīng)用中,不建議這么做。
    2009-12-12
  • 如何在網(wǎng)站級別動態(tài)更改主題

    如何在網(wǎng)站級別動態(tài)更改主題

    如何在網(wǎng)站級別動態(tài)更改主題...
    2007-04-04
  • ASP.NET?Core?MVC中Tag?Helpers用法介紹

    ASP.NET?Core?MVC中Tag?Helpers用法介紹

    這篇文章介紹了ASP.NET?Core?MVC中Tag?Helpers的用法,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-02-02
  • asp.net FreeTextBox配置詳解

    asp.net FreeTextBox配置詳解

    FreeTextBox 是一個(gè)開源的服務(wù)器控件。我們可以輕松地將其嵌入到 Web Forms 中實(shí)現(xiàn)HTML內(nèi)容的在線編輯。
    2009-11-11
  • .NET中用ICSharpCode.TextEditor自定義代碼折疊與高亮

    .NET中用ICSharpCode.TextEditor自定義代碼折疊與高亮

    這篇文章主要給大家介紹了.NET中用ICSharpCode.TextEditor自定義代碼折疊與高亮的相關(guān)資料,文中通過示例代碼與圖片介紹的很詳細(xì),需要的朋友可以參考借鑒,下面來一起看看吧。
    2017-02-02
  • .NET實(shí)現(xiàn)魔方游戲(一)之任意階魔方的表示

    .NET實(shí)現(xiàn)魔方游戲(一)之任意階魔方的表示

    這篇文章主要介紹了.NET實(shí)現(xiàn)魔方游戲(一)之任意階魔方的表示 的相關(guān)資料,需要的朋友可以參考下
    2016-02-02
  • 作業(yè)調(diào)度框架Quartz.net用法詳解

    作業(yè)調(diào)度框架Quartz.net用法詳解

    本文詳細(xì)講解了作業(yè)調(diào)度框架Quartz.net的用法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-06-06
  • asp.net字符串處理類代碼

    asp.net字符串處理類代碼

    asp.net字符串處理類代碼,需要的朋友可以參考下
    2012-06-06

最新評論