Download the Asserter from the Identity Domain settings, extract bridge.properties, adjust it, and update the WAR in place:
unzip ebs.war WEB-INF/bridge.properties
vi WEB-INF/bridge.properties
zip -u ebs.war WEB-INF/*
The complete bridge.properties we run in production (anonymized):
properties
app.url=https://ebs.example.com:4443/ebs
app.serverid=<APPL_SERVER_ID from the DBC file>
ebs.url.homepage=https://ebs.example.com:4443/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE
ebs.ds.name=visionDS
ebs.user.identifier=email
idcs.user.identifier=email
idcs.iss.url=https://identity.oraclecloud.com
idcs.aud.url=https://idcs-<guid>.identity.oraclecloud.com
post.logout.url=https://ebs.example.com:4443/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE
wallet.path=/home/oracle/ebs_asserter/cwallet.sso
ebs.renew.session=true
whitelist.urls=https://ebs.example.com:4443/OA_HTML/RF.jsp,https://ebs.example.com:4443/OA_HTML/OA.jsp,https://ebs.example.com:4443/OA_HTML/BneApplicationService,https://ebs.example.com:4443/OA_HTML/jsp/fnd/close.jsp
Three properties deserve special attention:
idcs.iss.url is NOT your tenant URL. The issuer URL stays at the generic https://identity.oraclecloud.com, while idcs.aud.url carries your tenant-specific domain URL. Getting these two mixed up produces token validation errors that are unpleasant to debug.
ebs.renew.session=true saves your Forms users. With the default setting we hit a nasty issue during the PoC: once the ICX session expired, Forms users were thrown out entirely and could not simply continue working. After an SR with Oracle, the answer was this (a bit hidden) property. With session renewal enabled, an expired session is transparently renewed via the still-valid SSO session, and the user just keeps working. If you run Forms (and who doesn't), set this to true from day one.
whitelist.urls needs your integration entry points. RF.jsp and OA.jsp cover standard navigation, BneApplicationService is required for WebADI, and close.jsp for clean window handling. If a redirect target isn't whitelisted, the Asserter will refuse it.