Multiple Products

I have two java classes that are executed by the same thread and I am having issues setting the liscense correctly in both.

The following is the order:

Class 1 - Cells

set liscense

Do work

Class 2 - Words

set liscense

GET ERROR (still using cells).

Thanks,

Tom

Hi,


Please try to use fully qualified naming for the classes when creating objects for Aspose.Cells for Java and Aspose.Cells for Words APIs, e.g
com.aspose.cells.License licCells = new com.aspose.cells.License();
com.aspose.words.License licWords = new com.aspose.words.License();
licCells.setLicense(licenseCellsStr);
licWords.setLicense(licenseWordsStr);

Thank you.