remoting

原文地址:http://blog.csdn.net/chengking/archive/2005/10/26/517349.aspx

(一).说明
    一个远程调用示例.
    此示例实现功能: 客房端调用远程方法(远程方法可以弹    出自定义信息),实现发送信息功能.
    实现原理概是这样的:客户端不能直接调用远程对象,它必须先通过信道请求服务端宿主程序,当收到客户端请求时,
    .net远程处理框架会在宿主组件的应用程序域中生成所需要的远程对象. 并执行远程对象中的方法.    
(二).实现方案
在之前先介绍几种类:
    1.可序列化的类: 以<serializable>属性为标记,可以在进程/应用程序/计算机之间传送.
    2.可远程调用的类: 直接或间接地继承 System.MarshalByRefObject类,可以被远程激活.
    3.一般类:         不能构建分布式,用于本地调用.
1.首先建立三个项目:
    RemoteObject: 提供远程对象,供客户端调用
    SimpleClient: 用于向服务端程序发出请求,调用远程对象 (winform)
    SimpleServer: 侦听客户端请求,并创建对象             (winform)
2.在RemoteObject项目下面建立远程调用类: RemoteObject.cs
    在SimpleClient项目下面建立: Form1.cs和SimpleClient.exe.config配置文件。
          其中配置文件的作用是指定服务端地址和信道等信息,下面的代码里面有详细说明.
    在SimpleServer项目下面建立: Form1.cs和SimpleServer.exe.config配置文件。
          其中配置文件的作用是指定接受请求客户端的地址和信道等信息,下面的代码里面有详细说明.
(三).
各文件源代码:
1.RemoteObject.cs
    using System;
    using System.Windows.Forms;
    namespace RemoteObjects
    {
public class RemoteObject : System.MarshalByRefObject //继承此类才能被远程激活调用
{
   public RemoteObject()
   {
   }
  
   //远程调用方法,功能: 弹出自定义消息, 参数: str是从客户端传递过来的
   public static void Method(string str)
   {   
                   MessageBox.Show(str);   
   }  
}
    }
2.客户端工程SimpleClient项目中的Form1.cs:
    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Data;
    using RemoteObjects;
    namespace SimpleClient
    {
public class Form1 : System.Windows.Forms.Form
{
   private System.Windows.Forms.TextBox textBox1;
   private System.Windows.Forms.Label label1;
   private System.Windows.Forms.Button button1;  
   private System.ComponentModel.Container components = null;

   public Form1()
   {   
    InitializeComponent();
   }  
   protected override void Dispose( bool disposing )
   {
    if( disposing )
    {
     if (components != null)
     {
      components.Dispose();
     }
    }
    base.Dispose( disposing );
   }

   #region Windows 窗体设计器生成的代码
   /// <summary>
   /// 设计器支持所需的方法 - 不要使用代码编辑器修改
   /// 此方法的内容。
   /// </summary>
   private void InitializeComponent()
   {
    this.textBox1 = new System.Windows.Forms.TextBox();
    this.label1 = new System.Windows.Forms.Label();
    this.button1 = new System.Windows.Forms.Button();
    this.SuspendLayout();
    //
    // textBox1
    //
    this.textBox1.Location = new System.Drawing.Point(40, 88);
    this.textBox1.Multiline = true;
    this.textBox1.Name = "textBox1";
    this.textBox1.Size = new System.Drawing.Size(336, 176);
    this.textBox1.TabIndex = 0;
    this.textBox1.Text = "";
    //
    // label1
    //
    this.label1.Location = new System.Drawing.Point(40, 32);
    this.label1.Name = "label1";
    this.label1.TabIndex = 1;
    this.label1.Text = "请输入信息:";
    //
    // button1
    //
    this.button1.Location = new System.Drawing.Point(296, 32);
    this.button1.Name = "button1";
    this.button1.TabIndex = 2;
    this.button1.Text = "发送";
    this.button1.Click += new System.EventHandler(this.button1_Click);
    //
    // Form1
    //
    this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
    this.ClientSize = new System.Drawing.Size(416, 302);
    this.Controls.Add(this.button1);
    this.Controls.Add(this.label1);
    this.Controls.Add(this.textBox1);
    this.Name = "Form1";
    this.Text = "发送信息";
    this.Load += new System.EventHandler(this.Form1_Load);
    this.ResumeLayout(false);

   }
   #endregion
  
   [STAThread]
   static void Main()
   {
    Application.Run(new Form1());   
   }
  
   private void Form1_Load(object sender, System.EventArgs e)
   {
      //载入信道,用于侦听客户端请求,配置文件记载客户端地址等信息.
    System.Runtime.Remoting.RemotingConfiguration.Configure("Simpleclient.exe.config");   
   }

   private void button1_Click(object sender, System.EventArgs e)
   {
    //开始调用远程对象(发送信息)
    RemoteObjects.RemoteObject.Method(this.textBox1.Text);
   }
}
    }
3.客户端工程SimpleClient项目中的SimpleClient.exe.config:
   <?xml version="1.0" encoding="utf-8" ?>
   <configuration>
<system.runtime.remoting>
   <application name="simpleclient">
    <!-- 指定请求的服务端地址和端口号-->
    <!-- url中的:localhost是测试的本机,可以使用Intenet上的其它机器名或ip地址-->
    <client url="tcp://localhost:8080/simpleserver">
     <activated type="RemoteObjects.RemoteObject,RemoteObjects">
     </activated>
    </client>
    <channels>
     <!-- 指定信道,有两种信道可选:Tcp(基于TCP协议)和Http(无连续连接协议)信道-->
     <channel ref="tcp client"/>  
    </channels>
   </application>
</system.runtime.remoting>
    </configuration>
4.服务端工程SimpleServer项目中的Form1.cs:
   using System;
   using System.Drawing;
   using System.Collections;
   using System.ComponentModel;
   using System.Windows.Forms;
   using System.Data;
   using System.Runtime.Remoting;

   namespace SimpleServer
   {
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
   /// <summary>
   /// 必需的设计器变量。
   /// </summary>
   private System.ComponentModel.Container components = null;

   public Form1()
   {
    //
    // Windows 窗体设计器支持所必需的
    //
    InitializeComponent();

    //
    // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
    //
   }

   /// <summary>
   /// 清理所有正在使用的资源。
   /// </summary>
   protected override void Dispose( bool disposing )
   {
    if( disposing )
    {
     if (components != null)
     {
      components.Dispose();
     }
    }
    base.Dispose( disposing );
   }

   #region Windows 窗体设计器生成的代码
   /// <summary>
   /// 设计器支持所需的方法 - 不要使用代码编辑器修改
   /// 此方法的内容。
   /// </summary>
   private void InitializeComponent()
   {
    //
    // Form1
    //
    this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
    this.ClientSize = new System.Drawing.Size(292, 266);
    this.Name = "Form1";
    this.Text = "Form1";
    this.Load += new System.EventHandler(this.Form1_Load);

   }
   #endregion

   /// <summary>
   /// 应用程序的主入口点。
   /// </summary>
   [STAThread]
   static void Main()
   {
    //Application.Run(new Form1());   
    Run();
   }

   private static void Run()
   {
    System.Runtime.Remoting.RemotingConfiguration.Configure("SimpleServer.exe.config");
   }

   private void Form1_Load(object sender, System.EventArgs e)
   {
   
   }
   }
    }
5.服务端工程SimpleServer项目中的SimpleServer.exe.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
   <application name="simpleserver">
    <service>
     <activated type="RemoteObjects.RemoteObject,RemoteObjects">
     </activated>
    </service>
    <channels>
     <channel ref="tcp server" port="8080" />
    </channels>
   </application>
</system.runtime.remoting>
</configuration>
(四).注意点
   1.由于配置文件默认是添加在根目录下的,要把两个配置文件拷贝到:根目录/bin/debug下面,要让它与执行文件在同一个目录下面。
   2.右击RemoteObject项目,选“常规”下的,输入类型为:“类库”. 它默认为应用程序,这里作为类库使用.
     设置好后,按: Ctrl+Shift+B生成类库Dll.
   3.在工程SimpleServer和SimpleClient中分别添加引用: 即将RemoteObject项目刚生成的DLL: RemoteObjects.dll添加到各自的工程中.
     具体方法:右击“引用“->”添加引用“->"浏览",找到生成的RemoteObjects.dll分别添加进来.
   4.右击解决方案,选择“属性”-> “选中多启动项目单选框”->"选SimpleServer和SimpleClient同时启动".
     因为: 当服务端宿主程序运行时,客户端才能正确调用远程对象.
   5.按F5运行. 输入信息,点“发送”按钮,就可以调用远程对象了.
(五).扩展
     可以修改客户端配置文件:<client url="tcp://localhost:8080/simpleserver"> 中的localhost为其它的机器名称,只要另一台
     机器运行了宿主程序,并处于运行状态. 那么当调用时,会在服务端弹出信息,即实现了发送信息功能.

 

以上代码已经测试,不正确的地方望批评指正!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/389104.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

handler 消息处理机制

关于handler消息处理机制&#xff0c;只要一提到&#xff0c;相信作为一个android工程师&#xff0c;脑海就会有这么一个流程 大家都滚瓜烂熟了&#xff0c;但别人问到几个问题&#xff0c;很多人还是栽到这个“烂”上面&#xff0c;比如&#xff1a; 一个线程是如何对应一个L…

es6简单介绍

let和const 原先声明变量的形式 var test 5; //全局变量 function a() {var cc3; //局部变量alert(test); } function b(){alert(test);}test 5;//全局变量 function a() {aa3; //全局变量alert(test); } 在es6之前&#xff0c;作用域只有全局作用域和函数作用域&#xff0…

软件工程方法学要素含义_日期时间数据的要素工程

软件工程方法学要素含义According to Wikipedia, feature engineering refers to the process of using domain knowledge to extract features from raw data via data mining techniques. These features can then be used to improve the performance of machine learning a…

洛谷P1605:迷宫(DFS)

题目背景 迷宫 【问题描述】 给定一个N*M方格的迷宫&#xff0c;迷宫里有T处障碍&#xff0c;障碍处不可通过。给定起点坐标和终点坐标&#xff0c;问: 每个方格最多经过1次&#xff0c;有多少种从起点坐标到终点坐标的方案。在迷宫中移动有上下左右四种方式&#xff0c;每次只…

vue图片压缩不失真_图片压缩会失真?快试试这几个无损压缩神器。

前端通常在做网页的时候 会出现图片加载慢的情况 在这里我通常会将图片进行压缩 但是通常情况下 观众会认为 图片压缩会出现失真的现象 在这里我会向大家推荐几款图片压缩的工具 基本上会实现无损压缩1.TinyPng地址&#xff1a;https://tinypng.comEnglish&#xff1f;不要慌&a…

remoteing2

此示例主要演示了net remoting,其中包含一个服务器程序Server.exe和一个客户端程序CAOClient.exe。客户端程序会通过http channel调用服务器端RemoteType.dll的对象和方法。服务器端的代码文件由下图所述&#xff1a;Server.cs源代码 :using System;using System.Runtime.Remot…

android 线程池

为什么用线程池 创建/销毁线程伴随着系统开销&#xff0c;过于频繁的创建/销毁线程&#xff0c;会很大程度上影响处理效率 例如&#xff1a; 记创建线程消耗时间T1&#xff0c;执行任务消耗时间T2&#xff0c;销毁线程消耗时间T3 如果T1T3>T2&#xff0c;那么是不是说开…

datatable转化泛型

public class ConvertHelper<T>where T:new() { /// <summary> /// 利用反射和泛型 /// </summary> /// <param name"dt"></param> /// <returns></returns> public static List<T> ConvertToList(DataTable dt) { …

【跃迁之路】【651天】程序员高效学习方法论探索系列(实验阶段408-2018.11.24)...

(收集箱&#xff08;每日一记&#xff0c;每周六整理&#xff09;)专栏 实验说明 从2017.10.6起&#xff0c;开启这个系列&#xff0c;目标只有一个&#xff1a;探索新的学习方法&#xff0c;实现跃迁式成长实验期2年&#xff08;2017.10.06 - 2019.10.06&#xff09;我将以自己…

更换mysql_Docker搭建MySQL主从复制

Docker搭建MySQL主从复制 主从服务器上分别安装Docker 1.1 Docker 要求 CentOS 系统的内核版本高于 3.10 [rootlocalhost ~]# uname -r 3.10.0-693.el7.x86_641.2 确保 yum 包更新到最新。 [rootlocalhost ~]# sudo yum update Loaded plugins: fastestmirror, langpacks Loadi…

dll文件的c++制作dll文件的c++制作

dll文件的c制作1、首先用vs2005建立一个c的dll动态链接库文件&#xff0c;这时&#xff0c;// DllTest.cpp : 定义 DLL 应用程序的入口点。//#include "stdafx.h"//#include "DllTest.h"#ifdef _MANAGED#pragma managed(push, off)#endifBOOL APIENTRY Dll…

理解ConstraintLayout 对性能的好处

自从在17年GoogleI/O大会宣布了Constraintlayout,我们持续提升了布局的稳定性和布局编辑的支持。我们还为ConstraintLayout添加了一些新特性支持创建不同类型的布局&#xff0c;添加这些新特性&#xff0c;可以明显的提升性能&#xff0c;在这里&#xff0c;我门将讨论Contrain…

数据湖 data lake_在Data Lake中高效更新TB级数据的模式

数据湖 data lakeGOAL: This post discusses SQL “UPDATE” statement equivalent for a data lake (object) storage using Apache Spark execution engine. To further clarify consider this, when you need to perform conditional updates to a massive table in a relat…

如何理解运维

运维工程师&#xff08;运营&#xff09;&#xff0c;负责维护并确保整个服务的高可用性&#xff0c;同时不断优化系统架构提升部署效率&#xff0c;优化资源利用率提高整体的投资回报率。运维工程师面对的最大挑战是大规模集群的管理问题&#xff0c;如何管理好几十万台服务器…

advanced installer更换程序id_好程序员web前端培训分享kbone高级-事件系统

好程序员web前端培训分享kbone高级-事件系统&#xff1a;1、用法&#xff0c;对于多页面的应用&#xff0c;在 Web 端可以直接通过 a 标签或者 location 对象进行跳转&#xff0c;但是在小程序中则行不通&#xff1b;同时 Web 端的页面 url 实现和小程序页面路由也是完全不一样…

ai对话机器人实现方案_显然地引入了AI —无代码机器学习解决方案

ai对话机器人实现方案A couple of folks from Obviously.ai contacted me a few days back to introduce their service — a completely no-code machine learning automation tool. I was a bit skeptical at first, as I always am with supposedly fully-automated solutio…

网络负载平衡的

网络负载平衡允许你将传入的请求传播到最多达32台的服务器上&#xff0c;即可以使用最多32台服务器共同分担对外的网络请求服务。网络负载平衡技术保证即使是在负载很重的情况下它们也能作出快速响应。 网络负载平衡对外只须提供一个IP地址&#xff08;或域名&#xff09;。 如…

透明状态栏导致windowSoftInputMode:adjustResize失效问题

当我们通过下面代码&#xff1a; getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN |View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); 设置状态栏透明&#xff0c;当界面存在EditText时&#xff0c;在activity里面设置windowSoftInputMode:…

[TimLinux] JavaScript 元素动态显示

1. css的opacity属性 这个属性用于&#xff1a;设置元素的不透明级别&#xff0c;取值范围&#xff1a;从 0.0 &#xff08;完全透明&#xff09;到 1.0&#xff08;完全不透明&#xff09;&#xff0c;元素所在的文本流还在。这个属性的动态变化可以用来设置元素的淡入淡出效果…

神经网络 CNN

# encodingutf-8import tensorflow as tfimport numpy as npfrom tensorflow.examples.tutorials.mnist import input_datamnist input_data.read_data_sets(MNIST_data, one_hotTrue)def weight_variable(shape): initial tf.truncated_normal(shape, stddev0.1) # 定义…