Hi
Thank you for additional information. May I ask you what is the purpose of evaluating old versions of Aspose.Words? If you will satisfied with an evaluation and decide to purchase Aspose.Words, you will buy the latest version and you will be compelled to change your code to use new API.
If you would like to check your license on your side, you can try creating simple console application to check whether the license works. For example see the following code:
//Set license
Aspose.Words.License lic = new Aspose.Words.License();
lic.SetLicense("Aspose.Words.lic");
//Create simple document for testing
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("Hello world");
doc.Save(@"C:\Temp\out.doc");
Best regards.
Alexey Noskov
Developer/Technical Support
Aspose Auckland Team