We have a Aspose.Cells.Pythonvia.NET paid license for our excel application. This is a 2 developer multiple deployment OEM purchase. So our issue is that the license is readable and works fine in our Lower linus RHEL8 server but the license call gets stuck in our prod RHEL 7 linux server.
sample code and steps:
license file: Aspose.Cells.Pythonvia.NET.lic
logger.info(“read Aspose license file”)
logger.info(Asposelic)
logger.info(os.path.isfile(Asposelic))
lic = License()
lic.set_license(Asposelic)
# load a xlsm template
__logger__.info("Start Aspose")
workbook = Workbook(path)
Steps run in lower env:
2023-10-02 17:24:32,437 - root - INFO - 0.20.3
2023-10-02 17:24:32,437 - root - INFO - read sql file
2023-10-02 17:24:33,705 - root - INFO - Set paths
2023-10-02 17:24:33,706 - root - INFO - delete excel file if exist in path
2023-10-02 17:24:33,713 - root - INFO - read Aspose license file
2023-10-02 17:24:33,984 - root - INFO - Start Aspose
Steps run in Prod env:
2023-10-04 11:22:11,071 - root - INFO - 0.20.3
2023-10-04 11:22:11,071 - root - INFO - read sql file
2023-10-04 11:22:13,253 - root - INFO - Set paths
2023-10-04 11:22:13,253 - root - INFO - delete excel file if exist in path
2023-10-04 11:22:13,259 - root - INFO - read Aspose license file
basically it gets stuck on read license.
Also would like to note that the permission on the prod server is same as the lower, so no issues there