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!

SYS.UTL_HTTP - network access denied by access control list (ACL)

Pete88Jan 9 2012 — edited Jan 13 2012
Hello

I wish to run ...

select httpuritype('' || URL_NAME ||'').getblob() into value from dual;

I getting ACL error ....

ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1130
ORA-24247: network access denied by access control list (ACL)

I tries a number of ACL combinations without success e.g.

begin
dbms_network_acl_admin.create_acl (
acl => 'utl_http.xml',
description => 'HTTP Access',
principal => 'xxxxx',
is_grant => TRUE,
privilege => 'resolve',
start_date => null,
end_date => null
);
end;

What should I be doing?

All help welcome

Regards

Pete
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 10 2012
Added on Jan 9 2012
7 comments
5,855 views