hsamson

How to connect integration code to SSL secured backend

0 votes
What is the recommended best practice to connect integration code to a SSL secured backend? Any help/guidance would be appreciated. hsamson

Approved Answer

Reply to: How to connect integration code to SSL secured backend

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

0 votes
Thanks for the prompt reply. I will let you know if I run into any issues! hsamson

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off