This is a premium alert message you can set from Layout! Get Now!

Embedded PL/SQL Gateway (EPG) Configuration

Anup
0

If you want to use the Embedded PL/SQL Gateway (EPG) to front APEX, you can follow the instructions here. 
SQL> CONN sys@pdb1 AS SYSDBASQL> @apex_epg_config.sql <passing in the base directory of the installation software as a parameter>
Check the port setting for XML DB Protocol Server.
SQL> SELECT DBMS_XDB.gethttpport FROM DUAL;
GETHTTPPORT
-----------
          0
1 row selected.

SQL>
If it is set to "0", you will need to set it to a non-zero value to enable it.
SQL> EXEC DBMS_XDB.sethttpport(8080);
PL/SQL procedure successfully completed.

SQL>
APEX should now be available from a URL like "http://machine:port/apex".

Post a Comment

0 Comments

Please Select Embedded Mode To show the Comment System.*

Post a Comment
To Top