The Distributed Licensing feature lets you configure your RealServer to
manage stream licenses among "Publisher" and "Subscriber" servers. A
Publisher serves a stream license count to a Subscriber. A Subscriber
receives a stream license count from a Publisher. For robust stream
license serving, a cluster of Publishers can act as a redundant source
of streams for a Subscriber.
var isPub = RMAGetPropertyValue( "license.Summary.DistributedLicensing.Publisher.Enabled" );
isPub = (((isPub != null) && (isPub != 0)) ? true : false);
// hide the Pulisher Instructions if this server is not a publisher
if ( ! isPub )
{
RMAOutput( "" );
}
else // begin 'hide' mode for publishers
{
RMAOutput( "" );
}
|