导航:首页 > 文件教程 > remoting配置文件对象

remoting配置文件对象

发布时间:2023-09-07 08:27:31

1. .net Remoting编程-客户端订阅服务端事件

第一步:创建共享库

依次点击“文件”->“新创建”->“工程”,选择创建一个c# library,并将其命名为resumeserverlibrary,然后点击ok按钮。这将创建一个我们的.net remote客户端和服务器端用来通讯的“共享命令集”。

正面是完整的代码,如果要跳过数据库访问部分,可以使用下面的代码替换resumeloader对象:

public class resumeloader : system.marshalbyrefobject
{
public resumeloader()
{
system.console.writeline("new referance added!");
}

public resume getresumebyuserid(decimal userid)
{
return new resume(1);
}
}

名字空间是对象所需要的。请记住,如果得到system.runtime.remoting.channels.tcp名字空间不存在的信息,请检查是否象上面的代码那样添加了对system.runtime.remoting.dll的引用。

using system;
using system.runtime;
using system.data.sqlclient;

我们为对象使用的名字空间是dotnetremotetest,下面的对象是marshalbyrefobject,在其中我们创建了一个引用和包括服务器端数据库操作全部完成所需要的所有工作。

namespace dotnetremotetest
{
public class resumeloader : system.marshalbyrefobject
{
private sqlconnection dbconnection;

public resumeloader()
{
this.dbconnection = new system.data.sqlclient.sqlconnection();
this.dbconnection.connectionstring =
"data source=grimsaado2k;initial catalog=underground;integrated security=sspi;pers" +
"ist security info=true;workstation id=grimsaado2k;packet size=4096";
/*具体的连接字符串会有所不同,这超出了本篇文章的范围。如果不清楚如何创建一个数据库连接,请使用这一对象的另一个版本。*/
system.console.writeline("new referance added!");
}

public resume getresumebyuserid(decimal userid)
{
resume resume = new resume();
try
{
dbconnection.open();
sqlcommand cmd = new sqlcommand(
"select resumeid, userid, title, body from resume as theresume where theresume.userid="+ userid +""
, dbconnection
);
sqldatareader areader = cmd.executereader();
if(areader.read())
{
resume.resumeid=areader.getdecimal(0);
resume.userid=areader.getdecimal(1);
resume.title=areader.getstring(2);
resume.body=areader.getstring(3);
}
areader.close();
dbconnection.close();
}
catch(exception x) { resume.title="error:"+x; }
return resume;
}
}

resume需要能够被串行化,以便能作为被远程调用的.net remote对象的返回类型,原因是该对象将被转换为通过网络传输的原始数据,然后在网络的另一端再被装配成一个对象。

该对象非常简单,为了使本篇文章看起来更简单,其中的构造器甚至使用缺省的内容初始化其中的一些域。

[serializable]
public class resume
{
private decimal resumeid, userid;
private string body, title;
public resume(decimal resumeid)
{
this.resumeid=resumeid;
this.userid=1;
this.body="this is the default body of the resume";
this.title="this is the default title";
}

public decimal resumeid
{
get { return resumeid; }
set { this.resumeid=value; }
}
public decimal userid
{
get { return userid; }
set { this.userid=value; }
}
public string body
{
get { return body; }
set { this.body=value;}
}
public string title
{
get { return title; }
set { this.title=value; }
}

}//resume对象结束

}//dotnetremotetest名字空间结束

编译创建的工程,就会得到一个dll文件,并可以在其他的工程中使用它。

第二步:创建server对象

有几种方法可以创建server对象,最直观的方法是下面的方法:在visual studio.net中,依次点击“文件”->“新创建”->“工程”,选择创建一个“command line application”(命令行应用程序),并将它命名为resumesuperserver。

最最重要的是,我们需要添加对刚才在第一步中所创建的dll文件的应用,该应用程序才能正确地运行。依次点击“工程”->“添加引用”,然后通过点击“浏览”按钮添加一个对在第一步中所创建的dll文件的引用。

为了使用.net remote功能,必须通过选择“工程”->“添加引用”,添加对dll文件的引用。在.net标签中选择system.runtime.remoting.dll,然后点击“ok”按钮。然后,需要象我们在第一步中那样添加对system.runtime.remoting.dll的引用。

下面的对象相当的简单和直观,我将就真正与.net remoting相关的3行代码中的每一行进行解释。

tcpserverchannel是.net remoting支持的二种信道类型中的一种,它将设置我们希望我们的对象对来自哪一个端口的请求进行回应,channelservices.registerchannel将把该端口号与操作系统中的tcp/ip栈绑定。

tcpserverchannel channel = new tcpserverchannel(9932);
channelservices.registerchannel(channel);

另一种可以设置的信道类型是http,只要简单地使用system.runtime.remoting.channels.http名字空间中的httpserverchannel对象即可搞定。使用http和tcp信道之间的区别可以简单的归结为:如果应用程序是在局域网上运行,则最好使用tcp信道,因为它的性能要好于http信道;如果应用程序是在互联网上运行,则有时候根据防火墙的配置,http是唯一的选择。需要记住的是,如果使用了防火墙软件,则防火墙应该配置成允许tcp数据流量通过你为对象选择的端口。

remotingconfiguration.registerwellknownservicetype(typeof(resumeloader),
"resumeloader", wellknownobjectmode.singlecall);

这行代码设置了服务中的一些参数和把欲使用的对象名字与远程对象进行绑定,第一个参数是绑定的对象,第二个参数是tcp或http信道中远程对象名字的字符串,第三个参数让容器知道,当有对对象的请求传来时,应该如何处理对象。尽管wellknownobjectmode.single对所有的调用者使用一个对象的实例,但它为每个客户生成这个对象的一个实例。

完整的对象代码如下所示:

using system;
using system.runtime;
using system.runtime.remoting;
using system.runtime.remoting.channels;
using system.runtime.remoting.channels.tcp;
using system.data.sqlclient;
using dotnetremotetest;
namespace resumeserverserver
{
public class resumesuperserver
{
public static void main(string[] args)
{
tcpserverchannel channel = new tcpserverchannel(9932);
channelservices.registerchannel(channel);
remotingconfiguration.registerwellknownservicetype(typeof(resumeloader),
"resumeloader", wellknownobjectmode.singlecall);
system.console.writeline("press any key");
system.console.readline();
}
}
}

编译这一程序并注意生成的.exe文件的位置。

第三步:创建remote客户端程序

resumeclinet是我们为对在上面创建的resumesuperserver远和对象进行测试而创建的。要创建这一工程,可以依次点击“文件”->“创建”->“工程”,然后选择创建一个console application类型、名字为resumeclient的工程名。象在第二步中那样,我们需要添加对在第一步中创建的dll文件和system.runtime.remoting dll的引用。

下面的代码中有二行对于.net remoting而言是特别重要的。第一行创建了一个tcp客户端信道,该信道并不是绑定在一个端口上的;第二行获取了一个对远程的resumeloader对象的引用。activator.getobject方法返回一个对象类型的值,我们随后会将它返回的值赋予resumeloader。我们传给它的参数与在服务器工程中传递给remotingconfiguration的参数非常地相似,第一个参数是对象类型的,第二个参数是远程对象的uri。

channelservices.registerchannel(new tcpclientchannel());
resumeloader loader = (resumeloader)activator.getobject(
typeof(resumeloader), "tcp://localhost:9932/resumeloader");

resumeclient的全部代码如下所示:
using system;
using system.runtime.remoting;
using system.runtime.remoting.channels;
using system.runtime.remoting.channels.tcp;
using dotnetremotetest;

namespace resumeclient
{

public class resumeclient
{

public static void main(string[] args)
{
channelservices.registerchannel(new tcpclientchannel());
resumeloader loader = (resumeloader)activator.getobject(
typeof(resumeserver), "tcp://localhost:9932/resumeloader");

if(rs==null)
{ console.writeline("unable to get remote referance"); }
else
{
resume resume = loader.getresumebyuserid(1);
console.writeline("resumeid:"+ resume.resumeid);
console.writeline("userid:"+ resume.userid);
console.writeline("title:"+ resume.title);
console.writeline("body:"+ resume.body);
}
console.readline();//在能够看到结果前不让窗口关闭
}//end of main method
}//end of resumeclient object
}//end of resumeclientnamespace

测试

在数据库中创建一个具有如下结构的表:

table name-resume
resumeid, numeric (autonumber)
userid, numeric
title, char(30)
body, text

双击我们在第二步中创建的server.exe,然后双击在第三步中创建的client可执行文件。如果一切正常的话,我们应该能够看到数据库中resumeid的值为1的记录行。

总之,.net remoting使用起来很简单,而且为处理局域网甚至互联网范围内的资源提供了一个绝佳的方法。

阅读全文

与remoting配置文件对象相关的资料

热点内容
荣耀畅玩手环同步qq 浏览:475
怎么向sql中添加数据库 浏览:596
录歌失败重启app什么意思 浏览:522
压缩文件包怎么在微信发送 浏览:432
mysql数据库怎么插入时间值 浏览:191
微信视频不能转发朋友圈 浏览:596
影视后期的app有哪些 浏览:956
电子保单数据出错什么意思 浏览:368
如何以文件下载音乐 浏览:438
计算机网络章节练习 浏览:999
单片机的外部中断程序 浏览:48
表格批量更名找不到指定文件 浏览:869
js的elseif 浏览:584
3dmaxvray视频教程 浏览:905
imgtool工具中文版 浏览:539
java帮助文件在哪里 浏览:965
win10切换输入语言 浏览:696
haier电视网络用不了怎么办 浏览:361
苹果6手机id怎么更改 浏览:179
米家扫地机器人下载什么app 浏览:82

友情链接