Thanks for the link,
Created own self-signed certificate, and replaced with the certificate and key in the designated path '/usr/local/demisto/d1.cert.pem & /usr/local/demisto/d1.key.pem' (on XSOAR engine) and given the required permission and ownership to the files. For one of the endpoint that we are looking to integrate with XSOAR is tighten with 2-way SSL connection. To establish an SSL connection with that endpoint, it is necessary to pass XSOAR certificate and its corresponding private key.
Connection is successful for the following command from the terminal: 'wget <endpoint URL> --certificate=/usr/local/demisto/d1.cert.pem --private-key=/usr/local/demisto/d1.key.pem'.
However, upon attempting to execute integration code from XSOAR UI, encountered an error message of 'SSL handshake failure'. when tried to pass XSOAR certificate path and key path explicitly, getting the error message 'OSError: Could not find the TLS certificate file, invalid path: '/usr/local/demisto/d1.cert.pem'.
Why XSOAR is failing to use the certificate and key from the default path '/usr/local/demisto'? Are there any configuration needs to be add to make the XSOAR to use certificates and key?
Thanks
... View more