Hi,
we're trying to call a web service via Oracle utl_http.request utility (see an example below). The request must be via https.
Oracle database version is 11.2.0.3 (Unix environment)
We've followed all the steps described in different Oracle sites:
1. we've created a wallet (with auto login setting)
2. we've exported the certificates from the web site (in PKCS #7 format, including all the certificates in the certification path)
3. we've added them to the wallet
But we always have the same error: ORA-29024: Certificate validation failure.
What's wrong?
select utl_http.request('
https://url', null, 'file:wallet_location','wallet_pwd') from dual
Thank you very much for your help!