Reputation: 424
I was trying to create an ACL to use http request with Oracle but I don't why it's not working here :
BEGIN
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => 'www.xml',
description => 'WWW ACL',
principal => 'hr',
is_grant => true,
privilege => 'connect');
END;
/
This is the error :
Upvotes: 1
Views: 200