Cell License

I have a license from aspose. This is a full java license. I am not able to remove the xls evaluation message. It works for PPT. What need to be done.

I used

import com.aspose.slides.License;

import com.aspose.cell.License;

and

license.setLicense(fstream);

licenseCell.setLicense(fstream);

What is missing ? Is there a way to remove all the Evaluation message in one go ?

Regards,

Ankur.


This message was posted using Aspose.Live 2 Forum

Hi,

Do you have Aspose.Total for Java license? I think it should work fine with Aspose.Cells for Java product too. Also, you need to set license for each Aspose’s Java product individually and separately.

We think it is quite possible that may be the License class is not from com.aspose.cells.License So, please make sure that you are using the the component API from the package com.aspose.cells.*, try to use fully qualified naming when creating objects for the classes e.g License.
e.g
com.aspose.cells.License licenseCell = new com.aspose.cells.License();
licenseCell.setLicense(fstream);


If you still could not evaluate, give us your license file via email, see the document on how you can send us the license file:
http://www.aspose.com/corporate/purchase/faqs/send-license-to-aspose-staff.aspx

We will check it soon.


Thank you.