Hi friends,
I have a oracle database 11.2.0.1.0 standar edition 64bits on windows server 2012 r2 64bits.
I have tried to create a ACL List to use smtp package to send email from a pl/sql package.
When I try to create the acl list, it show me the follow error:
SQL> BEGIN
2 DBMS_NETWORK_ACL_ADMIN.CREATE_ACL (
3 acl => 'smtp_office365_com.xml',
4 description => 'Permiso para accesar e-mail server smtp.office365.com.',
5 principal => 'PUBLIC',
6 is_grant => TRUE,
7 privilege => 'connect');
8 COMMIT;
9 END;
10 /
BEGIN
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kzxcInitLoadLocal-7], [64131],
[ORA-64131: XMLIndex Metadata: failure during the looking up of the dictionary
ORA-30966: error detected in the XML Index layer
ORA-31011: XML parsing failed
], [], [], [], [], [], [], [], [], []
ORA-06512: at "SYS.DBMS_NETWORK_ACL_ADMIN", line 252
ORA-06512: at line 2
SQL>
I have been looking for this issue on internet and in many page people said this is a "bug", but I create a new database with the same specification and it error does not appear.
Please, anyone have any idea.
Regards,
DBApe.