Hello.
OS is RedHat Linux 7
DB is 12.2.0.1
I am trying to allow https to a server.
I created a wallet on the db server:
orapki wallet create -wallet myWalletPath -auto_login -pwd thePassword
Oracle PKI Tool : Version 12.2.0.1.0
Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
Operation is successfully completed.
I have taken the certificate from the http server using my browser.
The format is PKCS n°7
I sent the certificate to the db server and added it to the wallet:
orapki wallet add -wallet myWalletPath -trusted_cert -cert dCertificate.p7b -pwd thePassword
Oracle PKI Tool : Version 12.2.0.1.0
Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
Operation is successfully completed.
I created an ACL (/....myACL.xml), assigned the host to the ACL and assigned the ACL to the wallet.
I also assigned connect, resolve, use-client-certificates, use-passwords to the dbuser.
When I run select utl_http.request ('https://theURL',null,'file:myWalletPath','thePassword') from dual
I have ORA-29024 Certificate validation failure
What did I miss?