Hi, I have a valid group docs Total license for Java. I am using Spring application. I have not given any value for application.licensePath in application.properties so that it can take license from Default folder Licenses in the application. I am using both annotation and signature feature. When i run my application, i get cannot verify signature license error. Can you please help me to fix it ? Below is the code where I am getting the problem.
try {
License license = new License();
license.setLicense(globalConfiguration.getApplication().getLicensePath());
} catch (Throwable exc) {
logger.error(“Can not verify Signature license!”);
}