- Working with Oracle Forms
- Integration
- Integrating Oracle Forms with IAM Cloud Service
- Configure the IAM Server for Oracle Forms
Configure the IAM Server for Oracle Forms
Create an IAM application and an App Gateway on the IAM server.
Create an IAM Application
Create the IAM Application, as well as create the needed resource settings and authentication policies.
- Log in to your Oracle Cloud tenancy where you plan to set up your IAM environment.
- From the menu on the left pane, select Identity and Security.
- Under Identity, click Domains.
- Select the desired domain.
Any Domain Type can be used, however carefully consider the limitations associated with each when selecting.
If you have not already created a domain for IAM, create one now by clicking Create Domain.
- Click Integrated Applications on the left, then click Add Application.
- From the Add Application dialog, select Enterprise Application, then click Launch Workflow.
- Enter the following:
- Name: Provide a name for this IAM Application
- Description: (Optional) Provide a description for this IAM application
- Application Icon: (Optional) Provide an icon that will appear in the Applications table
- In the URLs section, type the fully-qualified URL for the IAM App Gateway environment in the Application URL field.
This URL should include the Forms context root and app name, such as
/forms/frmservlet
. Do not include application arguments.For example:
https://<APP GATEWAY HOST.DOMAIN>:<IAM SSL PORT>/forms/frmservlet
Note:
An IP address can be used in place of the host.domain. - Select Display in My Apps, then click Next.
- Click Next to skip the OAuth configuration and proceed to the next screen.
- Click Add Resource to add resources for each numbered row. Adding a description is optional, but recommended.
Priority Resource Name Resource URL URL Query String Use Regex Expressions Description 1 Protected resource /forms/frmservlet.*
oamMode=true
Yes Forms application protected resource 2 Anonymous access resource /forms/frmservlet.*
Yes Forms application anonymous access 3 Anonymous access resource 2 /forms/frmservlet
ifcmd=startsession
Forms application anonymous resource 2 4 Protected RAD resource /forms/radservlet.*
Yes Forms application protected RAD resource 5 Public resource /.*
Yes Forms application public resource - Ensure these check boxes are selected:
- Audience Validation
- Require Secure Cookies
- Add Managed Resources
- Click Add Managed Resource to add managed resources for each numbered row. Be sure the Priority order matches the table shown.
Priority Resource Authentication Method Enable Audience Validation 1 Protected resource Form or Access Token Yes 2 Anonymous access resource Anonymous 3 Anonymous access resource 2 Anonymous 4 Protected RAD resource Form or Access Token Yes 5 Public resource Public - Click Finish to return to this Integrated Application’s Details screen.
- Click Activate above the Application Information tab.
Create the App Gateway
Create an App Gateway associated with your domain.
Note:
The IAM Service environment must be accessible from the server where the IAM App Gateway (Client) is running.To create an App Gateway:
- Navigate to your domain’s Overview screen using the breadcrumb at the top left of the page.
- From the menu on the left, click Security, then App Gateways.
- Click Create App Gateway.
- Type an easily identifiable name and description in the Name and Description fields.
- Click the Add Host link on the left side, then click the Add Host button.
- Enter these two entries, replacing the Host Identifier, Host, and Port with those that match your system:
Note:
Note that the first row is for requests received as non-SSL and the second is for handling SSL requests. Non-SSL requests will be redirected to SSL to ensure the highest degree of security.Host Identifier Host App Gateway Port SSL Enabled Additional Properties appgateway-nonssl
<App Gateway client hostname>
7777
(non-SSL port)NO return 301 https://$host:4443$request_uri;
appgateway-ssl
<App Gateway client hostname>
4443
(SSL port)YES ssl_certificate /home/oracle/keys/ssl.cert; ssl_certificate_key /home/oracle/keys/ssl.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5;
Before you continue, review the Additional Properties values and ensure they are appropriate for your environment. References to host, IP address, or port should reflect those which are user-accessible.
The certificate and key paths presented in the Additional Properties column must be as shown regardless of whether you are using a certificate provided from a trusted CA or a self-generated certificate.
Refer toSetting up App Gateway in the Oracle Cloud Infrastructure Documentation.
- Click Add Host to accept the changes, then click Next.
- Click Add App and do the following:
- Select the app you just created from the Application list.
- Select the SSL entry created earlier from the Select a Host list.
- Type a forward slash (
/
) in the Resource Prefix field. - Type the fully-qualified non-SSL URL that points to the middle tier (Forms) host.domain:port in the Origin Server field.Use the SSL URL if not using non-SSL.
- Type the following string in the Additional Properties field, replacing <port_number> with the port used by your Forms managed server:
proxy_set_header Host $host:<port_number>;
Note:
If the App Gateway client is running on a different machine than the Forms middle tier, replace$host
with the user-accessible host.domain (or IP address) of the Forms middle tier. - Click Add App at the bottom, then click Close.Make note of the Client ID and Client Secret now seen in the App Gateway Information panel. Do not share this information with others. This information will be needed in the following section.
- Click Activate App Gateway.