@bergpatricio,
It is to inform you that we had received your license file and your license file worked fine on our end when using the latest (21.8) version of Aspose.Words for Java. We used the following simple Java code to test this license on our end.
License lic = new License();
lic.setLicense("C:\\yourLicense.lic");
Document document = new Document("C:\\temp\\input.docx");
document.save("C:\\temp\\output.pdf");
The output PDF gets created without any evaluation limitations (watermarks etc) and exceptions on our end which means that the license was applied correctly. Please make sure that you are passing path to the correct license file in setLicense
method in your application.