Just renewed our “Aspose Total for Java” license and the license is valid with pdf, cells, words, email, but fails on the call to the barcode library.
com.aspose.barcode.PleaseReportException: The license signature is invalid.
at com.aspose.barcode.License$a.a(Unknown Source)
at com.aspose.barcode.License.setLicense(Unknown Source)
Any ideas?
Rick
com.aspose.pdf.License pdfLicense = new com.aspose.pdf.License();
pdfLicense.setLicense( is );
pdfClass = pdfLicense.getClass();
is.reset();
com.aspose.cells.License cellsLicense = new com.aspose.cells.License();
cellsLicense.setLicense( is );
cellsClass = cellsLicense.getClass();
is.reset();
com.aspose.words.License wordsLicense = new com.aspose.words.License();
wordsLicense.setLicense( is );
wordsClass = wordsLicense.getClass();
is.reset();
com.aspose.email.License emailLicense = new com.aspose.email.License();
emailLicense.setLicense( is );
emailClass = emailLicense.getClass();
is.reset();
com.aspose.barcode.License barcodeLicense = new com.aspose.barcode.License();
barcodeLicense.setLicense( is );
barCodeClass = barcodeLicense.getClass();