Open Apex to public
By default, apex just works on localhost,
it is not possible to share your applications with grid control by default.
Use this process to open apex to pubklic:
begin
DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
COMMIT ;
end;

By default, apex just works on localhost,
it is not possible to share your applications with grid control by default.
Use this process to open apex to pubklic:
begin
DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
COMMIT ;
end;
Leave a Reply