WebSphere MQ.NET - difference between IBM.XMS.dll and amqmdnet.dll

I used .NET quite widely, but I'm pretty new to WebSphere MQ. I need to create a .NET application that reads messages from MQ. I continue to see articles linking to the IBM.XMS or amqmdnet libraries.

I think I should use the IBM.XMS library, but what is the difference between the two?

Thanks!

+6
source share
1 answer

IBM.XMS is an implementation of the IBM JMS specification in C #. You need to use IBM.XMS if you need a JMS style for messaging in C # or any other .NET platform language. On the other hand, amqmdnet is a built-in implementation of the MQ API, something similar to C MQI, but in C # it is object-oriented. Use amqmdnet if you want to use your own MQ messaging style.

NTN.

+7
source

Source: https://habr.com/ru/post/909500/


All Articles