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!

Receiving ORA-28759 using APEX_WEB_SERVICE

Scott H.Jun 25 2025

I am migrating to a 19c base cloud db

Apex Version 24.2.6

I copied my wallet to the server and set the permissions

I am using the same wallet path and password in both utl_http and that I put in apex admin

This snippet below works and provides an output

declare 

v_output clob; 
begin 
UTL_HTTP.set_wallet('file:///u01/app/oracle/ApexWallet', 'xxxxx'); 
SELECT utl_http.request('https://testurl.com') into v_output FROM dual; 
dbms_output.put_line(v_output); 

end;

The next snippet gives an error

declare 

v_output clob; 

begin 

select apex_web_service.make_rest_request( 
p_url => 'https://testurl.com', 
p_http_method => 'GET') 
into v_output from dual; 

dbms_output.put_line(v_output); 

end;


ERROR at line 1:
ORA-29273: HTTP request failed
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES", line 681
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES_INVOKER", line 1004
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES_INVOKER", line 650
ORA-28759: failure to open file	

If I override my apex_web_service.make_rest_request with p_wallet_path and p_wallet_pwd. I get a response

Any suggestions? Need a solution ASAP

Comments
Post Details
Added on Jun 25 2025
2 comments
194 views