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 enginzorlu on September 10, 2007.

Leave a Reply