[rabbitmq-discuss] MSMQ Integration

Øyvind Tjervaag oyvind at tjervaag.com
Fri Mar 25 18:55:40 GMT 2011


Hi! Catching up on old mail... 

I've written a "shovel" windows service that moves messages between IBM Websphere MQ and RabbitMQ. Can't share the whole project, but IBMs .NET libs are fairly easy to work with after some head-scrathing..

It's implemented as simple as:

while (1) {
  msg = read_from_rabbit();
  put_to_WS(msg);
  rabbit_ack(msg);
}

.. in _very_ simplified terms...

So sorry for not sharing proper code, but I'd be happy to help on any specific issues :)

/Øyvind

On Mar 9, 2011, at 3:03 PM, Whit Armstrong wrote:

> Has anyone done the same for IBM MQ?
> 
> Thanks,
> Whit
> 
> 
> On Wed, Mar 9, 2011 at 8:38 AM, Alexis Richardson <alexis at rabbitmq.com> wrote:
>> 
>> 
>> Maybe.
>> 
>> Have a look here - http://www.rabbitmq.com/devtools.html#dotnet-dev
>> 
>> At worst you could write a stateless custom relay from our .NET code
>> and Microsoft's...
>> 
>> alexis


More information about the rabbitmq-discuss mailing list