使用 JMS 连接到 IBM MQ
我想使用 JMS 连接到 IBM MQ。 如何指定队列管理器、通道和其他属性?
I want to use JMS to connect to IBM MQ.
How do i specify the queuemanager, the channel and other properties ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用 JNDI 进行 connectionFactory/destinations 查找,为
InitialContext
提供以下属性:使用 WAS (Websphere Application Server) 队列,属性如下:
其余的如下:
Using JNDI for connectionFactory/destinations lookups, provide the
InitialContext
with the following properties:using WAS (Websphere Application Server) queues, the properties would be as follows:
The rest would be as follows:
您需要创建一个 MQQueueConnectionFactory bean 并在其中设置所需的属性。
You need to create an MQQueueConnectionFactory bean and set the required properties in it.
这里的教程可能会有所帮助:
此外,请务必使用正确版本的 WMQ 的文档。 V7.0 是最新版本,v6.0 的支持截止到 2011 年 9 月。无论您使用哪一个,请查看《使用 Java》手册以获取正确的版本:
v6.0 手册
v7.0 手册
Here's a tutorial that may help:
Also, be sure to use the docs for the right version of WMQ. V7.0 is current and v6.0 is supported until September 2011. Whichever you are using, look at the Using Java manual for the right version:
v6.0 manual
v7.0 manual
使用 IBM 客户端 API
Using IBM client API
最好的方法是使用命令行。这很有趣。您可以从 http://publib 下载命令参考书。 boulder.ibm.com/iseries/v5r2/ic2924/books/csqzaj05.pdf
如果您的 MQ 服务器在 Windows 计算机上运行,您可以选择使用 MQExplorer 并以图形方式配置它。
the best way is to use the command line. It is a lot of fun. You could download the command reference book from http://publib.boulder.ibm.com/iseries/v5r2/ic2924/books/csqzaj05.pdf
If your MQ server is running on a windows machine, you could optionally use a MQExplorer and configure it graphically.