Hi all,
I’m experimenting cryptlex using trail version and activated the trail and followed each and every step mentioned.
I am trying to do an OfflineActivation
- Generated the OfflineRequestfile
- Generated the ResponseFile
Now, If i try to do the offline activation with the response file, it gives me Failure LA_FAIL
status.
C++ Code
int offline_status = ActivateLicenseOffline("offline_response_76eb4a63-6013-4dfd-ae1f-fafec3d1bd81.dat");
printf("License Activation Status: %d\n", offline_status);
if(offline_status == 0){
printf("License Activated Offline");
}
char* vv = new char[256];
int version_status = GetLibraryVersion(vv, 256);
printf("Version: %s\n", vv);
License Activation Status: 1
Version: 3.20.7
If I do the same steps in python, it works fine. Not sure what I’m doing wrong.
Python Code
I’m sure that the reponse file path is correct.
Please advice,
Thank you