Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Ruby, not JRuby, in JMS queue?

Tags:

ruby

jms

What is the easiest way of pushing a message to a JMS queue (hosted by Tibco EMS) using Ruby, not JRuby?

like image 993
iwan Avatar asked Nov 04 '22 06:11

iwan


1 Answers

Stomp is a mechanism that allows arbitrary clients to attach to Stomp message brokers. StompConnect turns JMS providers into Stomp brokers, including Tibco EMS (not Tibco RV).

I'm not sure if this is the absolute easiest; other options would include using Tibco EMS's C++ client and interfacing it using a Ruby FFI mechanism. I don't know which would be the "best".

like image 180
Dave Newton Avatar answered Nov 08 '22 10:11

Dave Newton