Hi
Thanks for your request. Which version of Aspose.Words do you use? To check version of the library, right click on the dll, select Properties from the context menu, then select Version tab. You will see File version.
Best regards,
Thanks for your inquiry. I cannot reproduce the problem using the latest version of Aspose.Words (8.0.0). I used for testing Windows 2008 Server x64. Could you please try setting the license in simple console application? Will this produce the same problem?
Best regards,
Thank you for additional information. Unfortunately, I do not have Win 2008 installed on hardware machine. I tested this on virtual machine. Maybe that is why I did not reproduce the problem.
I will try to check this on hardware machine, but this can take some time.
Best regards.
Thanks for your request. I created a simple console application with the following code:
using System;
using System.Collections.Generic;
using System.Text;
using Aspose.Words;
namespace TestLicense
{
class Program
{
static void Main(string[] args)
{
try
{
// Set license.
License lic = new License();
lic.SetLicense("Aspose.Words.lic");
// Create simple document.
DocumentBuilder builder = new DocumentBuilder();
builder.Write("This is simple test document");
builder.Document.Save("out.doc");
}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
}
}
}
}
This application works without any issues on Win 2008 64bit, which is installed on Virtual Machine. What exception is thrown on your side?
Best regards.
Thank you for additional information. It is perfect that you resolved the problem with license. Aspose.Words and Aspose.Report are different products, so you should contact Aspose.Report support in the appropriate forum in order to resolve the problem with its license.
As you know, you can also apply license from Stream. Maybe in your case, this can help you to fix the problem. Also you can include the license as embedded resource into your project, as described here: https://docs.aspose.com/words/net/licensing/
Hope this helps.
Best regards.