构建基本的.NET Remoting应用程序
2024-07-10 12:58:45
供稿:网友
构建一个使用.net远程处理框架来进行应用域(application domain )间通信的应用程序很简单。你必须实现远程类型(remotable type)、用于监听请求的服务应用域和客户应用域。同时,你必须为每个应用域配置远程处理系统(remoting system ),以便可以使用远程激活( remote activation )来激活远程类型。
一、创建远程类型(remotable type):
为了使其它应用域中的对象可以使用你的类实例,你的类必须从system.marshalbyrefobject类进行派生。下面的代码说明如何创建远程类:
[visual basic]
' remotabletype.vb
imports system
public class remotabletype
inherits marshalbyrefobject
private _internalstring as string = "this is the remotabletype."
public function stringmethod() as string
return _internalstring
end function 'stringmethod
end class 'remotabletype
[c#]
// remotabletype.cs
using system;
public class remotabletype : marshalbyrefobject{
private string _internalstring = "this is the remotabletype.";
public string stringmethod(){
return _internalstring;
}
}
为了使用.net framework sdk附带的命令行工具来将上例中的类编译成为库文件,只要将它保存为remotabletype.language-extension(此处language-extension是你所使用的语言,比如cs、vb)。编译时使用如下命令:
[visual basic]
vbc /t:library remotabletype.vb
[c#]
csc /noconfig /t:library remotabletype.cs
二、创建服务应用(host application):
要在不同地应用域(application domain)中创建远程对象的实例,你必须创建服务应用来完成两个任务:
(1)选择并且注册一个通道(channel)。该通道是一个处理网络协议和串行格式化(serialization format)的对象。
(2)在.net远程系统(.net remoting system)中注册你创建的远程类型,这样远程系统就能使用你的通道来监听对于你远程类型的各种请求。
.net框架有两个默认的通道:system.runtime.remoting.channels.http.httpchannel(使用soap格式)和 system.runtime.remoting.channels.tcp.tcpchannel(使用二进制格式)。在某些情形下,httpchannel能够无须打开端口(port)就可以通过防火墙,并且它支持标准的安全和验证协议。
你可以使用任何类型的应用域(windows forms应用、asp.net web应用、控制台应用、windows服务和其它托管应用域)来创建监听应用程序。因为远程配置是基于每个应用域的,所以应用域必须进行请求监听。
『注』不同于com,远程处理框架不会为你启动监听应用或者服务器应用。
远程配置可以在编程阶段来实现,也可以使用应用程序或者机器的配置文件来实现。使用配置文件使你能够改变远程处理配置,而不用重新编译你的可执行文件。见如下代码:
[visual basic]
' listener.vb
imports system
imports system.runtime.remoting
public class listener
public shared sub main()
remotingconfiguration.configure("listener.exe.config")
console.writeline("listening for requests. press enter to exit...")
console.readline()
end sub 'main
end class 'listener
[c#]
// listener.cs
using system;
using system.runtime.remoting;
public class listener{
public static void main(){
remotingconfiguration.configure("listener.exe.config");
console.writeline("listening for requests. press enter to exit...");
console.readline();
}
}
为了使用.net framework sdk附带的命令行工具来将上述的类编译成监听服务可执行文件,只要将它保存为listener.language-extension(此处language-extension是你所使用的语言,比如cs、vb)。保存文件到remotabletype.dll的同一目录中。编译时使用如下命令:
[visual basic]
vbc /r:remotabletype.dll listener.vb
[c#]
csc /noconfig /r:remotabletype.dll listener.cs
listener类必须能够找到 listener.exe.config 文件来加载对于remotabletype类的配置。该配置文件必须保存到和listener.exe相同的目录中。如果没找到将会产生一个异常。下面是配置文件listener.exe.config 的描述:
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode="singleton"
type="remotabletype, remotabletype"
objecturi="remotabletype.rem"
/>
</service>
<channels>
<channel ref="http" port="8989"/>
</channels>
</application>
</system.runtime.remoting>
</configuration>
远程处理系统使用配置文件中的信息来监听和路由对于远程类型实例的远程请求。该文件指定了单一的服务激活模式(server-activation mode)、类型名、所要监听的类型所在的程序集和对象的uri(或者是对象的外部名)配置文件指定远程处理系统用httpchannel在8989端口进行监听。
三、创建客户应用:
客户应用程序必须进行注册。远程处理系统会截获客户程序的调用,将调用送到远程对象,然后返回结果给客户端。客户应用的代码如下:
[visual basic]
' client.vb
imports system
imports system.runtime.remoting
public class client
public shared sub main()
remotingconfiguration.configure("client.exe.config")
dim remoteobject as new remotabletype()
console.writeline(remoteobject.stringmethod())
end sub 'main
end class 'client
[c#]
// client.cs
using system;
using system.runtime.remoting;
public class client{
public static void main(){
remotingconfiguration.configure("client.exe.config");
remotabletype remoteobject = new remotabletype();
console.writeline(remoteobject.stringmethod());
}
}
要编译产生相应的客户端可执行文件,只要将它保存为client.language-extension(此处language-extension是你所使用的语言,比如cs、vb)。保存文件到remotabletype.dll的同一目录中。编译时使用如下命令:
[visual basic]
vbc /r:remotabletype.dll client.vb
[c#]
csc /noconfig /r:remotabletype.dll client.cs
如你所见,client类必须能够找到client.exe.config 文件来加载对于remotabletype类的配置。该配置文件必须保存到和client.exe相同的目录中。如果没找到将会产生一个异常。下面是配置文件client.exe.config 的描述:
<configuration>
<system.runtime.remoting>
<application>
<client>
<wellknown
type="remotabletype, remotabletype"
url="http://localhost:8989/remotabletype.rem"
/>
</client>
</application>
</system.runtime.remoting>
</configuration>
该配置文件通知远程处理系统remotabletype远程对象的类型信息可以在remotabletype程序集中找到。同时,客户程序应该试图创建和使用位于 http://localhost:8989/remotabletype.rem的remotabletype对象。当你试图在网络上运行该程序,必须用远程计算机名来替换客户配置文件中的“localhost”。
四、编译并执行整个应用:
保存前面所建的所有文件到一个名为listener的目录中,并使用如下命令行:
visual basic]
vbc /t:library remotabletype.vb
vbc /r:remotabletype.dll listener.vb
vbc /r:remotabletype.dll client.vb
[c#]
csc /noconfig /t:library remotabletype.cs
csc /noconfig /r:remotabletype.dll listener.cs
csc /noconfig /r:remotabletype.dll client.cs
运行该应用:
1、创建一个名为client的子目录
2、复制remotabletype.dll、client.exe和 client.exe.config到client目录中
3、在listener目录下,使用如下命令:
listener
4、当listener程序运行时,在client目录下打开一个新的command窗口,并键入:
client
改变通道:
只要修改 listener.exe.config 和client.exe.config文件就可以改变通道。client.exe.config 文件如下修改:
<wellknown
type="remotabletype, remotabletype"
url="tcp://localhost:8989/remotabletype.rem"
/>
listener.exe.config 文件中如下修改:
<channel ref="tcp" port="8989"/>
『注』本文中所涉及内容限于.net framework 1.x 。
,欢迎访问网页设计爱好者web开发。