Gets a data set in xml format that meets the criteria specified in the filter.
Note that to call this function, you must:
- Set the AdminEncryptionKey property
C#: void GetDataSet (string webServiceUrl, string filter, ref string dataSet, out string response)
Parameters
webServiceUrl - URL to the QLM License Server.
filter - SQL filter to determine which records to return. Use a where clause sql syntax, example: ActivationKey='AAAA'. Note that if the filter contains an Activation Key or a Computer Key, you must strip out the dashes in the license key. License keys in the database are stored without dashes.
dataSet - returned dataset containing license key records that match criteria
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>Successfully executed query using filter...</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
Article is closed for comments.