欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

WPF利用RPC调用其他进程的方法详解

程序员文章站 2023-12-15 09:04:40
前言 如果在 wpf 需要用多进程通信,一个推荐的方法是 wcf ,因为 wcf 是 rpc 计算。先来讲下 rpc (remote procedure call) 远程...

前言

如果在 wpf 需要用多进程通信,一个推荐的方法是 wcf ,因为 wcf 是 rpc 计算。先来讲下 rpc (remote procedure call) 远程过程调用,他是通过特定协议,包括 tcp 、http 等对其他进程进行调用的技术。详细请看

现在不会告诉大家如何使用 wcf ,下面讲的是使用 remoting 这个方法。需要知道 dotnet remoting 是已经过时的技术,建议使用 wcf 但是 wcf 部署难度比较高,对于性能要求比较高或想快速使用,建议使用 remoting 。使用方法很简单

首先创建三个工程,一个工程放其他两个需要使用的库,一个是服务端,一个是客户端。其中客户端就可以调用服务端,客户端和服务端是两个不同的进程,所以可以跨进程调用。

方法如下:

先创建一个简单的工程,库的工程 remoteobject ,里面只有一个类

 public class remotecalculator : marshalbyrefobject
 {
  public const int port = 13570;

  public int add(int a, int b)
  {
   return a + b;
  }
 }

注意这个类需要继承 marshalbyrefobject ,这个类是在两个进程引用,客户端不实现这个类,所以客户端使用这个类接口同样可以。具体调用这个类的方法在服务端运行,结果通过 tcp 或 http 返回。

客户端的主要代码是连接服务端,然后访问库的 add 函数,但是这个函数不在客户端运行,通过 tcp 调用服务端,让他运行。

  private void buttonbase_onclick(object sender, routedeventargs e)
  {
   if (_channel == null)
   {
    process.start("calcnsmnlhzydyeuiitccddhxvlhm.exe");
    _channel = new tcpchannel();
    channelservices.registerchannel(_channel, true);
   }
   var calculator = (remotecalculator) activator.getobject(typeof(remotecalculator),
    "tcp://" + "127.0.0.1" + ":" + remotecalculator.port + "/remotecalculator");
   console.writeline(calculator.add(1, 2));
  }

服务端的名称是 calcnsmnlhzydyeuiitccddhxvlhm ,主要是打开连接,执行客户端发过来的函数

  static void main(string[] args)
  {
   new thread(() =>
   {
    _channel = new tcpchannel(remotecalculator.port);

    channelservices.registerchannel(_channel, true);
    remotingconfiguration.registerwellknownservicetype(typeof(remotecalculator), "remotecalculator", wellknownobjectmode.singleton);
   }).start();
   while (true)
   {
    console.readkey();
   }
  }
  private static tcpchannel _channel;

需要注意,客户端点击按钮需要先打开服务端,使用这个代码process.start("calcnsmnlhzydyeuiitccddhxvlhm.exe");然后创建 tcp 告诉通过tcp和服务端连接。然后从服务端获得 calculator 这个类,实际这个类现在是没有实现,调用函数需要发送到服务端。

服务端需要打开 tcpchannel ,这时需要定义调用的类,remotingconfiguration.registerwellknownservicetype(typeof(remotecalculator), "remotecalculator", wellknownobjectmode.singleton); ,这个函数的一个参数就是注册的类,第二个函数是调用的这个类使用什么名称,一般都是使用类的名称,最后一个参数可以在一个连接给一个实例。所以在库的类不能在构造函数需要传入

客户端调用的"tcp://" + "127.0.0.1" + ":" + remotecalculator.port + "/remotecalculator"最后一个remotecalculator就是服务端注册的第二个函数。

那么这个功能的作用是什么?因为 x64 程序不能调用 x86 的库,所以可以用这个方法在 x64 的程序调用其他平台的库,因为进程运行的平台不一样,但是通信是相同。

其他的功能我没有使用,我就使用打开服务,调用他的函数,所以如果大家遇到问题,不要来问我。如果按照我的代码无法运行,可以发邮件给我,我发源代码给你

代码下载:

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。

上一篇:

下一篇: