Approaches to consume the data from solace queues on need basis.
Hi Team,
Could anyone share the solution approach for consuming the data from solace queues whenever it is needed. Lets says every 12 hrs or 24 hrs, the time frame might change as per the need.
I am more looking in to pull mechanism, unlike RDP( Push).
We have also MuleSoft in the approach, any feasible solutions is much appreciated.
Thanks,
Vempati
Comments
-
Hi @Vempati , Currently Solace supports only REST POST for REST consumers. However, Solace supports synchronous and asynchronous consumers from other APIs such as Java and C as well as JMS consumers. Once connected, messages will be delivered to these clients from Solace Queues. You can schedule to run these consumer clients as per your requirement. Here is a sample JMS Async Queue consumer:
https://github.com/SolaceSamples/solace-samples-jms/blob/master/src/main/java/com/solace/samples/QueueConsumer.java// nram
2