Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've used .NET quite extensively but I'm pretty new to WebSphere MQ. I need to create a .NET application that reads messages off the MQ. I keep seeing articles referencing either the IBM.XMS or amqmdnet libraries.

I think I'm supposed to be using the IBM.XMS library but what exactly is the difference between these two?

Thanks!

share|improve this question

1 Answer

up vote 3 down vote accepted

IBM.XMS is the IBM's implementation of JMS specification in C#. You need to use IBM.XMS if you need JMS style of messaging in C# or any other language of .NET framework. On the other hand amqmdnet is the MQ's native API implementation, something similar to C MQI but it's in C# and is Object oriented. Use amqmdnet if you want MQ native style of messaging.

HTH.

share|improve this answer
Also I believe amqmdnet.dll is useful for polling type of implementations with MQ while IBM.XMS is good for publish/subscribe implementations. – tbgox Mar 2 '12 at 20:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.