摘要: Remoting和Web Service是.net中的重要技术,都可用来实现分布式系统开发,如果是不同的平台就只能选择Web Service,但如果是同一平台,就都可以选择了。到底选择那种,当然还有访问效率上的考虑,同时在Remoting中又有三中信道 Http,Tcp,Ipc,它们又各有差别。... 阅读全文
posted @ 2014-05-16 15:13 linuxjava01 阅读(1411) 评论(1) 推荐(1) 编辑
摘要: 1:Socket VS Remoting 使用socket无疑是效率最高的。但是,在复杂的接口环境下,Socket的开发效率也是最低的。故在兼顾开发效率的情况下,可以使用Remoting来代替Socket开发。并且: 1、Tcp通道的Remoting速度非常快。 你可以通过端口查看工具,发现remo... 阅读全文
posted @ 2014-05-16 12:18 linuxjava01 阅读(645) 评论(0) 推荐(0) 编辑
摘要: 1.创建服务端Class:ProxyServerRemoting 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using Inscription.Manadal.EmrPlugIn.NetMes... 阅读全文
posted @ 2014-05-16 11:20 linuxjava01 阅读(185) 评论(0) 推荐(0) 编辑