How do I check if my key has been loaded correctly?
For the core iText library, the license is only checked when you load it. If you loaded the license key and there was no exception thrown, then it loaded perfectly fine. The add-ons will regularly check the license key. If there is an issue with your license key, the library will throw a LicenseKeyException
. The possible exceptions and how to resolve them are described below.
If you want to check the license key manually, you can call the following method:
Java
LicenseKey.scheduledCheck(null);
C#
LicenseKey.ScheduledCheck(null);
This will throw a LicenseKeyException
when the key is invalid or corrupt.