独立 Hornetq 机器上带有 jms 队列的 Jboss
我有2台机器: 1.Jboss 5(应用) 2. Hornetq(jms队列)
我必须如何配置jboss和hornet才能协作?
我希望在不同的机器上有 jms 队列。
I have 2 machines:
1. Jboss 5 ( application )
2. Hornetq ( jms queue )
How i must configure jboss and hornet to cooperate?
I wish to have jms queue on diffrent machine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 HonetQ 机器上,您需要某种方式与本地 HornetQ 安装进行交互。为此,您可能需要查看 Stomp 连接器。将 stomp 连接器绑定到本地接口并通过简单的套接字与其通信是向本地 HornetQ 发送消息的一种简单方法。现在,要将消息转发到本地 HornetQ 实例或从本地 HornetQ 实例转发到服务器,需要在计算机 (1) 和 (2) 上进行“桥接”配置。
此设置在 HornetQ 文档中有详细记录。设置完成后,当网络连接不可用时,您还可以使用持久队列和在远程计算机上假脱机处理消息来执行一些很酷的操作。
瑞克
On your HonetQ machine, you'll need some way to interact with the local HornetQ install. You might want to look at the Stomp connector for this purpose. Binding the stomp connector to the local interface and communicating with it through a simple socket is an easy way of sending messages to your local HornetQ. Now to get your message forwarded to/from your local instance of HornetQ to your server will require a "bridge" configuration on both machine (1) and (2).
This setup is well documented in the HornetQ documentation. Once this is setup you can also do some cool stuff with durable queues and spooling of messages on your remote machine when network connectivity is unavailable.
Rick