This is a part of the code…
const hana = require(‘@sap/hana-client’); var connOptions = { serverNode: ”, UID: ”, PWD: ”, ssValidateCertificate: ‘true’, }; const server = express(); ….etc
The code runs as a windows process. Everything works perfectly while the user who owns the process is logged in.
If I close the user’s session, the process continues working, listening to requests and making queries to SAP, but it returns this error:
Error: Connection failed (RTE:[1000013] The system cannot find the file specified.
If I log in to the server again with that user, it already makes the requests correctly.
I don’t know if the user is not logged in and is trying to search for certificates or something.
Thanks!