据lovecherry的一步一步学Remoting序列文章学习.net Remoting日记

  昨天,进行了.net Remoting的初步学习,虽然在之前就已经接触过这个概念,并且也了解一些,可是真正的.net Remoting程序还真从未曾真正的编写过。昨天看了lovecherry的一步一步学Remoting序列文章,总算是迈出了.net Remoting程序的第一步,所以将这个过程记录下来,以免以后遗忘掉了!

   
   
   
   
  1. Code highlighting produced by Actipro CodeHighlighter (freeware) 
  2. http://www.CodeHighlighter.com/-->using System; 
  3. using System.Collections.Generic; 
  4. using System.Linq; 
  5. using System.Text; 
  6. using RemoteObject; 
  7.  
  8. namespace RemoteClient 
  9.     class MyClient 
  10.     { 
  11.         [STAThread] 
  12.         static void Main(string[] args) 
  13.         { 
  14.             Console.WriteLine("开始接受服务端信息!"); 
  15.             MyObject app = (MyObject)Activator.GetObject(typeof(RemoteObject.MyObject), System.Configuration.ConfigurationSettings.AppSettings["ServiceURL"]); 
  16.             Console.WriteLine("第一次测试使用的函数"); 
  17.             Console.WriteLine(app.Add(1, 2)); 
  18.             Console.WriteLine("第二次测试使用的函数"); 
  19.             Console.WriteLine(app.Count()); 
  20.             Console.WriteLine("接受信息"); 
  21.             Console.ReadLine(); 
  22.             Console.ReadLine(); 
  23.         } 
  24.     } 
  

  在这里可能会出现找不到MyObject的问题,这里的客户端和服务器端都需要引用RemoteObject类库才行!如下图所示:

测试源代码:.net Remoting 客户端激活

你可能感兴趣的:(.net,文章,程序,日记,remoting)