Questions tagged [tibco-rv]

Tibco Rendezvous is a commercial message bus product for enterprise application integration (EAI) sold by the TIBCO company.

Tibco Rendezvous is a messaging platform built on top of multicast communication. Messages withing Tibco Rendezvous are delivered either using multicast or point-to-point communication (for inbox messaging or routing daemon communication).

All the messages are organized via transports. Each transport consists of service (number), network interface to use, multicast group to send/listen messages, daemon to connect to. For example:

daemon=tcp:7500 # local daemon
network=loopback;239.0.0.1;239.0.0.1
service=9999

All the messages within transport are split by subjects, which can then be used to filter messages to receive or forward by routing daemons.

Routing system allows one to configure a set of connections between routing daemons with services and filtered subjects configured, with a certain weight assigned for each connection, so that Tibco RV can then determine which route to take with minimal weight.

Message subjects are split by . (dot) symbol and filtering can accept two wildcards: * and >. Where * means any chunk between two dots, and > - is "anything trailing". For example A.*.C.> will match subjects: A.B.C.D, A.C.C.D, A.E.C.D.E etc.

70 questions
0
votes
2 answers

Is there a way to use spring integration tcp udp adapter with tibco rv?

I have a legacy app which uses Tibco RV to publish and subscribe. I am rewriting the app to spring boot app. Now, I am trying to remove Tibco RV dependency. Is there a way to use spring integration UDP adapter to publish and subscribe to/from Tibco…
shiva
  • 51
  • 5
0
votes
2 answers

how to know which line of jar file error out while running it in jboss?

i am executing some jar file in my tibco process deployed on jboss server. so my question is if any of the jar file errors out how can i know which line or method of the jar file errored out?
0
votes
1 answer

tibco-rv inbound outbound messages

I work as a working student and we use the tibco rv bussystem for messages between our 5 servers. My question is, what exactly are outbound and inbound messages? In the tib_rv_concepts.pdf it says, that outbound messages are transmitted from program…
NECben067
  • 427
  • 1
  • 4
  • 20
0
votes
1 answer

Tibco-Rv: How to establish two way communication using TibRv-Java api

Is it possible to have a callback while sending Tbrv msg using TibRvdTransport->send(msg) and in subscriber can we send a reply ? I want to send "Hello" from publisher and receiver should receieve it and send "Hi" reply. Publisher must get this…
Saawan
  • 1
  • 2
0
votes
2 answers

Tibco pagebus framework testing

We are using the Tibco pagebus framework as a middle ware for message publishing/subscribing. Enterprise application we are developing is using the above framework. Can you please suggest me how to test the Tibco pagebus framework.(framework…
Malju
  • 27
  • 4
0
votes
1 answer

Getting a Heartbeat message error in a TIBCO custom adapter

I am running a TIBCO custom adapter on an AS400 server , there was no issue in the starting but suddenly it started giving the below issue. Could anyone tell what can i check to fix this issue Server AS400/i series` 2017-11-30 13:12:48,927 INFO…
Rasesh
  • 9
  • 1
0
votes
1 answer

Creating TIBCO Rendezvous Listener wait for response on different subject and candidate event key

Messages published and response received are on two different subjects. Right now I have following set of functionality in my java class. Class is implementing TibrvMsgCallback interface. How can i make sure that whatever the message is published i…
Umair
  • 860
  • 2
  • 13
  • 30
0
votes
2 answers

How to get better performances using TIBCO RV from C#?

I'm using TIBCO RV .NET API (TIBCO.Rendezvous.dll). Do you know if there is a better way, in term of performance, to receive and read messages from a RV channel in C#? I found the Message type - the logical wrapper over a RV message - being quite…
Romain Verdier
  • 12,833
  • 7
  • 57
  • 77
0
votes
2 answers

Tibco send command

I'm trying to send message using tibrvsend command. The scenarios is like below , I've server running on network , I'm able to ping the server Ip address and able to connect using remote desktop connection. On the server i'm listening to the…
srinannapa
  • 3,085
  • 8
  • 49
  • 66
0
votes
1 answer

Can JMX be used to Monitor TIBCO Rendzevous

We would like to monitor TIBCO Rendzevous using JMX. Is it possible , if yes, How we can do it.
Rama
  • 1
  • 1
0
votes
0 answers

RVCM sending error once every week. TibrvException[error=20,message=Invalid subject]

We're running a trading application with TIBCO RVCM transport (version 5.3) for many years and it's very stable. Recently the application hits the same "Invalid subject" issue once every week, and IT need to manually restart the application to fix…
0
votes
1 answer

Tibco Rendezvous: How to create complex Msg Responses?

I'm building a Tibco Rendezvous message (8.4.5) with its JAVA API. The reference I have got are tibrvlisten sniff that gave me only a text representation of what is wanted from the system is expecting a Tibco Rendezvous message from my…
0
votes
1 answer

Can't deploy MDB connected to RA using JBOSS 6.4.2 GA

I have a problem deploying a MDB connected to a Tibco RV Resource Adapter, but while the RA is correctly deployed, the MDB is raising issues that I could not solve despite several attempts. This is what I have tried to make my MDB deployed in…
0
votes
1 answer

TibcoRV Daemon rvd or rvdaemon

I am new to TibcoRV. On Windows TibcoRV installation, I can find two executable files in the bin folder under the installation directory. rvd.exe rvdaemon.exe It looks like both of these two are TibcoRV daemon executable. Running either of them…
Kevin
  • 5,972
  • 17
  • 63
  • 87
0
votes
0 answers

java.lang.UnsatisfiedLinkError: no rvjs11 in java.library.path

When trying to initiate a TIBCO RV session, I am getting below error.. Exception in thread "main" java.lang.UnsatisfiedLinkError: no rvjs11 in java.library.path at java.lang.ClassLoader.loadLibrary(Unknown Source) at…
Arajit
  • 133
  • 3
  • 15