• C# .Net Remoting示例


     IPCChannel.NET Framework 2.0 里面新增的,它使用 Windows 进程间通信 (IPC) 系统在同一计算机上的应用程序域之间传输消息。在同一计算机上的应用程序域之间进行通信时,IPC 信道比 TCP HTTP 信道要快得多。但是IPC只在本机应用之间通信。所以,在客户端和服务端在同一台机器时,我们可以通过注册IPCChannel来提高Remoting的性能。但如果客户端和服务端不在同一台机器时,我们不能注册IPCChannel

     

    IPC(Inter-Process Communication,进程间通信)

     /Files/wucg/_TestProjects/TestNetRemoting_IPC通信.rar

    eg1:

    server端

    namespace DotNetRemotingDemo2Server
    {
        class Program
        {
            static void Main(string[] args)
            {
                RemotingConfiguration.Configure("DotNetRemotingDemo2Server.exe.config",false);
                Console.ReadLine();
            }
        }
    }

    配置:

    <?xml version="1.0" encoding="utf-8" ?>

    <configuration>
      <system.runtime.remoting>
        <application name="RemoteServer">
          <service>
            <!--<wellknown type="RemoteHelloConsole.Hello,RemoteHelloConsole" objectUri="Object.MyObject" mode="Singleton" />-->        
            <wellknown type="RemoteHelloConsole.Hello,RemoteHelloConsole" objectUri="Object.MyObject" mode="SingleCall" />        
          </service>
          <channels>
            <channel ref="ipc" portName="testPipe" />
          </channels>
        </application>
      </system.runtime.remoting>
    </configuration>

    Client端:
    namespace DotNetRemotingDemo2Client
    {
        class Program
        {
            static void Main(string[] args)
            {
                RemoteHelloConsole.Hello hello =
                    (RemoteHelloConsole.Hello)Activator.GetObject(typeof(RemoteHelloConsole.Hello),
                "ipc://testPipe/Object.MyObject");

                try
                {
                    for (int i = 0; i < 5; i++)
                    {
                        Console.WriteLine(hello.Greeting("abc123" + i));
                    }
                }
                catch (Exception ex)
                {

                    Console.WriteLine(ex.Message);
                }
                Console.ReadLine();
            }
        }
    }

    eg2:

    Server端:

    namespace DotNetRemotingDemo1
    {
        class Program
        {
            static void Main(string[] args)
            {
                TcpServerChannel channel = new TcpServerChannel(8086);
                ChannelServices.RegisterChannel(channel, false);
                RemotingConfiguration.RegisterWellKnownServiceType(
                    //typeof(RemoteHelloConsole.Hello), "Hi", WellKnownObjectMode.SingleCall);
                    typeof(RemoteHelloConsole.Hello), "Hi", WellKnownObjectMode.Singleton);
                Console.WriteLine("press return to exit.");
                Console.ReadLine();
            }
        }
    }

    Client端:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Runtime.Remoting;
    using System.Runtime.Remoting.Channels;
    using System.Runtime.Remoting.Channels.Tcp;


    namespace DotNetRemotingClient
    {
        class Program
        {
            static void Main(string[] args)
            {
                ChannelServices.RegisterChannel(new TcpClientChannel(), false);

                RemoteHelloConsole.Hello hello = (RemoteHelloConsole.Hello)Activator.GetObject(typeof(RemoteHelloConsole.Hello),
                    "tcp://localhost:8086/Hi");
                if (hello == null) {

                    Console.WriteLine("can't locate server.");
                    return;
                }
                try
                {
                    for (int i = 0; i < 5; i++)
                    {
                       Console.WriteLine( hello.Greeting("abc123" + i) );
                    }
                }
                catch (Exception ex)
                {

                    Console.WriteLine(ex.Message);
                }
                Console.ReadLine();

            }
        }
    }

  • 相关阅读:
    mysql中IN和EXITS效率
    POJ 3301 Texas Trip
    Swift项目兼容Objective-C问题汇总
    使用linq对字符串1,2,3,4,5,6,7,8,9,10求和
    CodeForces 228D. Zigzag(线段树暴力)
    代理模式
    Oracle成长点点滴滴(3)— 权限管理
    数据结构基础 之 图 的 邻接矩阵实现与邻接表实现
    android CoordinatorLayout使用
    Android开发之蓝牙(Bluetooth)操作(二)--修改本机蓝牙设备的可见性,并扫描周围可用的蓝牙设备
  • 原文地址:https://www.cnblogs.com/wucg/p/1731592.html
Copyright © 2020-2023  润新知