.NET Remoting TCPChannel模拟.NET Core

时间:2018-04-01 12:00:10

标签: c# .net core remoting tcpchannel

由于.NET Remoting已从.NET Core框架中删除,我尝试使用NetTcpBinding from the WCF library,但它未包含在.NET Core中。

我可以使用其他类似的TCPChannel吗?

2 个答案:

答案 0 :(得分:3)

我会尝试采用不同的RPC框架 - 理想情况下是一个与平台无关的框架而不是与.NET紧密耦合的框架。

有很多选择。就在我的头顶:

  • 您可以使用ASP.NET Core实现Web API,可能(但不一定)使用JSON有效负载。
  • 您可以使用gRPC,可能(但不一定)使用Protocol Buffers作为有效负载
  • 您可以使用Thrift

这些只是示例 - 有大量可用的RPC和RPC类框架。这些都不像使用远程处理那样“透明”,但是:

  • 当您进行网络通话时,它们会更加清晰
  • 他们将允许您更轻松地在服务版本之间发展
  • 他们允许您为服务器和客户端使用混合平台 - 您现在可能不需要 ,但有利于面向未来

答案 1 :(得分:0)

如果您有一个基于 .NET Remoting 的大型代码库,那么切换到 WebAPI 或 gRPC 可能会导致您重写一半的应用程序。

CoreRemoting(MIT 许可)可能是替代方案:https://github.com/theRainbird/CoreRemoting 可以将基于 .NET Remoting 的客户端/服务器应用程序迁移到 .NET Core / .NET 5。 与 gRPC 或 WebAPI 相比,CoreRemoting 的过程与 .NET Remoting 非常相似。 .NET 对象之间只进行远程方法调用。不需要像 WebAPI 那样将调用转换为 HTTP 调用(使用字符串连接构建 URL)。客户端和服务器之间的接口是在共享的 .NET 程序集中定义的,而不是像 gRPC 那样使用特殊的接口语言。事件和回调是开箱即用的,并且可以以自然的方式供 C# 开发人员使用(与 gRPC 更复杂的流方法相比)。

以下示例展示了如何使用 CoreRemoting 创建一个简单的客户端/服务器聊天应用程序。

共享合同程序集

namespace HelloWorld.Shared
{
    public interface ISayHelloService
    {
        event Action<string, string> MessageReceived;
        
        void Say(string name, string message);
    }
}

服务器

using System;
using CoreRemoting;
using CoreRemoting.DependencyInjection;
using HelloWorld.Shared;

namespace HelloWorld.Server
{
    public class SayHelloService : ISayHelloService
    {
        // Event to notify clients when users post new chat messages
        public event Action<string, string> MessageReceived;
        
        // Call via RPC to say something in the chat 
        public void Say(string name, string message)
        {
            MessageReceived?.Invoke(name, message);
        }
    }

    public static class HelloWorldServer
    {
        static void Main(string[] args)
        {
            using var server = new RemotingServer(new ServerConfig()
            {
                HostName = "localhost",
                NetworkPort = 9090,
                RegisterServicesAction = container =>
                {
                    // Make SayHelloSevice class available for RPC calls from clients
                    container.RegisterService<ISayHelloService, SayHelloService>(ServiceLifetime.Singleton);
                }
            });
            
            server.Start();
            
            Console.WriteLine("Server is running.");
            Console.ReadLine();
        }
    }
}

客户

using System;
using CoreRemoting;
using HelloWorld.Shared;

namespace HelloWorld.Client
{
    public static class HelloWorldClient
    {
        static void Main(string[] args)
        {
            using var client = new RemotingClient(new ClientConfig()
            {
                ServerHostName = "localhost",
                ServerPort = 9090
            });
            
            client.Connect();

            // Create a proxy of the remote service, which behaves almost like a regular local object
            var proxy = client.CreateProxy<ISayHelloService>();
            
            // Receive chat messages send by other remote users by event
            proxy.MessageReceived += (senderName, message) => 
                Console.WriteLine($"\n  {senderName} says: {message}\n");
            
            Console.WriteLine("What's your name?");
            var name = Console.ReadLine();

            Console.WriteLine("\nEntered chat. Type 'quit' to leave.");

            bool quit = false;

            while (!quit)
            {
                var text = Console.ReadLine();

                if (text != null && text.Equals("quit", StringComparison.InvariantCultureIgnoreCase))
                    quit = true;
                else
                {
                    // Post a new chat message
                    proxy.Say(name, text);
                }
            }
        }
    }
}

CoreRemoting 仅适用于从 .NET 到 .NET。如果您需要与 Javascript、Java、Python 等进行通信,那么它不是正确的工具。 但是,如果您只想在纯 .NET 环境中进行 RPC 并且希望以一种舒适的方式进行,那么 CoreRemoting 可能会非常有用。

我想说明的是,我是 CoreRemoting 项目的开发者。