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

Java Character encoding, ISO to UTF conversion

This subject has been targeted in many discussions and yet we still see new ones showing up. My scenario is as follows: A Java framework running on a Linux server where UTF-8 is the default character encoding in the JVM. The framework consists of…
R E
  • 1
  • 1
0
votes
1 answer

If there are two listeners / subscribers which one replies to TibRvdTransport.sendRequest(message,timeout)

if I am sending a message onto a multicast topic using: TibrvMsg replyMessage = TibRvdTransport.sendRequest(message,timeout) and there are two subscribers, which one actually sends the replyMessage, and what happens to the other replyMessage ? I can…
dasPing
  • 337
  • 1
  • 2
  • 19
0
votes
2 answers

Hessian vs Tibco rv

I'm looking to contrast Tibco rv and Hessian in terms of performance - for a Java application. Any pointer to get me started appreciated. thanks.
Eleco
  • 3,194
  • 9
  • 31
  • 40
0
votes
1 answer

With Tibco Rendezvous, how catch errors that are being printed to the console?

In Tibco, sometimes warnings are printed to the console, e.g.: 2014-06-25 18:13:22 RV: TIB/Rendezvous Error Not Handled by Process: {ADV_CLASS="WARN" ADV_SOURCE="RVCM" ADV_NAME="REGISTRATION.NOT_CERTIFIED.cm.test.subject" …
Contango
  • 76,540
  • 58
  • 260
  • 305
0
votes
1 answer

how to send message to Tibco Renvdezvous using Java?

I'm trying to send message to a Tibco server via Renvdezvous using Java. I used the sample code in the installation folder " %TIBRV_HOME%/src/examples/java" 1 - When I run "tibrvclient" example after changing service, daemon, subject. I found the…
Zinab Taher
  • 131
  • 1
  • 2
  • 13
0
votes
1 answer

Can we modify Data when publisher send the data to particular subscriber in TIBCO EMS or RV?

I am using TIBCO ems as middle ware in my project. TIBCO ems[Publisher, Server] publish the topic and according to topic subscribe , publisher send the data to subscribers.When publisher send the data I want to apply my algorithm over that data and…
Brijesh Patel
  • 33
  • 1
  • 1
  • 5
0
votes
1 answer

Are "Publish-to-Adapter" and "Rendezvous Subscriber" compatible with each other?

when i am publishing with "Publish-to-Adapter" and listening it with "Rendezvous Subscriber", an unwanted xml tag gets inserted at run-time - <__caret_1_caret_> <__caret_2_caret_>, for every repeated elements. Is there any way i can remove the tags…
rohit k.
  • 128
  • 1
  • 14
0
votes
1 answer

TIBCO Error: One Concept file not compiling

I am trying to build the project and the build is successful. However when I try to deploy the EAR file, it is throwing a class not found exception. I looked into the EAR file and I am seeing that the file which is throwing the error is not…
zakSyed
  • 1,364
  • 1
  • 13
  • 30
0
votes
2 answers

Tibco Rendezvous - size constraints

I am attempting to put a potentially large string into a rendezvous message and was curious about size constraints. I understand there is a physical limit (64mb?) to the message as a whole, but I'm curious about how some other variables could affect…
tinkertime
  • 2,972
  • 4
  • 30
  • 45
-1
votes
1 answer

How to fix this error thrown on process exit when using Tibco?

When using Tibco, what is the cause of this error? 2014-06-27 07:58:39.8230|ERROR|Boot.Processes.ServiceRunner|Ctrl-C handler error.| System.ObjectDisposedException: Safe handle has been closed at…
Contango
  • 76,540
  • 58
  • 260
  • 305
1 2 3 4
5