Products | Versions |
---|---|
TIBCO Rendezvous | - |
Not Applicable | - |
Resolution:
Description:
============
We have deployed over 500 Production multicast services across 1000s of hosts. For each multicast service, we need to create an inventory of full service parameters (service, network and daemon). Is there a utility that can be used to programmatically discover the service parameters for each service on each daemon across all hosts.
Environment:
============
All
Resolution:
===========
TIBCO does not have such a utility available for customers. You may use RV Configuration Tools API to implement your own function.
The API used to create this tool is provided and hence users can create their own tool if required. There is a sample "Example.java" program that can be found under <TIB/RV_INSTALL>/src/examples/configapi directory that can be used as a reference or using the Admin API.
The method RvdProxy.getClientTransports() returns an array of objects of this class, including the username, the UDP/PGM service on which the transport communicates and the subscriptions that this transport has registered with the daemon.
The method RvdProxy.getServices() returns an array of objects of this class, including the number of transports that use this service, detailed information about the network service, UPD/PGM service number, etc.
The method Router.getLocalNetworkInterfaces() returns an array of objects of this class, including the local network name, the network specification, the UDP/PGM service of the local network, and the import and export subjects of this local network.
For details, refer to the TIBCO Rendezvous Configuration Tools Guide.