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?
|
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? |
|||
|
|
|
There is a much simpler solution than that..Check this out. |
|||
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
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. |
|||||
|