您会说 .Net 远程处理依赖于紧密耦合吗?
鉴于客户端和服务器都需要了解有关被远程对象的一切,首先这种耦合是否紧密,其次.Net Remoting 可以以任何其他方式工作吗?
Given that both the client and the server need to know everything about the object being remoted, firstly is this tight coupling, and secondly can .Net Remoting work in any other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有真正回答您的问题,但如果您想放松耦合,您可以将 WCF 的 NETTCP 绑定视为替代方案。客户端可以为实体创建代理 - 这样您就不需要在客户端和服务器之间共享任何程序集(特别是实体)。
Not really answering your question, but if you want to loosen the coupling, you might look at WCF's NETTCP binding as an alternative. The client can create a proxy for the entities - this way you won't need to share any assemblies (notably Entities) between client and server.