Connect TIBCO EMS with bash

313 views Asked by At

I try to write a bash script that can read and write to tibco ems server. Is it possible? What i need to do that ?

thanks

1

There are 1 answers

0
EmmanuelM On

You would need to develop a utility able to write messages to a queue and read messages from a queue. This can be done using EMS Java API. Then this utility would be called from your script.

A good starting point would be to look at the samples provided with the product in the <TIBCO_HOME>/ems/8.6/samples/java directory (look at tibjmsMsgConsumer.java and tibjmsMsgProducer.java).