Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Getting ORA-29106 when running apex_web_service.make_rest_request

sect55Feb 8 2021

I get an ORA-29106: Cannot import PKCS #12 wallet when accessing the following code:

   l_resp := apex_web_service.make_rest_request (
   p_url     => l_url,
   p_http_method => 'POST',
   p_body    => l_body,
   p_wallet_path => l_wallet_path,
   p_wallet_pwd => l_wallet_pwd
  );

Also, when my DBA runs UTL_HTTP.request, he gets a ORA-29024 (Certification validation failure) error:

select UTL_HTTP.request('https://account-d.docusign.net/oauth/token',null,'file:D:\Oracle19c\owm\wallets\oracle\wallet','*******') from dual
    *
ERROR at line 1:
ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1530
ORA-29024: Certificate validation failure

It seems that I am not using a validate DocuSign certificate for authorization. Can someone help?
Apex 19.1
Oracle 19c

Thanks,

Robert

Comments
Post Details
Added on Feb 8 2021
1 comment
568 views