OIM User Attributes Modification
/0 Comments/in Access Management, Attributes Modification, Oracle, Oracle Identity Manager/by PathMaker GroupWhile integrating Oracle Identity Manager within a corporate environment, sometimes it is important to change some user attributes externally. OIM API provides simple means to perform these operations.
As is the case in any operation, a connection needs to be made to the OIM instance. This is a simple task, but one must ensure that credentials are properly stored and protected.
protected static OIMClient client;
private static String OIMInitialContextFactory = “weblogic.jndi.WLInitialContextFactory”;
public OIMConnect(String fileName) throws Exception
{
Hashtable<String, String> env = new Hashtable<String, String>();
env.put(OIMClient.JAVA_NAMING_FACTORY_INITIAL, OIMInitialContextFactory);
env.put(OIMClient.JAVA_NAMING_PROVIDER_URL, CONNECTION_URL);
client = new OIMClient(env);
System.setProperty(“java.security.auth.login.config”, AUTHCONF_FILE);
System.setProperty(“OIM.AppServerType”, “weblogic”);
client.login(OIMUSERNAME, OIMUSERPASSWORD.toCharArray());
return;
}
Tivoli Directory Integrator – Before Initialize – Add Date to File Name
/0 Comments/in Before Initialize, File System Connector, filePath, IBM Tivoli Directory Integrator, upgradeIAM/by Mark AdamsonI wrote a different TDI blog discussing the Before Initialize Hook. That blog discussed setting the filter in an Iterator. Here is another use for the Before Initialize Hook, this time in a File System Connector. As I mentioned in prior PathMaker Group blogs Tivoli Directory Integrator (TDI) is a pretty neat tool that comes packaged with IBM Tivoli Identity Manager (ITIM) with a bunch of Connectors. This blog will relate to the File System Connector.
Have you ever wanted to build create a File System Connector that creates a file that has a unique value so the process can run multiple times a day or week and you don’t have to worry about overlaying the file? This can be accomplished with the Before Initialize. In this case the process will only run once a day so only the date is added to the end of the file name. Read more
Who We Are
PathMaker Group is a specialized Security and Identity Management Consultancy, blending core technical and product expertise, consultative know-how, and extensive implementation experience.
Pathmaker Group
DALLAS-FORT WORTH
635 Fritz Drive
Suite 110
Coppell, TX 75019
(817) 704-3644
info@pathmaker-group.com