Chuyển đến nội dung chính

The Identity Connector Framework (ICF)

Oracle IDM has lots of stable connector implementations (using ICF) which are being extensively leveraged in real world IDM deployments e.g. Active Directory, Generic Unix, Generic LDAP, Generic DB-UM, Flat File, IBM Domino Lotus Notes etc.

Nhận xét

Bài đăng phổ biến từ blog này

Registering a Plugin using OIM APIs

Version: Oracle Identity Manager 11g R2 package com.oracle.utility; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Hashtable; import java.util.logging.Level; import java.util.logging.Logger; import javax.security.auth.login.LoginException; import oracle.iam.platform.OIMClient; import oracle.iam.platform.pluginframework.PluginException; import oracle.iam.platformservice.api.PlatformService; import oracle.iam.platformservice.api.PlatformUtilsService; import oracle.iam.platformservice.exception.PlatformServiceAccessDeniedException; /**  * @author Pham Thanh Tung  * Email: phamthanhtungdcn@gmail.com  * 21-06-2017  */ public class RegisterPlugin {     public static final String OIM_HOSTNAME = "10.4.18.101";     public static final String OIM_PORT = "14000";     public static final String OIM_PROVIDER_URL = "t3://"+ OIM_HOSTNAME + "...

Uninstalling an OIM Connector

Version: Oracle Identity Manager 11.1.2.3.0 Step 1: Modify "ConnectorUninstall.properties" located in the "/home/oracle/Oracle/Middleware/Oracle_IDM1/server/bin" directory. Step 2: Here is a brief description of each parameter defined in the file: DatabaseURL: location of the Oracle Database DbUserName: Name of the OIM schema Location: Place where you want the log files of this process to be. ConnectorName: Name of the connector (Same as in the OIM console: Advanced-> Manage Connector -> search. Use the Connector Name field.) Step 3: Run the" uninstallConnector.sh" script located in "/home/oracle/Oracle/Middleware/Oracle_IDM1/server/bin" directory. [Enter the DB Password :] <OIM schema password> [Enter OIM Administrator Name :] xelsysadm [Enter the OIM Administrator Password :] [Enter OIM Server t3 URL [Ex. t3://localhost:7001/ ]:] t3://localhost:14000 Step 4: Execute the "DeleteJars.sh...