How to check if features were updated on the server
private void UpdateLicense()
{
// Assuming lv is an instance of the LicenseValidator class:
string dataSet;
string response;
QlmLicenseLib.ILicenseInfo licenseInfo;
licenseInfo = lv.QlmLicenseObject.GetLicenseInfo(String.Empty, lv.ActivationKey, false, out dataSet, out response);
if (licenseInfo != null)
{
string serverFeatures = licenseInfo.Features;
string localFeatures = lv.QlmLicenseObject.GetFeaturesAsString();
if (serverFeatures != localFeatures)
{
//Reactivate the key
lv.ReactivateKey(Environment.MachineName);
}
}
}PreviousHow to allow multiple product versions on the same systemNextRe-signing the xml settings file after modification
Last updated