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-28759 when running apex_web_service.make_rest_request

sect55Feb 3 2021

I get an ORA-28759 : failure to open file when accessing the following code:

l_resp := apex_web_service.make_rest_request (
    -- have to change p_url to Docusign authorization to get the token
 -- p_url              => 'https://graph.microsoft.com/v1.0/invitations',
     p_url              =>
'https://demo.docusign.net/restapi',
     p_http_method      => 'POST',
     p_body             => l_body,
     p_wallet_path      => 'D:\oracle19c\own\wallets\oracle\wallet'
   );

My DBA assured me that is the location of Oracle Wallet.
What am I doing wrong.
APEX: APEX 19.1
DB: Oracle Enterprise 19c

Robert

This post has been answered by Veerendra Patil on Feb 8 2021
Jump to Answer
Comments
Post Details
Added on Feb 3 2021
2 comments
807 views