Comments on: Resolving the ORA-24247: network access denied by access control list (ACL) error https://virtual-dba.com/blog/resolving-the-ora-24247/ Remote Database Administration Wed, 12 Nov 2025 16:25:32 +0000 hourly 1 https://wordpress.org/?v=6.9.4 By: Joaquin https://virtual-dba.com/blog/resolving-the-ora-24247/#comment-11500 Thu, 01 Aug 2024 14:45:38 +0000 https://virtual-dba.com/?p=37585#comment-11500 Hola, paso a responder, que encontré otra manera de resolver este error:

BEGIN
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(
acl => ‘http_access.xml’,
description => ‘HTTP Access’,
principal => ‘SCHEMA_NAME’, — Reemplaza ‘SCHEMA_NAME’ con el esquema del usuario que ejecuta el procedimiento
is_grant => TRUE,
privilege => ‘connect’
);
END;
/

BEGIN
DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(
acl => ‘http_access.xml’,
principal => ‘SCHEMA_NAME’, — Reemplaza ‘SCHEMA_NAME’ con el esquema del usuario que ejecuta el procedimiento
is_grant => TRUE,
privilege => ‘resolve’
);
END;
/

BEGIN
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(
acl => ‘http_access.xml’,
host => ‘tu_url’, — El host de la URL
lower_port => 8100, — El puerto de la URL
upper_port => 8100 — El puerto de la URL
);
END;

COMMIT;

SELECT * FROM DBA_NETWORK_ACLS;
SELECT * FROM DBA_NETWORK_ACL_PRIVILEGES;

]]>
By: jose https://virtual-dba.com/blog/resolving-the-ora-24247/#comment-5582 Mon, 29 Jan 2024 16:45:55 +0000 https://virtual-dba.com/?p=37585#comment-5582 ORA-20001: The following error has occured: ORA-24247: network access denied by access control list (ACL)
ORA-00001: unique constraint (RECEDE.PK_TB_SUJETO) violated
ORA-02063: preceding line from DBL_YAXHA
ORA-06512: at “RECEDE.PKG_MIGRACION_CONSULTA”, line 32
ORA-06512: at “RECEDE.PKG_MIGRACION_CONSULTA”, line 341
ORA-06512: at “RECEDE.PKG_MIGRACION_CONSULTA”, line 947
ORA-06512: at line 7

]]>
By: Anupam https://virtual-dba.com/blog/resolving-the-ora-24247/#comment-4413 Mon, 23 Oct 2023 09:40:04 +0000 https://virtual-dba.com/?p=37585#comment-4413 ORA-29273: HTTP request failed
ORA-06512: at “SYS.UTL_HTTP”, line 1530
ORA-24247: network access denied by access control list (ACL)
ORA-06512: at “SYS.UTL_HTTP”, line 380
ORA-06512: at “SYS.UTL_HTTP”, line 1470
ORA-06512: at line 1
29273. 00000 – “HTTP request failed”
*Cause: The UTL_HTTP package failed to execute the HTTP request.
*Action: Use get_detailed_sqlerrm to check the detailed error message.
Fix the error and retry the HTTP request.

]]>
By: anupam dubey https://virtual-dba.com/blog/resolving-the-ora-24247/#comment-4412 Mon, 23 Oct 2023 09:39:12 +0000 https://virtual-dba.com/?p=37585#comment-4412 Hi I am getting below error while calling https URL

ORA-29273: HTTP request failed
ORA-06512: at “SYS.UTL_HTTP”, line 1530
ORA-24247: network access denied by access control list (ACL)
ORA-06512: at “SYS.UTL_HTTP”, line 380
ORA-06512: at “SYS.UTL_HTTP”, line 1470
ORA-06512: at line 1
29273. 00000 – “HTTP request failed”
*Cause: The UTL_HTTP package failed to execute the HTTP request.
*Action: Use get_detailed_sqlerrm to check the detailed error message.
Fix the error and retry the HTTP request.

]]>
By: Roshan https://virtual-dba.com/blog/resolving-the-ora-24247/#comment-1713 Fri, 18 Nov 2022 19:58:41 +0000 https://virtual-dba.com/?p=37585#comment-1713 good article. It help me to resolve the error. thanks

]]>
By: Sudhakara https://virtual-dba.com/blog/resolving-the-ora-24247/#comment-1211 Tue, 04 Oct 2022 17:50:06 +0000 https://virtual-dba.com/?p=37585#comment-1211 Thank you for the solution

]]>