Hi Team,
We are planning to do a purchase of aspose words java which will be installed in aws ec2 machine.
So we wanted to know whether will there be any issue if by chance ec2 rebooted internal server details gets reset will the license work at that time or do we need to apply new one
@sri248 Aspose.Words license is a file. It is applied through the code:
com.aspose.words.License wordsLic = new com.aspose.words.License();
wordsLic.setLicense("C:\\Temp\\Aspose.Words.Java.lic");
The best way is to apply the license in static constructor of the class that used Aspose.Words or on the application start.
https://docs.aspose.com/words/java/licensing/
So, after restarting your application, the license will be applied in your code again and will continue work as usual.