Hi, I licensed aspose total and I can load the license for PDF but not for any other product. The exception for other assemblies returns {“Root element is missing.”}.
Thank you for contacting support. Please share more details like which Aspose APIs show this error. Please list down all the names of Aspose APIs and DLL versions. Please also send us your license file for the testing purposes. We’ll investigate and reply you appropriately. Please check how to send the confidential files to a staff member via an email: Send your License File to an Aspose Staff Member
Hi, I am using the latest version downloaded from Aspose site as of 12/15/2016. For each assembly I am using highest .net framework possible such as 4.0 full client not client profile. Sending my license as instructed.
Thank you for the details. It is because the SetLicense method of Aspose APIs reads the license stream and the cursor ended up at the end of the stream, since nothing left for the next call of SetLicense method to read. Please modify your code to set cursor at start position each time:
Dim myStream As FileStream = New FileStream(“Aspose.Total.lic”, FileMode.Open) ’ set Aspose.OCR license Dim ocrLicense AsNew Aspose.OCR.License() ocrLicense.SetLicense(myStream)
myStream.Position = 0
’ set Aspose.BarCode license Dim bcLicense AsNew Aspose.BarCode.License()
bcLicense.SetLicense(myStream)
myStream.Position = 0
’ set Aspose.Email license Dim emailLicense AsNew Aspose.Email.License()
emailLicense.SetLicense(myStream)
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
Enables storage, such as cookies, related to analytics.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.