TIBCO - Server Certificate Rejected by Chain Verification

We are getting this error

"Error BW-HTTP-100300 Job-29000 in [Processes / Services / HTTP Request / Process Definition.Process / Send HTTP Request] When trying to execute the Http method, IOException thrown: java.io.IOException: Failed to create secure client socket: server certificate rejected by ChainVerifier

I did the following: 1. Created an http send request. 2. Configure everything on the "Configuration" tab and "Enter" tabs. 3. Created an ID and imported it into Identity 4. Downloaded the certificate and imported it into "SSL Setting" 5. When starting the process, I get the error mentioned above.

Did I miss something? Please provide me with some guidelines. thanks in advance

+3


source to share


2 answers


Downloading the server certificate is not enough, you need to download the whole certificate chain from the root CA to the server certificate.

Certificate chain



In the above example, you need to download all certificates (except the last one mail.google.com

, which is optional) and add them to your trusted certificates folder.

+4


source


Is the VerifyHostName option enabled when connecting? If so, the server name must also be on the allowed list. In most cases, you do not need this option.



+2


source







All Articles