Send a GetLicenseCounts
action to IDOL Speech Server to view information on modules and resources, in addition to the general information on licensed actions returned by the GetLicenseInfo
action.
The action returns two lists, a list of module license counts, and a list of resources. For example:
<autnresponse> <action>GETLICENSECOUNTS</action> <response>SUCCESS</response> <responsedata> <modules> <license> <name>STT</name> <max>4</max> <used>3</used> <free>1</free> </license> <license> <name>WOUT</name> <max>unlimited</max> <used>5</used> <free>unlimited</free> </license> </modules> <resources> <license> <name>ENUK</name> <max>1</max> <used>1</used> <free>0</free> </license> </resources> </responsedata> </autnresponse>
The action returns the following information for each module and resource license key:
<name>
|
The name of the license key. |
<max>
|
The maximum number of concurrent licensed usage slots. |
<used>
|
The number of instances currently being used. |
<free>
|
The number of available instances. |
You can use the following action parameters to filter the contents of the response:
HideUnlicensed
|
By default, IDOL Speech Server returns both licensed and unlicensed modules and resources; set HideUnlicensed parameter to True to hide any unlicensed modules or resources. |
Modules
|
By default, IDOL Speech Server includes module license information in the response; set Modules to False to exclude this information.
|
Resources
|
By default, IDOL Speech Server includes resource license information in the response; set Resources to False to exclude this information.
|
Key
|
The license key to search for (for example, ENUK ). If you specify a key to search for, the response shows only the matching entry (if found). |
For more information, see the IDOL Speech Server Reference.
|