首页 > 其他分享 >Castle 整合.NET Remoting

Castle 整合.NET Remoting

时间:2022-10-24 14:01:34浏览次数:43  
标签:Remoting 对象 RemoteSample int Components Castle NET Channel

微软以前使用COM/DCOM的技术来处理分布式系统架构,通过Client端的Proxy代理程序来呼叫远程Server机器上的对象。.NET Framework则使用.NET Remoting或Web Services技术来实作分布式处理的工作概念;在这里针对.NET Remoting的设计架构做一个初步的简介和Castle整合示例。

.NET Framework提供了多种的机制来支持Remoting,如:

.利用Channel来负责信息的发送与接收。
.利用Formatter来负责在信息要通过channel发送出去之前,先将信息做适当的加密,或于信息在通过Channel接收进来之后,先将信息做相对的解密工作。
.利用Proxy来呼叫远程的对象执行所要的功能呼叫。

其关系如下图所示:


Channel 和 Formatter

在远程对象被使用之前,必须先在Server端注册好信息发送的信道(Channel),这些Channel可通过.NET Remotin configuration file或 ChannelServices对象类别的RegisterChannel方法来注册。

在Channel的使用上,.NET Framework支持HTTP、TCP及SMTP等通道。若使用HTTP Channel ,则使用SOAP协议来收送信息,所有的信息会被发送到SOAP Formatter中,被序列化(serialized)成XML的格式,而SOAP所需的headers也会被加入。至于使用TCP Channel者,则使用TCP协议来将信息发送到Binary Formatter中,以Binary Stream的方式来将信息发送到URI目的地。(URI : Universal Resource Identifier,类似大家所熟悉的URL)。

Activation and Proxy
Server-Side Activation
Server端在Client端要获取Remoting对象时必需在Server端能自动启动Remoting对象,可使用RemotingConfiguration对象类别的RegisterWellKnownServiceType方法来完成这项工作。

Client-Side Activation
Client端要使用远程对象之前,可使用New 或Activator 对象类别所提供的CreateInstance或GetObject方法来启动对象并传回Proxy,以便Client端可通过Proxy来执行叫用远程对象的方法。

范例
以下分三个步骤来介绍

1.    建立Remoting对象

2.    在Server上初始Remoting物件

3.    Client端使用Remoting对象

步骤1:建立Remoting对象
建立一个MathServer对象类别,提供Sum方法,可给予一连串的整数由Sum方法代为计算总和。程序代码如下,并说明于后:

using System;

namespace RemoteSample.Components
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
public interface
{
int Sum(params int[] a);

int
{
get;
}
}
}

using System;
using RemoteSample.Components;

namespace RemoteSample.Components
{
/// <summary>
/// RemoteMath 的摘要说明。
/// </summary>
public class
{
private int

public
{

}


#region 接口IRemoteMath的成员实现
/// <summary>
/// 求和计算
/// </summary>
/// <param name="a"></param>
/// <returns></returns>
public int Sum(params int[] a)
{
int
for (int
{
sum += a[i];
}
callCounter += 1;
return
}


public int
{
get
{
return this.callCounter;
}
}

#endregion
}
}

说明:Remoting对象必须继承自MarshalByRefObject,这样才能通过网络,将对象执行个体的参考位置传递给呼叫端。
步骤2:在Server上初始化Remoting对象,程序代码如下,并说明于后:
namespace RemoteSample.Server
{

class
{
[STAThread]
internal static void Main(string[] args)
{
IWindsorContainer container = new

Console.ReadLine();
}
}
}
ServerConfig.xml文件:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

<facilities>
<facility id="remote.facility" type="Castle.Facilities.Remoting.RemotingFacility, Castle.Facilities.Remoting"
remotingConfigurationFile ="../../RemotingTcpConfig.config"
isServer="true"
registryUri="kernel.rem" >
</facility>
</facilities>

<components>
<component
id="remote.math"
service="RemoteSample.Components.IRemoteMath, RemoteSample.Components"
type="RemoteSample.Components.RemoteMath, RemoteSample.Components"
remoteserver="component" >
</component>
</components>

</configuration>
RemotingTcpConfig.config文件:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
<application>
<channels>
<channel ref="tcp" port="2133" />
</channels>
</application>
</system.runtime.remoting>
</configuration>

说明:
使用Castle 的Remoting Facillity 使用Remoting 。
1.配置指出在2133 port上要建立TCP Channel, 2133 port上要建立tcp Channel

2.<components>指出在Server端注册所要使用的组件、服务的名称及启动的方式。其中component表示一个执行个体可供多个前端来呼叫,可保留其状态,另一种则为ClientActivated,一个执行个体只能服务一个前端的呼叫,无法保留其状态。
步骤3:在Client端使用Remoting对象
ClientConfig.xml
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

<facilities>
<facility
id="remote.facility"
type="Castle.Facilities.Remoting.RemotingFacility, Castle.Facilities.Remoting"
remotingConfigurationFile="../../RemotingTcpConfigClient.config"
isClient="true"
remoteKernelUri="tcp://localhost:2133/kernel.rem"
baseUri="tcp://localhost:2133" >
</facility>
</facilities>

<components>

<component
id="remote.math"
service="RemoteSample.Components.IRemoteMath, RemoteSample.Components"
type="RemoteSample.Components.RemoteMath, RemoteSample.Components"
remoteclient="component" />

</components>

</configuration>
RemotingTcpConfigClient.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
<application>
<channels>
<channel ref="tcp" port="0" />
</channels>
</application>
</system.runtime.remoting>
</configuration>
程序代码如下:
namespace RemoteSample.Client
{
/// <summary>
/// RemoteClient的摘要说明。
/// </summary>
public class
{
[STAThread]
static void
{
IWindsorContainer container = new
IRemoteMath remoteMath = (IRemoteMath)container[typeof(IRemoteMath)] ;
Console.WriteLine("Client1 TCP Call Sum method {0} Counter {1}",remoteMath.Sum(10, 20, 30),remoteMath.CallCounter);

Console.WriteLine("....press a key to stop");
Console.ReadLine();
}
}
}


代码下载:​​​RemotingSamples.rar​

标签:Remoting,对象,RemoteSample,int,Components,Castle,NET,Channel
From: https://blog.51cto.com/shanyou/5789593

相关文章

  • ASP.NET MVC 4中的单页面应用程序
    ASP.NETMVC4beta中包含了一个实验项目,用作开发“单页面应用程序(singlepageapplications)”。该项目也称为ASP.NETSPA,其项目类型基于一组开源库以.........
  • ASP.NET MVC扩展库
    很多同学都读过这篇文章吧ASP.NETMVC中你必须知道的13个扩展点,今天给大家介绍一个ASP.NETMVC的扩展库,主要就是针对这些扩展点进行。这个项目的核心是I......
  • IBatisNet 开发指南系列文章更新
              两周前完成 ​​​IBATISNETNET1.3开发指南系列文章​​​   ,只是作了最基本的介绍。最近工作忙,没什么时间写,今天放假了,花了大半天时间才写......
  • Phalanger---PHP的.NET编译器
    除了IronPython,微软正试着让.NET平台支持更多你我熟知的动态语言,例如Perl、PHP、Ruby。根据IronPython的创造者、也是微软CLR开发部门主管JimHugunin表示,微软正试着以不同......
  • .net core 5 k8s win32 error 258问题记录
    同文搜索到结论:https://www.cnblogs.com/xwgli/p/13800550.html今日在K8S中测试高并发,压测到1万+个TCP连接,内部每40S定时查询一次接口,采用同步轮询每秒大约100个请求一次,......
  • .net core 5在k8s中部署并发问题之redis
    https://www.cnblogs.com/xwb2535/p/16792124.html 在之前的日记中,记录了csredis+freeredis的不足,今天暂时将redis改用StackExchangeRedis,发现相关redis链接不上......
  • ASP.NET Web API和依赖注入
    ASP.NETWebAPI中自带了一个​​依赖解析器​​​(DependencyResolver)接口,允许我们向控制器注入依赖关系。不过,​​MarkSeemann​​​建议要达到此目的最好还是使用​​IH......
  • 【kubernetes入门到精通】Kubernetes架构分析介绍篇「进阶篇」
    意志的出现不是对愿望的否定,而是把愿望合并和提升到一个更高的意识水平上。——罗洛·梅官方网站​​Kubernetes中文官方网站​​​​Kubernetes英文官方网站​​Kubernetes......
  • Magnetar spin-down glitch clearing the way for FRB-like bursts and a pulsed radi
    arXiv:2210.11518 [pdf, other]Magnetarspin-downglitchclearingthewayforFRB-likeburstsandapulsedradioepisodeG.Younes (1,2), M.G.Baring (3), ......
  • 博客园 首页 新随笔 联系 管理 .NET 5在Docker中访问MSSQL报错
    不知道你有没有在.NETCore/.NET5的Docker访问MSSQLServer数据库,如果有,那么很有可能会遇到这个错误。1SSL版本错误最近在公司用.NET5重构部分业务服务,由于之前老系......