When you run into this error:
ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified
Then, try this:
BEGIN
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => 'www.xml',
description => 'ACL for ApEx Printing',
principal => 'APEX_040100'
is_grant => true,
privilege => 'connect');
DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl => 'www.xml',
principal => 'APEX_040100',
is_grant => true,
privilege => 'resolve');
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(acl => 'www.xml',
host => 'your.FOP.host.here');
END;
/
COMMIT;
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => 'www.xml',
description => 'ACL for ApEx Printing',
principal => 'APEX_040100'
is_grant => true,
privilege => 'connect');
DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl => 'www.xml',
principal => 'APEX_040100',
is_grant => true,
privilege => 'resolve');
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(acl => 'www.xml',
host => 'your.FOP.host.here');
END;
/
COMMIT;
12 comments:
Thanks for excellent post.
Hello, I'm using oracle 10.2.0.4... That's why I dont need ACL privileges. But I'm still getting the same error. Why, Do you have any idea?
Hello again,
it was due to wrong port of bi publisher...the default ise 9704, but with the trial edition it gets up with port 7001...
@Meltem: thanks for the feedback! Appreciate it. Hopefully it will help others to look at the port#, too.
ora-44416 -invalid acl:unresolved principle apex_040100
ora-44416 has to do with an illegal user or role, while defining the ACL.
Check your syntax.
Cheers, fantastic post. Got my error resolved and I had to add localhost in host parameter.
it's work.
But if i do it from: shared components->report queries -> test report
if i do it from application it's not working!
Nice sharing,thanks thats have been helping me
connect by sys
run below command
BEGIN
DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => 'www.xml',
description => 'ACL for ApEx Printing',
principal => 'APEX_040200',
is_grant => true,
privilege => 'connect');
DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl => 'www.xml',
principal => 'APEX_040200',
is_grant => true,
privilege => 'resolve');
BEGIN
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(acl => 'www.xml',
host => 'localhost',
lower_port => 7001);
END;
END;
/
principal => 'APEX_040200', It will be Apex version which is installed in your machine .
Hostname will be name of machine on which bi is installed.
after this works for me i am able to print pdf by apex.
thanks
First of all, this post is over 5 years old. Secondly: how is your solution different in any way from what is not mentioned above?
First of all, this post is over 5 years old. Secondly: how is your solution different in any way from what is not mentioned above?
Post a Comment