TIBCO Rendezvous

  • Thread starter Thread starter arun.hallan
  • Start date Start date
A

arun.hallan

Hi,

I have not been able to find any tutorials for using TIBCO RV online.

I'm looking for something that will tell me how to send messages to a
TIBCO network through it's API.

Can you tell me of any you know?
Thanks.
 
Hi,

I have not been able to find any tutorials for using TIBCO RV online.

I'm looking for something that will tell me how to send messages to a
TIBCO network through it's API.

Can you tell me of any you know?
Thanks.

Thought id paste the way i did it for anyone who needs it in the
future.
Also, note there is an examples folder that comes with the app.

TIBCO.Rendezvous.Environment.Open();
NetTransport netTransport = netTransport = new
NetTransport(port,ip,"");

CMTransport cmTransport = new CMTransport(netTransport, cmname, true);

CMMessage cmMessage = new CMMessage();

cmMessage.SendSubject = subject;
cmMessage.AddField("Type",x);

cmTransport.Send(cmMessage); }

TIBCO.Rendezvous.Environment.Close();
 
Back
Top