Compact Framework 3.5中如何实现两个进程之间的通信

发布于 2024-10-15 07:54:51 字数 175 浏览 1 评论 0原文

实现两个进程之间通信的最佳方式是什么?如何在两者之间交换对象?我希望我可以使用像WCF netNamedPipeBinding这样的东西,在我的理解中,这是在普通框架中实现类似功能的一种方法,但看起来这在Compact框架3.5 WCF中没有实现?!

有人可以给我提示吗?

谢谢你

特威克

what is the best way to realize a communication between 2 processes? And how do I exchange Objects between both? I hoped that I can use something like WCF netNamedPipeBinding, in my understanding this is a way to realize something like this in the normal Framework but it looks like this is not implemented in the Compact framework 3.5 WCF?!

Can someone please give me a hint?

Thank you

twickl

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九八野马 2024-10-22 07:54:51

您可以使用 WCF 服务在 .Net CF 中的 2 个进程之间传递对象。但是,您只能使用 basicHttpBinding(但您可以通过使用 SSL 连接来克服这个问题),并且要为 WCF 服务生成 WSDL 代理,您不能使用桌面版本 (SvcUtil.exe),您必须使用 NetCfSvcUtil.exe

http://blogs.msdn.com/b/andrewarnottms/archive/2007/09/13/calling-wcf-services-from-netcf-3-5-using-compact -wcf-and-netcfsvcutil-exe.aspx

希望有帮助。

You can pass objects between 2 processes in .Net CF using a WCF Service. However you can only use basicHttpBinding (but you can overcome that by using a SSL connection) and also to generate a WSDL proxy for the WCF service you cannot use the desktop version (SvcUtil.exe), you'll have to use NetCfSvcUtil.exe

http://blogs.msdn.com/b/andrewarnottms/archive/2007/09/13/calling-wcf-services-from-netcf-3-5-using-compact-wcf-and-netcfsvcutil-exe.aspx

Hope that helps.

倚栏听风 2024-10-22 07:54:51

使用带有自定义协议的普通套接字。

Use plain Socket with a custom protocol.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文