Hi Michael,
I would like to add something more to my previous post. In the meanwhile, we try to find out the cause of this issue and provide you a fix, can you please try the following workaround at your end?
1. Limit the number of calls to SetLicense method - try to call it on per-application basis, not for every document (as you are working with Web Application/Web Services, you can call it in Application_Start or Session_Start).
2. Try to change the licensing code as shown below:
int nAttempts = 5;
do
{
try
{
Aspose.Pdf.Kit.License license = new Aspose.Pdf.Kit.License();
license.SetLicense("Aspose.Pdf.Kit.lic");
break;
}catch
{
System.Threading.Thread.Sleep(100);
}
}while (nAttempts-->0);
Please try above workaround and share whether it works in your scenario or not.
We're looking forward to help you out.
Regards,
Shahzad Latif - [
Follow me on Twitter!]
Support Developer/Developer Evangelist
Aspose Sialkot Team
Aspose - Your File Format Experts
Keep in touch! We're on
Twitter and
Facebook