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
1
vote
2 answers

Multicasting in ActiveMQ

Is it possible to implement Tibco RV like multicasting in ActiveMQ? i.e. If Producer publish at X.Y.Z and there are subscriber registered with X.Y.> they will receive the message. As per my knowledge ActiveMQ having no provision of X.Y.> like…
msaero
  • 84
  • 9
1
vote
1 answer

Tibco RV: Message Lifetime + No Copy for fanouts

1, How long does a message live in the listener queue? Until the dispatcher reads the message out of the queue in a "1 publisher 1 consumer" scenario? Listener listener = new Listener(Queue.Default, transport, subject, new…
h9uest
  • 10,958
  • 3
  • 18
  • 24
1
vote
1 answer

Can't start jboss server; NoClassDefFoundError: com/tibco/tibrv/TibrvException

I am trying to setup our jboss server but I get this error even after downloading and installing rendezvous 64bit. Caused by: java.lang.NoClassDefFoundError: com/tibco/tibrv/TibrvException at java.lang.Class.getDeclaredConstructors0(Native…
davidahines
  • 3,976
  • 16
  • 53
  • 87
1
vote
0 answers

TIBCO Messages to POCO and Vice-Versa

I have been doing some TIBCO dev recently, and wondering what is the best way out there for converting to/from TIBCO messages? This is what I'm currently doing, but i know there must be a better way to do this. But my brain is fried at the moment,…
Michal Ciechan
  • 13,492
  • 11
  • 76
  • 118
1
vote
0 answers

Scaling out WCF messaging to clients

I've inherited a system which consists of (for simplicity's sake) 1 WCF service, which multiple clients connect to. The service maintains a data cache (among other work), and the clients also maintain a local cache of the data in order to save a…
1
vote
1 answer

TIBCO RV: Listen to two networks at same time?

I have a test harness application that sends and listens for RV messages on our dev environment. We have 2 separate RV networks (one for each building). The test harness allows me to configure multiple senders, so I can set the service, network, &…
Hershizer33
  • 1,206
  • 2
  • 23
  • 46
1
vote
1 answer

TIBCO Repository instance name is invalid. It must start with the characters

I am new to Tibco. till now all my deployments went fine but suddenly while deploying on one of the machine it failed. I checked application management log which says TIBCO Repository instance name is invalid. It must start with the characters…
user1487454
  • 41
  • 1
  • 6
1
vote
1 answer

TIBCO Rendezvous Rv Daemon - Monitor status and errors

I am working with receiving rv messages, and I cant seem to find away to watch the status of the rv daemon. That is I want to listen to the daemon for errors and report them when they occur. I have been searching through the source code of TIBCO,…
jg943
  • 309
  • 3
  • 21
1
vote
1 answer

Tib RV - listing all the processes that are publishing to a given topic

We have RV messaging systems publishing and receiving messages.Recently some underlying jars were upgraded - these are serialization jars used by all publishers and subscribers. However , it seems that some of the publishers are still referencing…
Bhaskar
  • 7,443
  • 5
  • 39
  • 51
1
vote
1 answer

ActiveMQ command line equivalent to tibrvlisten

I was wondering if the community here knew of a way to listen to topics on an ActiveMQ broker via the command line similar to TibcoRV's 'tibrvlisten' Thanks
Hiral
  • 87
  • 2
  • 6
0
votes
0 answers

How to send message using Tibco RV to asynchronous way?

Currently, I make the Server to send the message using Tibco RV 8.5 version. I used NetTransport to send the message. However, I get request to send all message to async way. So, I look through the document, but there's no way to send the message to…
0
votes
1 answer

Routing to receivers with daemon only - without network or service

When a sender specifies only daemon, without network and service, a receiver with similar settings can see messages on a given subject. However if the sender specifies the daemon explicitly, and network with service, then the receiver (which…
0
votes
1 answer

Tibco 8.6 64 bit RVD connection issue

We have 2 Tomcat 8 servers.  Both are running Java 1.8. I have a war file deployed on both servers.  It works on 1 server, but not the other.  We can’t figure out the reason why.  The 2 servers should have identical setups. I am using Tibco 8.6 64…
cuffedm
  • 5
  • 3
0
votes
1 answer

How to Install AMX TIBCO BPM

First I have installed the Red HAT Enterprise Linux 7.4 and then Installed the JDK 8 on it. I have 5 folders in my downloads : assembly_tibco_com_tibco EMS…
Learner
  • 3
  • 2
0
votes
1 answer

Tibrv conflict with wpf? (.net 3.5)

I'm trying to listen to tib rv msg (using 7.5.3) in c# with 2 test examples: one is pure c# console app, the other is c# WPF app. What I found is the console app works fine but the WPF one stop getting msg after a while(it varies, sometime after 50…
Jack Chen
  • 1
  • 2