Abhijeet Behare
Abhijeet Behare

Reputation: 607

Is It possible if i have put message to ActiveMq jms and consume it from RabbitMq jms?

I am new to jms, I have did poc of spring jms with ActiveMq. In which I am producing messages in queue and consume it using consumer and one poc in which I am using spring jms with rabbitmq with producer and consumer and have added plugin of jms in rabbit mq to use spring jms with rabbitmq.

Is it Possible if I put Produce message in active MQ and Consume that messages using spring jms rabbitmq consumer?

Is It possible if yes then How?

Thanks in advance.

Upvotes: 1

Views: 293

Answers (2)

Vasu
Vasu

Reputation: 22384

Typically, you would need an adapter layer to move the JMS messages from one MQ to another (i.e., active MQ to Rabbitmq etc.).

You can look here for some notes (IBM specific) on JMS adapters, but the underlying concept is the same i.e., consuming from one MQ and producing the messages to another MQ.

Upvotes: 1

Gary Russell
Gary Russell

Reputation: 174484

ActiveMQ and RabbitMQ are two different brokers - why do you need (and why do you think it's possible) to send messages to one broker and receive them from another?

You would need another application to move the messages; it's not clear why you would want to do that.

Upvotes: 0

Related Questions