fuzziebrain / docker-apex-stack

Utility scripts for creating an Oracle Application Express stack as a Docker container.
MIT License
97 stars 34 forks source link

rest source https failure to open file #31

Closed enginefuture closed 3 years ago

enginefuture commented 3 years ago

Oracle error "ORA-28759: failure to open file . The wallet had config

fuzziebrain commented 3 years ago

Hi @enginefuture,

Can you please provide more information? What was the code that you executed?

For me, I ran this:

set serveroutput on;

declare
  l_response clob;
begin
  l_response := apex_web_service.make_rest_request(
    p_url => 'https://google.com'
    , p_http_method => 'GET'
  );

  dbms_output.put_line('HTTP Status Code: ' || apex_web_service.g_status_code);
end;
/

And got the following output as expected:

HTTP Status Code: 200

PL/SQL procedure successfully completed.
fuzziebrain commented 3 years ago

Closing this issue as there were no further responses.