The ReactivateLicense2
method deactivates license, and then activates new custom license (by User ID).
C# |
public ReactivateLicenseRes
ReactivateLicense2(string UserID, string LicKeyTran) |
XML |
<?xml
version="1.0" encoding="utf-8"?> <soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ReactivateLicense2
xmlns="http://tempuri.org/"> <UserID>string</UserID> <LicKeyTran>string</LicKeyTran> <RegistrationID>string</RegistrationID> </ReactivateLicense2> </soap:Body> </soap:Envelope> |
UserID
The User ID to access the
account.
LicKeyTran
The License Key transferred from
the client.
RegistrationID
The Registraton ID to get the
License Key.
C# |
public
struct ReactivateLicenseRes { public int
ErrorCode; public string
ErrorMessage; public string LicenseKey; } |
XML |
<?xml
version="1.0" encoding="utf-8"?> <soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ReactivateLicense2Response
xmlns="http://tempuri.org/"> <ReactivateLicense2Result> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> <LicenseKey>string</LicenseKey> </ReactivateLicense2Result> </ReactivateLicense2Response> </soap:Body> </soap:Envelope> |
ErrorCode
Returns 0 if success; otherwise,
see the Error Code.
ErrorMessage
Returns error message if the
ErrorCode is not 0.
LicenseKey
Returns the License Key.
See Also