Hi there,We recently bought a licence and downloaded the license file. I've tried loading the license file using both the path and MemoryStream option. Neither throws an error but neither works either (nice poetry :P)Am I doing something wrong? - here is a snippet of the code
private static MemoryStream ConvertWordToPdf(MemoryStream inputStream, MemoryStream licenseStream)
{
//Set the license
License asposeLicense = new License();
asposeLicense.SetLicense(licenseStream);
Document asposeDocument = new Document(inputStream);
MemoryStream convertedResultStream = new MemoryStream();
asposeDocument.Save(convertedResultStream, SaveFormat.Pdf);
return convertedResultStream;
}
Thanks
Mike