I'm setting up a HTTP server on Oracle 12.1 (Linux) in order to handle POST requests.
When I use HTTP/Port 8080 it works OK, but I want to use HTTPS.
So when I set up PORT 4343 to handle HTTPS requests, I get a browser error because the default certificate is self-signed.
The default certificate seems to be automatically generated in /u01/app/oracle/admin/<SID>/xdb_wallet.
I've tried adding my trusted certificates to the wallet, but when I stop/start the listener, the wallet is overwritten - as if DBMS_XDB_ADMIN.installdefaultwallet was run.
How can I install my trusted certificates so that they are read by incoming HTTPS requests?
Martin