1 minutes readEmbedded PL/SQL Gateway (EPG) Configuration

Reader Mode

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”.

Related Articles

Responses

Your email address will not be published. Required fields are marked *

Password Reset
Please enter your e-mail address. You will receive a new password via e-mail.