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
2
votes
1 answer

Tibco Message Listener - Garbage collected

I've got a strange question,and let's start from a piece of code: foreach (var para in paras) { var specificSubject = string.Format(subject, paras); _listener = new Listener(Queue.Default, transport, specificSubject, new object()); …
h9uest
  • 10,958
  • 3
  • 18
  • 24
2
votes
1 answer

How do I find which client CMName is pending ack in TibRV?

I have certified messaging enabled for TibcoRV and ledger file which is constantly growing causing my app to die eventually. With full control of the box (access to TibRV web interface, ledger file itself) is it possible to determine what CMName…
Jan Zyka
  • 17,460
  • 16
  • 70
  • 118
1
vote
0 answers

Tibco FT issue because of heartbeat

I have 2 instance of my Java application (A & B) running on same machine, where B is blocked for activate() callback. This is how I register my callback: new TibrvFtMember(this.tibrvQueue, this.orv, this.transport, …
BalaB
  • 3,687
  • 9
  • 36
  • 58
1
vote
1 answer

Does TIBCO rvcache still exist?

A few years ago I worked on a project where we used TIBCO Rendezvous Cache (rvcache) with the TIBCO messaging framework. It would cache the topics/subjects and then it would send the cache when requested. The project I'm currently on is looking to…
Joseph
  • 65
  • 8
1
vote
0 answers

How to write Tibco rv appenders in log4j2? Does log4j2 support Tibco rv appenders?

We are migrating from log4j 1.x to log4j 2.3.2.Our code has few Tibco RV appenders in properties file like below: root.append.rv= rv.login.threshold=WARN How to do this in log4j2.3.2? Kindly help me with a sample code.
1
vote
0 answers

Python library for Tibco message queue connection with client and server side python scripting

Need a proper python library for Tibco message queue - client side and server side samples as well in python. On Client side programing using python program: Below are the action items Required to connect Tibco message queue. Send the user request…
Prasanna C
  • 19
  • 6
1
vote
0 answers

TIBCO RV - Remote queue writing max message rate limits

My application is located in HK and writes directly to a remote queue in Korea daemon. It is a single threaded application. Ideally, I should write to a local queue which should ship the message to remote queue. Seeing the rate at which I am able to…
The Roy
  • 2,178
  • 1
  • 17
  • 33
1
vote
0 answers

Tibco RV fault tolerance group number of active-inactive members discovering

I know a FT group name and transport. I need to discover how many active and inactive members does this FT group hold. What options do I have?
Herring
  • 173
  • 1
  • 10
1
vote
1 answer

Watchdog for Messaging Bus

So I started to work in a semiconductor company as a working student and they gave me the task to write a watchdog for the tibco messaging bus. It should show the workload of the messaging bus, if it is busy at the moment or not. I havent figured…
NECben067
  • 427
  • 1
  • 4
  • 20
1
vote
2 answers

Check if a Tibco Rendezvous Inbox is valid

Is there a way to tell if an RV inbox has a valid, active endpoint? I have a system where clients create RV Inboxes. These are then passed to other components in the system which can use the Inbox to send messages to the client. I would like a…
Richard Shepherd
  • 1,300
  • 17
  • 20
1
vote
1 answer

Spring-integration with tibco Rendezvous

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…
tintin
  • 5,676
  • 15
  • 68
  • 97
1
vote
0 answers

tibco rendezvous (tibrv) bitness

I have multiple different applications with embedded java - some are 32- and other 64-bit on Win 7. I'm trying to use TIBCO Rendezvous in a few of these, the problem is because they use the same PATH they all find 32-bit tibrv and the 64-bit ones…
Sergey
  • 21
  • 4
1
vote
1 answer

What/where is the best set of documentation for the .NET implementation of the TIBRV API?

I've used the .NET API extensively now, but am hitting some edge cases where examples, experience, and searches are kind of hitting a brick wall. For some reason I can't seem to find good documentation (reference docs or otherwise). Does anyone know…
Kit
  • 20,354
  • 4
  • 60
  • 103
1
vote
1 answer

Tibco RendezVous messages content log

I would like to know if there is way to log tibco RV messages content ? I need to know when a particular message was received. Also, where is the current log page pointing to? Are there log files ? Thanks a lot.
Nemoz
  • 11
  • 1
1
vote
0 answers

Expected behavior for rv certified message sender and listener example code?

I'm running Rendezvous on a Windows 7 PC. I ran the C++ example code provided by Tibco, implementing a simple certified message sender (cmsender.cpp) and a certified message listener (cmlistener.cpp). In principle, it looks like the outcome of…
Michael Horii
  • 55
  • 1
  • 5