WCF如何绑定netTcpBinding寄宿到控制台应用程序详解

 更新时间:2019年07月12日 14:44:53   作者:felixnet  
这篇文章主要给大家介绍了关于WCF如何绑定netTcpBinding寄宿到控制台应用程序的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用WCF具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧

契约

新建一个WCF服务类库项目,在其中添加两个WCF服务: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.");
 }
}

服务端

新建一个控制台应用程序,添加一个类 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监听已启动!{0}", _host.Description.Endpoints[0].Address);
  };
  _host.Closed += (s, a) =>
  {
   Console.WriteLine("WCF服务已终止!{0}", _host.Description.Endpoints[0].Name);
  };   
 }
 public void Start()
 {
  Console.WriteLine("正在开启WCF服务...{0}", _host.Description.Endpoints[0].Name);
  _host.Open();
 }
 public void Stop()
 {
  if (_host != null && _host.State == CommunicationState.Opened)
  {
   Console.WriteLine("正在关闭WCF服务...{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主机

class Program
 {
  static Program()
  {
   Console.WriteLine("初始化...");
   Console.WriteLine("服务运行期间,请不要关闭窗口。");
   Console.WriteLine();
  }

  static void Main(string[] args)
  {
   Console.Title = "WCF主机 x64.(按 [Esc] 键停止服务)";
   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();
  }
 }

服务端配置

在控制台应用程序的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>

未避免元数据泄露,部署时将HttpGetEnable设为False

运行控制台应用程序

按[ESC]键终止服务

客户端测试

服务端运行后,用wcftestclient工具测试,服务地址即behavior中配置的元数据GET地址

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

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

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。

相关文章

  • .NET使用Collections.Pooled提升性能优化的方法

    .NET使用Collections.Pooled提升性能优化的方法

    这篇文章主要介绍了.NET使用Collections.Pooled性能优化的方法,今天要给大家分享类库Collections.Pooled,它是通过池化内存来达到降低内存占用和GC的目的,另外也会带大家看看源码,为什么它会带来这些性能提升,一起通过本文学习下吧
    2022-05-05
  • .Net中如何操作IIS的虚拟目录原理分析及实现方案

    .Net中如何操作IIS的虚拟目录原理分析及实现方案

    编程控制IIS实际上很简单,和ASP一样,.Net中需要使用ADSI来操作IIS,但是此时我们不再需要GetObject这个东东了,因为Net为我们提供了更加强大功能的新东东
    2012-12-12
  • ASP.NET学习路线(详细)

    ASP.NET学习路线(详细)

    本文介绍的是ASP.NET的学习顺序的问题,主要针对初学者,希望对你有帮助,一起来看。
    2015-10-10
  • 自动类型安全的REST.NET标准库refit

    自动类型安全的REST.NET标准库refit

    这篇文章介绍了自动类型安全的REST.NET标准库refit,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-04-04
  • 简单了解.NET Framework

    简单了解.NET Framework

    这篇文章主要介绍了.NET Framework的相关资料,文中讲解非常细致,帮助大家更好的学习.NET Framework,有意向想学习.NET Framework的朋友可以了解下
    2020-07-07
  • 加密web.config的方法分享

    加密web.config的方法分享

    加密web.config的方法分享,需要的朋友可以参考一下
    2013-03-03
  • 在ASP.NET2.0中通过Gmail发送邮件的代码

    在ASP.NET2.0中通过Gmail发送邮件的代码

    我们有时候需要发送邮件给访问网页的用户,例如,注册的时候,发一确认信什么的。那么,在ASP.NET2.0中该如果操作呢?
    2008-06-06
  • .NET 6新特性试用之TryGetNonEnumeratedCount 方法

    .NET 6新特性试用之TryGetNonEnumeratedCount 方法

    这篇文章主要介绍了.NET 6新特性试用TryGetNonEnumeratedCount,这个方法可计算可枚举类型的元素总数,下面来看看具体的使用方式吧,需要的朋友可以参考一下
    2022-03-03
  • .net验证码的刷新或局部刷新的方法实例

    .net验证码的刷新或局部刷新的方法实例

    .net验证码的刷新或局部刷新的方法实例,下面是实例,需要的朋友可以参考一下
    2013-03-03
  • 一篇文章教你如何排查.NET内存泄漏

    一篇文章教你如何排查.NET内存泄漏

    这篇文章主要给大家介绍了如何通过一篇文章教你排查 .NET 内存泄漏的相关资料,.NET内存泄漏,更准确的说应该是对象超过生命周期而不能被GC回收,本文通过示例代码介绍的非常详细,需要的朋友可以参考下
    2021-09-09

最新评论