Reply to: How to connect integration code to SSL secured backend
Tuesday, April 5, 2016 at 07:24am
1
votes
In order to run integration code (JAVA, .NET SDK…) targeting an SSL secured connection to the backend, one of the following steps is required.
1. If the backend is configured with a self-signed cert (standard configuration for DEV environment), then make sure to import the public key associated to the backend SSL cert and successfully install it in the trusted store of the machine running your framework code.
2. If the backend is configured with a CA signed cert like Verisign … (standard configuration for PROD environment), then make sure that either :
a. The root and intermediate cert associated to the backend SSL cert are successfully installed it in the trusted store of the machine running your framework code or
b. Import the public key associated to the backend SSL cert and successfully install it in the trusted store of the machine running your framework code.
Reply to: How to connect integration code to SSL secured backend
Tuesday, April 5, 2016 at 07:24amReply to: How to connect integration code to SSL secured backend
Tuesday, April 5, 2016 at 07:26am