View Source

This example provides you a code snippet for RPC calls for enabling a pool/specific license.
{noformat}
#### For enabling the pool/specific license
#### Make RPC Call Start ####
$xmlrpc_msg = new xmlrpcmsg('licensing.enableLicense', array(
new xmlrpcval($licPool, 'string')
));
$reply = $client->send($xmlrpc_msg);
#### Make RPC Call End ####


{noformat}