Description
This method will validate Product for web licensing based on provided product ID. Method will check if there is a product with such ID and if web licensing is enabled for that product.
Definition (VB.NET)
<WebMethod()> _
Public Function WebLicensingValidateProduct(ProductID As Integer) As Result
Security
No authorization is required for this method.
Parameters
Name | Type | Description |
---|---|---|
ProductID | Integer | Product ID value |
Return values
In case of success Result.Status is set to STATUS_SUCCESS
In case of error appropriate error status code is returned.
Some of the error codes this method could return:
STATUS_PRODUCT_MISSING - there is no product with provided ID.
STATUS_PRODUCT_WEB_LICENSING_ERROR - product is present but web licensing is not enabled for product.
Notes
This method will increase error counter for a calling host in order to limit number of calls to this method.