IsIllegalComputer

Description

Checks if the current computer is properly registered in the QLM database.

  void IsIllegalComputer (string webServiceUrl,
                          string activationKey, 
                          string computerKey, 
                          string computerID, 
                          string computerName, 
                          string qlmVersion, 
                          out string response)

Parameters

ParameterTypeDescription
webServiceUrlstringURL to the QLM License Server
activationKeystringthe activation key
computerKeystringthe computer bound key
computerIDstringUnique identifier of the computer on which the license was activated.
computerNamestringthe computer name
qlmVersionstringthe version of the QLM engine
responseout stringXML fragment containing the result of the call. The Xml fragment schema is as follows

Response XML format

<?xml version='1.0' encoding='UTF-8'?>
<QuickLicenseManager>
<result>The activation key is valid.</result>
</QuickLicenseManager>
 

Example error response

In the event of an error, the XML fragments returns:

<?xml version='1.0' encoding='UTF-8'?>
<QuickLicenseManager>
<error>Details about the error</error>
</QuickLicenseManager>

Remarks

If the computer is registered in the database, IsIllegalComputer returns false.

If the computer is not registered in the database, the system will try to activate the license on this computer. If all available activations are already consumed, the activation will fail and IsIllegalComputer will return true. If there are unused activations, this computer will be activated and IsIllegalComputer will return false.

For more details about the detection of illegal computers, refer to this article

Use ParseResults to interpret the results of the call and load the returned data into an ILicenseInfo object.

ILicenseInfo li = new LicenseInfo();
string message = string.Empty;
if (lv.QlmLicenseObject.ParseResults(response, ref li, ref message))
{
  // The operation  was successful	
}
else
{
  // The operation failed
}