We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed last year.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我们一直在使用 ActiveMQ 消息代理来实现多个 .Net 和 Java 应用程序之间的集成点。 ActiveMQ 建立在 JMS(Java 消息服务)规范之上,并提供了一组可在不同开发环境中使用的 API 和库(ApacheNMS for .Net)
JMS 标准允许任何应用程序/设备通过提供的 API 成为订阅者或发布者,因此无论您的软件是用什么构建的,都可以通过调用指定的 API 从代理发送/接收消息。
AMQ 是一个开源项目,因此它是免费的。它有一个活跃的开发社区,往往对用户的反应非常敏感。
我们花了一些时间来按照我们的意愿配置 AMQ,现在我们成功运行了经过测试的主从代理配置,并确保在一个代理出现故障时能够进行正确的故障转移。这保证了对我们的业务至关重要的高可用性。
We've been using ActiveMQ message broker to implement integration point between multiple .Net and Java apps. ActiveMQ is built upon JMS (Java Message Service) specification and provides a set of APIs and libraries to be used in different development environments (ApacheNMS for .Net)
JMS standard allows any application/device to be a subscriber or publisher via provided API, so no matter what your software is built with it can send/receive messages from the broker by calling the specified API.
AMQ is an open source project, therefore it is free. It has an active development community that tends to be quite responsive to their users.
We've spent some time to get AMQ configured as we wished and now we successfully run master-slave broker configuration that was tested and ensures the proper failover if one broker goes down. This guarantees high availability that is essential for our business.
IBM Integration Bus 将完成这一切。
IBM Integration Bus will do all of this.