您的位置:首页 > 其它

一步一步学Remoting之四:承载方式

2008-06-17 14:41 766 查看
在实际的应用中我们通常只会选择用windows服务和iis来承载远程对象。选择windows服务的原因是能自启动服务,服务器重启后不需要再去考虑启动service。选择iis的理由是我们能使用集成验证等一些iis的特性。

在msdn中可以找到相关文章:

http://www.microsoft.com/china/msdn/library/architecture/architecture/architecturetopic/BuildSucApp/BSAAsecmodsecmod29.mspx

http://msdn.microsoft.com/library/chs/default.asp?url=/library/CHS/cpguide/html/cpconRemotingExampleHostingInIIS.asp

可能大家会觉得这个过程将是一个复杂的过程,其实不然,下面说一下实现方法,步骤非常少。

先来建立远程对象

using System;

using System.Data;

using System.Data.SqlClient;

namespace RemoteObject

{

public class MyObject:MarshalByRefObject

{

public DataSet GetData()

{

SqlConnection conn=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["strconn"]);

SqlDataAdapter da=new SqlDataAdapter("select * from UBI_ProvinceMaster",conn);

DataSet ds=new DataSet();

da.Fill(ds);

return ds;

}

}

}

客户端仍然是一个控制台来进行测试:

RemoteObject.MyObject app = (RemoteObject.MyObject)Activator.GetObject(typeof(RemoteObject.MyObject),System.Configuration.ConfigurationSettings.AppSettings["ServiceURL"]);

DataTable dt=app.GetData().Tables[0];

foreach(DataRow dr in dt.Rows)

{

Console.WriteLine(dr["iPrMId"]+" "+dr["vPrMName"]);

}

Console.ReadLine();

服务端配置文件:

<configuration>

<appSettings>

<add key="strconn" value="server=(local);uid=sa;pwd=;database=UBISOFT" />

</appSettings>

<system.runtime.remoting>

<application name="RemoteServer">

<service>

<wellknown type="RemoteObject.MyObject,RemoteObject" objectUri="RemoteObject.MyObject"

mode="SingleCall" />

</service>

<channels>

<channel ref="tcp" port="9999"/>

</channels>

</application>

</system.runtime.remoting>

</configuration>

运行程序,我们得到的是一个省市的列表:

using System;

using System.Collections;

using System.Runtime.Remoting;

using System.Runtime.Remoting.Channels;

using System.Runtime.Remoting.Channels.Tcp;

using System.Runtime.Serialization.Formatters;

RemotingConfiguration.RegisterWellKnownServiceType(typeof(RemoteObject.MyObject), "RemoteObject.MyObject", WellKnownObjectMode.Singleton);

BinaryServerFormatterSinkProvider serverProvider = new BinaryServerFormatterSinkProvider();

BinaryClientFormatterSinkProvider clientProvider = new BinaryClientFormatterSinkProvider();

serverProvider.TypeFilterLevel = TypeFilterLevel.Full;

IDictionary props = new Hashtable();

props["port"] = 9999;

TcpChannel channel = new TcpChannel(props,clientProvider,serverProvider);

ChannelServices.RegisterChannel(channel);

Console.ReadLine();

客户端还要用程序进行调整:

若要使用配置文件设置反序列化级别,必须显式指定 <formatter> 元素的 typeFilterLevel 属性。虽然这通常是在服务器端指定的,但您还必须为注册来侦听回调的客户端上的任何信道指定这一属性,以控制其反序列化级别

在程序前面加上和服务端基本相同的代码:

BinaryServerFormatterSinkProvider serverProvider = new BinaryServerFormatterSinkProvider();

BinaryClientFormatterSinkProvider clientProvider = new BinaryClientFormatterSinkProvider();

serverProvider.TypeFilterLevel = TypeFilterLevel.Full;

IDictionary props = new Hashtable();

props["port"] = 0;

TcpChannel channel = new TcpChannel(props,clientProvider,serverProvider);

ChannelServices.RegisterChannel(channel);

这样就可以了,注意:如果在同一个机器上面测试端口号应设为不同于服务器端设置的端口号,推荐设置为0(远程处理系统自动选择可用端口)

.NET Remoting 自身不提供安全模型。然而,通过将远程对象驻留在 ASP.NET 中并使用 HTTP 通道进行通信,远程对象可以使用 IIS 和 ASP.NET 提供的基本安全服务。比较而言,TCP 通道和自定义的主机可执行文件能够提供更高的性能,但这种组合不提供内置的安全功能。

• 若要对客户端进行身份验证,请使用 HTTP 通道,在 ASP.NET 中驻留对象,以及在 IIS 中禁用匿名访问。

• 如果您不担心客户端身份验证问题,请使用 TCP 通道,它可以提供更高的性能。

• 如果您使用 TCP 通道,请使用 IPSec 保护客户端和服务器之间的通信通道。使用 SSL 来保护 HTTP 通道。

• 如果您需要对远程资源进行受信任的调用,请将组件驻留在 Windows 服务中,而不是驻留在控制台应用程序中。

• 始终不要向 Internet 公开远程对象。在这种情况下,请使用 Web 服务。

应该仅在 Intranet 中使用 .NET Remoting。应该使用内部方式从 Web 应用程序访问对象。即使对象驻留在 ASP.NET 中,也不要向 Internet 客户端公开它们,因为客户端必须是 .NET 客户端。

最后,让我们来看一篇msdn有关remoting安全的文章:

http://www.microsoft.com/china/msdn/library/architecture/architecture/architecturetopic/BuildSucApp/BSAAsecmod11.mspx

TrackBack:http://www.cnblogs.com/lovecherry/archive/2005/05/20/159598.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: