如何解决 ORA-24247:网络访问被 Oracle 存储过程中的访问控制列表 (ACL) 拒绝

How to solve ORA-24247: network access denied by access control list (ACL) in Oracle stored procedure

我有一个 Oracle 11g 存储过程,它使用 Google API 获取文本地址和 returns 纬度和经度。此过程使用 oracle 的 utl_http 功能。

阅读有关使用此功能的 Oracle 文档,我看到需要创建钱包并绑定 Google HTTPS URL 证书。已经这样做了。

我还必须创建 ACL 资源、添加权限和分配 ACL。已经这样做了。

但是当我执行该过程时,它总是出现错误 ORA-24247

create or replace procedure test_procedure(p_address IN VARCHAR2, p_lat out number, p_long out number) is
l_http_request   UTL_HTTP.req;
...
begin
l_address := REPLACE(TRIM('TRAV. JOAQUIM A. SILVA, 286 - ALVORADA - GUANHÃES/MG CEP: 39740-000'), ' ', '+');
...
UTL_HTTP.set_wallet('file:/MY_ORACLE_HOME/admin/MY_SCHEMA/wallet', NULL);
l_request := 'https://maps.googleapis.com/maps/api/geocode/json?address=' ||
             l_address || chr(38) || 'language=pt-BR'||'&key=MyGoogleKey';
l_http_request := utl_http.begin_request(l_request,'GET','HTTP/1.1'); -- this line presents ORA-24247 error
...

我的 ACL 命令

begin
DBMS_NETWORK_ACL_ADMIN.create_acl(
acl => 'www_google.xml', 
description => 'Google Maps Access', 
principal => 'MY_DB_USER', 
is_grant => TRUE, 
privilege => 'connect', 
start_date => NULL, 
end_date => NULL
); 

dbms_network_acl_admin.add_privilege (
acl        => 'www_google.xml',
principal  => 'MY_DB_USER',
is_grant   => TRUE,
privilege  => 'connect',
start_date => null,
end_date   => null
);

dbms_network_acl_admin.add_privilege (
acl        => 'www_google.xml',
principal  => 'MY_DB_USER',
is_grant   => TRUE,
privilege  => 'resolve',
start_date => null,
end_date   => null
);

DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL (
acl => 'www_google.xml',
host => '*.google.com',
lower_port => 25,
upper_port => 8080
);
end;

问题出在 DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL 块 URL 中的主机参数