- Install the Oracle database 11g.
- Run the RCU version 11.1.2.2 to create the schema in the database.
- Install Weblogic 10.3.6. Create a Middleware Home.
- Download the installation media for IAM 11.1.2.2 and unzip. Run runInstaller command to install the Oracle IAM home in the middleware.
- Run config.sh from
IAM_HOME
\common\bin\
to configure the OAM. - Run ./psa command to patch the OPSS schema from MW_Home/oracle_common/bin directory. Note: Only update OPSS schema. Do not select any other schema while running patch assistant.
- Configure the database security store by running the below command: <MW_HOME>/oracle_common/common/bin/wlst.sh <IAM_HOME>/common/tools/configureSecurityStore.py -d <MW_Home>/user_projects/domains/base_domain -c IAM -p welcome1 -m create
- Start the servers.
1. Prepopulate Adapter in OIM uses the plugin point oracle.iam.request.plugins.PrePopulationAdapte r. 2. Write the Java code which returns the value which has to be populated on the form. 3. This code will implement the plugin point oracle.iam.request.plugins.PrePopulationAdapte r. Code Snippet: - package com.oracle.oim.utility.eventhandler; import java.io.Serializable; import java.util.Iterator; import java.util.List; import java.util.logging.Logger; import oracle.iam.identity.exception.NoSuchUserException; import oracle.iam.identity.exception.UserLookupException; import oracle.iam.identity.usermgmt.api.UserManager; import oracle.iam.identity.usermgmt.vo.User; import oracle.iam.platform.Platform; import oracle.iam.platform.authz.exception.AccessDeniedException; import oracle.iam.request.exception.RequestServiceException; import oracle.iam.request.vo.Beneficiary; import oracle.iam.request.vo.RequestData; public c
Comments
Post a Comment