I’m trying to build a GET API call to an external data provider.
This provider requires me to send my GET call with the certificate.
We managed to test it in POSTMAN, where I had to add the certificate in the Settings → Certificates menu:
I have a .pfx file with a passphrase, and I needed to specify the host.
This works on my laptop in POSTMAN.
Now I’m trying to do the same call in ONE Desktop using JSON Call step.
By way of googling, I’ve managed to convert my .pfx file into .cer, then I imported the .cer file into {DQC_HOME}/jre/lib/security/cacerts . Then I have restarted ONE Desktop. But when I call the API I’m still getting an error message from the other side saying my certificate is not sent.
I have a suspicion that the certificate is sitting in the keystore but it is not used. Is there some way to ensure it is used? Some java parameter somewhere?