I am working standalone spring-boot application that needs to connect to a topic of a Tibco RV messaging system(Not Tibco EMS). I would like to know if there is a way to connect a spring application with the Tibco RV messaging system? Whatever examples I have seen are using Tibco EMS but can't find any documentation for connecting a spring application in a peer-to-peer messaging system like Tibco RV.
Any kind of help in this would be appreciated.
The link is wrong in your question. Anyway looking into the Internet there is no JMS bridge for Tibco RV and we don't have choice unless use their Java API from the custom Channel Adapter implementations. Yes, for publishing messages to the RV we would need only
TibrvTransport
in the@ServiceActivator
method. But for theTibrvListener
we definitely need to implementMessageProducerSupport
.