Hi,
I'm stuck with an issue whereby i have to send over an mTLS certificate in order to connect to an API end point (https://eqapi.uat.equateplus.com/statistics) via UTL_HTTP script on Oracle 19c database.
Every time i make a call to the end point via UTL_HTTP, i'm getting an error ORA-29268: HTTP client error 403 - Forbidden.
I was able to reach their endpoint, but the server refused the connection because the mTLS certificate was not present.
I was able to make a connection via Postman by attaching the .pfx as well as curl command by converting the .pfx into .pem by executing the command below:
curl --proxy XXXX-proxy.uk.XXXX.local:XXXX \\
--location 'https://eqapi.uat.equateplus.com/statistics' \\
--header 'Content-Type: application/json' \\
--cert public\_certificate.pem \\
--key my-key-keypair.pem
Enter PEM pass phrase:
How can i resolve this issue? I have tried this Doc ID 2890187.1 on Oracle support but it is not working?
Thanks & Regards,
Aizat