I'm dealing with this problem for hours...
I've researched and tried on my own, but nothing seems to help.
So I was running this code
begin
dbms_network_acl_admin.create_acl(
acl => 'www.xml',
description => 'www ACL',
principal => 'SYS',
is_grant => true,
privilege => 'connect'
);
dbms_network_acl_admin.assign_acl(
acl => 'www.xml',
host => '*',
lower_port => 80
);
end;
and I keep getting this error:
Error report -
ORA-31024: Parser initialization failed with LPX-266 error
while parsing a stream to XOB
ORA-06512: at "SYS.DBMS_NETWORK_ACL_ADMIN", line 252
ORA-06512: at line 2
31024. 00000 - "Parser initialization failed with LPX-%s error\nwhile %s"
*Cause: Error occurred while initializing a parser.
*Action: Contact Oracle Support Services.
How can I resolve it?