Hello,
We received our license recently (Aspose.Cells for Java) and it works fine on Windows but not at all in our AIX production environment. The error is something like "Invalid license file". The license file has not been modified at all. I believe there was a similar post recently describing the same problem.
Our environment is IBM JRE 1.4 running on AIX. Would it be possible to get a license file that works for this environment /without/ using a new distribution of code. We've done all our testing already and it would be costly to repeat it just because of this one issue.
The code to load the license file looks something like this;
static {
// Load the Aspose.Cells license file.
try {
License license = new License();
String licenseFile = System.getProperty("ASPOSE_LIC");
FileInputStream inputStream = new FileInputStream(licenseFile);
license.setLicense(inputStream);
inputStream.close();
} catch (Throwable e) {
logger.warn("Error loading Aspose.Cells license file.", e);
}
}
cheers,
Pierre