Tuesday, October 15, 2019

How to check if HTTPS is enabled in EBS?

 check if HTTPS is enabled in EBS

You can easily check if HTTPS is enabled on your environment by accessing E-Business Suite through a web browser. If it is, after trying to access the site through HTTP, you should be redirected to HTTPS .
Also, the following query to the database can also confirm that HTTPS is properly enabled:
select decode(UPPER(SUBSTR(APPS.FND_WEB_CONFIG.PROTOCOL,1,5)), 'HTTPS','HTTPS_ENABLED', 'HTTPS_DISABLED') "SSL Mode" from dual;

Run with user apps.
SQL> select decode(UPPER(SUBSTR(APPS.FND_WEB_CONFIG.PROTOCOL,1,5)), 'HTTPS','HTTPS_ENABLED', 'HTTPS_DISABLED') "SSL Mode" from dual;
OUTPUT
SSL Mode
HTTPS_DISABLED

No comments: