随笔分类 -  Remoting

摘要:客户端信道处理 ProcessMessage1 加密通讯 初始唯一标识和加密提供程序 向服务器请求密钥并根据响应的密钥初始化加密提供程序(服务端需验证IP合法性) 根据加密提供程序加密请求消息 向服务器发起请求 根据加密提供程序解密响应流。 返回。2 非加密通讯 初始唯一标识和加密提供程序 向服务器 阅读全文
posted @ 2017-11-07 17:12 缘续成 阅读(458) 评论(0) 推荐(0) 编辑
摘要:1 服务端在调用 System.Runtime.Remoting.RemotingConfiguration.Configure(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile, false);时,会创建服务器提供程序实例(调用两 阅读全文
posted @ 2017-11-07 11:34 缘续成 阅读(324) 评论(0) 推荐(0) 编辑
摘要:https://msdn.microsoft.com/zh-cn/library/tdzwhfy3(v=vs.90).aspx 阅读全文
posted @ 2017-11-07 10:25 缘续成 阅读(98) 评论(0) 推荐(0) 编辑
摘要:1 服务端 <configuration> <system.runtime.remoting> <application> <channels> <channel ref="tcp" port="8086"/>//端口注册成功,telnet可以通 </channels> <service> <wel 阅读全文
posted @ 2017-11-03 11:57 缘续成 阅读(169) 评论(0) 推荐(0) 编辑
摘要:public class RemotingHelper { private static bool _isInit; private static IDictionary _wellKnownTypes; public static object GetObject(Type type) { if... 阅读全文
posted @ 2017-11-03 09:12 缘续成 阅读(193) 评论(0) 推荐(0) 编辑