Initiates the process of activating a license by authorization code.
If the server identifies a license key that corresponds to the user, an Authorization Code is generated and emailed to the user. The client application must then call QlmLicense.ActivateLicenseByAuthorizationCode.
To use a proxy server, you must set the UseProxyServer, ProxyUser, ProxyDomain and ProxyPassword properties prior to calling this function.
C#: void RequestAuthorizationCodeForActivation(string webServiceUrl, string email, string mobile, string computerID, out string response)
Parameters
webServiceUrl - URL to the QLM License Server
email - Email address of user that owns the license
mobile - Mobile Phone Number of the user that owns the license
computerID - Unique computer identfier
response - XML fragment containing the result of the call. The Xml fragment schema is as follows:
<?xml version='1.0' encoding='UTF-8'?>
<QuickLicenseManager>
<result>result of theactivation</result>
</QuickLicenseManager>
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>
Comments
0 comments
Please sign in to leave a comment.