windows-ce 中的哪些消息传递技术可以保证消息传递?
我们正在构建一个基于 windows-ce (6.0R3) 的设备,该设备需要有保证且可审计的消息向上和向下传输(包括存储和转发)。
我一直在寻找超越以下的选择:
- MSMQ 是
- 一种专有解决方案(我们的 原型设备正在使用)
- AMQP(例如,我还没有找到任何用于 CE 的 RabbitMQ 客户端)
...还有其他客户端吗?
我们将传输敏感数据(谁不是?!?! )通过公共网络,并且需要大规模选项。任何在嵌入式设备上运行的东西都对性能敏感。
We are building a windows-ce (6.0R3) based device that requires guaranteed and audit-ready message delivery (including store & forward) up to and down from the cloud.
I have been looking for choices beyond:
- MSMQ
- a proprietary solution (what our
prototype device is using) - AMQP (I have not found any RabbitMQ clients for CE, by example)
... are there any others?
We will be transporting sensitive data (who isn't?!?!) over a public network, and large scale options are required. Anything running on an embedded device will be performance sensitive too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apache Qpid (http://qpid.apache.org) 有一个我移植到 Windows 的 C++ 客户端;它也可以轻松移植到 CE。 Apache Qpid C++ 运行 AMQP 0-10;如果您需要与 RabbitMQ 代理(AMQP 0-8?)进行互操作,这可能是一个问题。
Apache Qpid (http://qpid.apache.org) has a C++ client that I ported to Windows; it could also be ported to CE without much trouble. Apache Qpid C++ runs AMQP 0-10; if you require interop with RabbitMQ broker (AMQP 0-8?), this may be a problem.