Reputation: 11
I'm new in oracle Cloud / Apex 19.1.... and I need help :-)
Can you help me ?? Where should I send the commands ? which one ? Thanks very much in advance
Upgrade : I tried to launch the following script in APEX / script SQL :
BEGIN
DBMS_NETWORK_ACL_ADMIN.create_acl (
acl => 'https://api.zelty.fr',
description => 'zelty',
principal => 'LPDS',
is_grant => TRUE,
privilege => 'connect',
start_date => SYSTIMESTAMP,
end_date => NULL);
DBMS_NETWORK_ACL_ADMIN.assign_acl (
acl => 'https://api.zelty.fr',
host => '*',
lower_port => 1,
upper_port => 9999);
COMMIT;
END;
but the error was :
ORA-06550: Ligne 2, colonne 3 : PLS-00201: l'identificateur 'DBMS_NETWORK_ACL_ADMIN' doit être déclaré ORA-06512: à "SYS.WWV_DBMS_SQL_APEX_190100", ligne 592 ORA-06550: Ligne 2, colonne 3 : PL/SQL: Statement ignored ORA-06550: Ligne 11, colonne 3 : PLS-00201: l'identificateur 'DBMS_NETWORK_ACL_ADMIN' doit être déclaré ORA-06550: Ligne 11, colonne 3 : PL/SQL: Statement ignored ORA-06512: à "SYS.DBMS_SYS_SQL", ligne 1658 ORA-06512: à "SYS.WWV_DBMS_SQL_APEX_190100", ligne 578 ORA-06512: à "APEX_190100.WWV_FLOW_DYNAMIC_EXEC", ligne 2033
Upvotes: 1
Views: 1042
Reputation: 518
For https u must use certificates. look at link for example https://davidkyanek.blogspot.com/2017/04/using-oracle-wallets-to-connect-ssl.html
Upvotes: 0