如何将消息从 SQL Server sp 放入 Websphere MQ 队列?
是否有 API 可以从 SQL Server 存储过程连接到 Websphere MQ 队列并将消息放入队列?
如果没有,实现这一目标的最佳方法是什么?
Is there an API to connect to a Websphere MQ queue from an SQL Server stored procedure and put a message onto a queue?
If not, what would be the best way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我为此要使用的解决方案是编写一个 CLR 存储过程并将其部署到 SQL Server 上。
在 CLR 存储过程中,我将使用 MQ .NET API。
更新:我使用以下代码创建了一个存储过程:
这尚未准备好用于生产,但已在与 SQL 服务器处于绑定模式的同一服务器上运行的队列管理器上成功插入消息。
The solution I am going to use for this is to write a CLR stored procedure and deploy this onto SQL Server.
Inside the CLR stored proc I will use the MQ .NET api.
Update: I created a stored proc using the following code:
This is not production ready but is inserting messages successfully on a queue manager running on the same server as the SQL server in bindings mode.
有一个比这更简单的解决方案......看看这个。
http://publib.boulder.ibm.com/infocenter/wmbhelp/v7r0m0/index.jsp?topic=%2Fcom.ibm.etools.mft.doc%2Fbc34040_.htm
There is a much simpler solution than that..Check this out.
http://publib.boulder.ibm.com/infocenter/wmbhelp/v7r0m0/index.jsp?topic=%2Fcom.ibm.etools.mft.doc%2Fbc34040_.htm
我能想到的最简单的方法是将信息写入文件,然后使用 rfhutil 将消息导出到队列中。这需要手动干预。另一种选择是使用 JMS 和 JDBC 编写一个简单的 Java 应用程序。
The simplest way I can think of is to, write the information on to a file and then use rfhutil to export the message onto queue. This would require manual intervention. The other option would be to write a simple java application using JMS and JDBC.
.NET CLR 方法也是我的建议。我很想看看代码的示例,我以前从未尝试过!我想应该可以。
The .NET CLR approach would have been my suggestion, too. I'd be curious to see an example of the code, I've never tried that before! Should work I guess.