Testing Oracle Internet Directory Connector for OIM

Hello,
I'm trying to test the running test cases available in the Oracle Internet Directory Connector for OIM but I'm failing because it seems that the current release of this connector doesn't have the java class tcUtilTestOID as described in the documentation. This class should be at test\troubleshoot\scripts directory, but there there are only the batch files with the test cases.
Can anyone confirm this or provide me this class file?
Thanks in advance.

This is the code. Include this in your custom jar file with the same name. You will be done I suppose:
import com.thortech.util.logging.Logger;
import com.thortech.xl.integration.OID.util.tcUtilLDAPOperations;
import java.io.*;
import java.util.Properties;
import javax.naming.directory.BasicAttribute;
import javax.naming.directory.BasicAttributes;
public class tcUtilTestOID
private static String CONFIG_FILEPATH = "global.properties";
public tcUtilTestOID()
public static void main(String args[])
tcUtilLDAPOperations ldapOp = null;
Logger logger = Logger.getLogger("TEST_USER_PROVISION");
logger.info("**********************************");
logger.info("**********************************" + args[0]);
try
FileInputStream configfile = null;
try
configfile = new FileInputStream(CONFIG_FILEPATH);
catch(FileNotFoundException fe)
logger.error("Unable to find configfile(" + CONFIG_FILEPATH + ")");
fe.printStackTrace();
Properties prp = new Properties();
try
prp.load(configfile);
catch(IOException ie)
logger.error("Unable to load configfile(" + CONFIG_FILEPATH + ")");
ie.printStackTrace();
String serverName = prp.getProperty("serverName");
String portNo = prp.getProperty("portNo");
String rootContext = prp.getProperty("rootContext");
String principalDN = prp.getProperty("principalDN");
String principalPass = prp.getProperty("principalPassword");
boolean sslFlag = "true".equalsIgnoreCase(prp.getProperty("sslFlag"));
logger.info("serverName = " + serverName);
logger.info("portNo = " + portNo);
logger.info("rootContext = " + rootContext);
logger.info("principalDN = " + principalDN);
logger.info("sslFlag = " + sslFlag);
logger.info("===================================\n");
ldapOp = new tcUtilLDAPOperations(serverName, portNo, rootContext, principalDN, principalPass, sslFlag);
String ldapUserDNPrefix = "cn";
String ldapObjectClass = "objectclass";
String ldapUserObjectClass = "inetOrgPerson";
String ldapFirstName = "givenName";
String ldapLastName = "sn";
String ldapCommonName = "cn";
String ldapPassword = "userPassword";
String containerDN = prp.getProperty("containerDN");
logger.info("containerDN = " + containerDN);
logger.info("UserOperation selected = " + args[0]);
if(args[0].equalsIgnoreCase("createUser"))
logger.info(" CREATE USER CALLED");
String createUserFName = prp.getProperty("createUser.firstName");
String createUserLName = prp.getProperty("createUser.lastName");
String createUserUserDN = prp.getProperty("createUser.userDN");
String createUserUserPass = prp.getProperty("createUser.userPassword");
logger.info("createUser.firstName = " + createUserFName);
logger.info("createUser.lastName = " + createUserLName);
logger.info("createUser.userDN = " + createUserUserDN);
logger.info("createUser.userPassword = " + createUserUserPass + "\n\n");
BasicAttributes basicattributes = new BasicAttributes(true);
basicattributes.put(new BasicAttribute(ldapObjectClass, ldapUserObjectClass));
basicattributes.put(new BasicAttribute(ldapFirstName, createUserFName));
basicattributes.put(new BasicAttribute(ldapLastName, createUserLName));
basicattributes.put(new BasicAttribute(ldapCommonName, createUserFName + " " + createUserLName));
basicattributes.put(new BasicAttribute(ldapPassword, createUserUserPass));
ldapOp.connectToLDAP();
boolean userCreated = ldapOp.createObject(ldapUserDNPrefix + "=" + createUserUserDN + "," + containerDN, basicattributes);
ldapOp.disconnectFromLDAP();
if(userCreated)
logger.info("\t>> " + createUserUserDN + " - USER_CREATION_SUCCESSFUL");
} else
logger.info("\t>> " + createUserUserDN + " - USER_CREATION_FAILED");
} else
if(args[0].equals("modifyUser"))
logger.info(" MODIFY USER CALLED");
String modifyUserUserDN = prp.getProperty("modifyUser.userDN");
String modifyUserParamName = prp.getProperty("modifyUser.paramName");
String modifyUserParamValue = prp.getProperty("modifyUser.paramValue");
logger.info("modifyUser.userDN = " + modifyUserUserDN);
logger.info("modifyUser.paramName = " + modifyUserParamName);
logger.info("modifyUser.paramValue = " + modifyUserParamValue);
ldapOp.connectToLDAP();
BasicAttributes basicattributes = new BasicAttributes(true);
basicattributes.put(new BasicAttribute(modifyUserParamName, modifyUserParamValue));
boolean isUserModified = ldapOp.modifyAttributesReplace(ldapUserDNPrefix + "=" + modifyUserUserDN + "," + containerDN, basicattributes);
ldapOp.disconnectFromLDAP();
if(isUserModified)
logger.info("\t>> " + modifyUserUserDN + " - USER_UPDATE_SUCCESSFUL");
} else
logger.info("\t>> " + modifyUserUserDN + " - USER_UPDATE_FAILED");
} else
if(args[0].equals("deleteUser"))
logger.info(" DELETE USER CALLED");
String deleteUserUserDN = prp.getProperty("deleteUser.userDN");
logger.info("deleteUser.userDN = " + deleteUserUserDN);
ldapOp.connectToLDAP();
boolean isUserDeleted = ldapOp.deleteObject(ldapUserDNPrefix + "=" + deleteUserUserDN + "," + containerDN);
ldapOp.disconnectFromLDAP();
if(isUserDeleted)
logger.info("\t>> " + deleteUserUserDN + " - USER_DELETION_SUCCESSFUL");
} else
logger.info("\t>> " + deleteUserUserDN + " - USER_DELETION_FAILED");
catch(Exception e1)
e1.printStackTrace();
return;
Thanks
Sunny

Similar Messages

  • OIM 11g installation : Create Oracle Internet Directory Failed

    Hi, everyone,
    I have try to install OIM 11g for many times , but also error happened....
    I did like follow:
    1, install OS, window 2008 R2 64bit.(I have install oracle database 11g on another machine.)
    2, install weblogic 10.3.3 (without config domain)
    3, install OIM 10.1.1.2 64bit (without config, only software)
    4, install OIM patch set2 10.1.1.3 64bit
    5, use config.bat to config...
    select the new domain ...
    but , when start the Oracle Internet Directory , error happened and message like followed..
    AdminServer port is 7001
    trying to connect to TPC3013 7001
    Successful
    getDomainRuntimeMBeanServerConnection ...
    Connecting to Domain runtime ...
    trying to connect to TPC3013 7001
    Successfully connected to the Domain Runtime ...
    trying to connect to TPC3013 7001
    Successful
    MBean Server Connection is :javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection@5e83450d
    TPC3013 7001
    Instance asinst_1 already exists, continuing with component creation
    C:\Oracle\Middleware\Oracle_IDM1 C:\Oracle\Middleware\asinst_1 asinst_1
    oracle.as.config.ProvisionException: OID-23663
         at oracle.iam.management.oid.install.wls.OIDComponentHelper.setSuperUserCredentials(OIDComponentHelper.java:2267)
         at oracle.iam.management.oid.install.wls.OIDComponent.postCreateConfig(OIDComponent.java:343)
         at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:145)
         at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:358)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:522)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:438)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:865)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.ldap.util.UtilException: NamingException encountered in ldapModify [LDAP: error code 32 - No Such Object]
         at oracle.ldap.util.Util.ldapModify(Util.java:2555)
         at oracle.iam.management.oid.install.wls.OIDComponentHelper.setSuperUserCredentials(OIDComponentHelper.java:2254)
         ... 19 more
    help, thanks.

    I think this
    +Caused by: oracle.ldap.util.UtilException: NamingException encountered in ldapModify [LDAP: error code 32 - No Such Object]+
    shows the cause of error.
    I entered dc=com for OVD and realm: dn=myrealm for OID. Is it correct?
    Edited by: mfedo on Apr 15, 2011 12:43 AM

  • OIM: Manage Oracle Internet Directory Groups

    Hello,
    In the Oracle Identity Manager Web Administrative And User Console, there is a option to manage User Groups. I was wondering if it is possible with OIM to manage groups (objectclass groupOfUniqueNames) that are at Oracle Internet Directory. Or this option is only to manage internal OIM user groups?
    Thanks in advance.

    Sagar, I was successful recociling group lookups.
    Now, I want to import the OID groups to OIM to be managed via web adminsitration console. For this, I'm running (I suppose that I'm right) OID Group Recon Task. However, I'm always getting the following error:
    ------ DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.schedule.tasks.tcTskOIDGrouporRoleReconTaskgetITResourcePropValue()getITResourcePropValue() Group Reconciliation Time Stamp = 20091201121351z
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.schedule.tasks.tcTskOIDGrouporRoleReconTask : getITResourcePropValue():: FINISHED
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.schedule.tasks.tcTskOIDGrouporRoleReconTask : init():: STARTED
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.schedule.tasks.tcTskOIDGrouporRoleReconTask : execute():: STARTED
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.util.tcUtilLDAPOperations : tcUtilLDAPOperations():: STARTED
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - Parameter Variables passed into com.thortech.xl.integration.OID.util.tcUtilLDAPOperations:tcUtilLDAPOperations(): Login Variables are:: are sServerName = 10.126.70.10, sPortNo = 3060, sPrincipalDN = cn=orcladmin, cn=Users,dc=ccfdev, dc=local, sProviderURL = ldap://10.126.70.10:3060,
    INFO 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - Parameter Variables passed into com.thortech.xl.integration.OID.util.tcUtilLDAPOperations:tcUtilLDAPOperations(): Login Variables are:: are sServerName = 10.126.70.10, sPortNo = 3060, sPrincipalDN = cn=orcladmin, cn=Users,dc=ccfdev, dc=local, sProviderURL = ldap://10.126.70.10:3060,
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - Parameter Variables passed into com.thortech.xl.integration.OID.util.tcUtilLDAPOperations:tcUtilLDAPOperations(): Login Variables are:: for isSSLEnabled = false
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.util.tcUtilLDAPOperations : tcUtilLDAPOperations():: FINISHED
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - OID:tcTskOIDGrouporRoleReconTask: execute()Start of Reconciliation.
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.schedule.tasks.tcTskOIDGrouporRoleReconTask : performReconciliation():: STARTED
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - ====================================================
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - OID:tcTskOIDGrouporRoleReconTask:performReconciliation():String index out of range: -1
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - ====================================================
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.util.tcUtilLDAPOperations : disconnectFromLDAP():: STARTED
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - ====================================================
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.util.tcUtilLDAPOperations : disconnectFromLDAP() : : Unable to close LDAP Context. The context was probably not created, since it is null
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - ====================================================
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - ====================================================
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - Exception at the end in OID:tcTskOIDGrouporRoleReconciliation:processChange(): com.thortech.xl.integration.OID.util.tcUtilLDAPOperations: Unable to close LDAP Context. The context was probably not created, since it is null
    ERROR 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - ====================================================
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - OID:tcTskOIDGrouporRoleReconTask: execute()End of Reconciliation.
    DEBUG 16 Dez 2009 11:28:11,112 QuartzWorkerThread-1 XL_INTG.OID - com.thortech.xl.integration.OID.schedule.tasks.tcTskOIDGrouporRoleReconTask : execute():: FINISHED ------
    Am I missing something? Any tips?
    Thanks in advance.

  • Customizing Resource Adapter for Oracle Internet Directory

    Hi,
    I want to integrate an application which has Oracle Internet Directory as resource. I need to develop a resource adapter for integrating. As Oracle Internet Directory is LDAP v3, can I use LDAP resource Adapter for interaction, if so what customization is required?
    can any one give suggestion reagrding this?

    Hi Bahaugab,<br>
    I am working Oracle OID. I can able to add/modify/delete users from my resource configuration. But I am getting active sync problem with OID. It throws exception like :<br>
    From the admin console please verify that the change log is enabled under Configuration: Replication: Supplier Settings and that the Retro Changelog Plugin is enabled under Configuration: Plug-ins: Retro Changelog Plugin
    <br><br>
    But change log is enabled.
    <br><br>
    I want to know whether your active sync worked?
    <br><br>
    thanks<br>
    Neopal<br><br>

  • OCS 10.1.2 using Oracle Internet Directory R3 (10.1.4)

    Hello people...
    Somebody knows if it is possible that OCS 10.1.2 can use an existing Oracle Internet Directory 10.1.4?
    Documentation specify compatibility with OID 9.x versions and obviously OID 10.1.2 and Certify list of Collaboration Suite for Identity Management specify only version 10.1.2 and no for the new latest version 10.1.4.
    I think that both documents were written before the release of Identity Management 10.1.4. Are you test in your environments this configuration? works?
    Thanks in advance for your comments...

    A para in a metalink note states that ocs 10.1.2.3 portlets can be deployed on a portal 10.1.4 using IAS 10.1.2 infra structure(but i donot think that oid version is 10.1.4 ).
    According to Note:389677.1
    Check the list of possible scenarios for OCS portlets - Portal coexistence to see, what is possible and what is not possible: ·
         OCS 10.1.2.x is shipped with Portal 10.1.2.0.2 and the OCS 10.1.2 portlets can be used with a 10.1.2.0.2 Portal ·     
    OCS 10.1.2.x portlets can be deployed to a 10.1.2.0.2 Portal ·
         OCS 10.1.2.0.0 portlets cannot be used with a Portal 10.1.4 ·     OCS 10.1.2.1.0 portlets cannot be used with a Portal 10.1.4 ·
         OCS 10.1.2.2.0 portlets can be used with a Portal 10.1.4 and they can be deployed to a 10.1.4 Portal.This scenario is supportet, but not certified yet.Mandatory prerequisite is the OCS cumulative patch 10.1.2.2 (see Note 352989.1) or better OCS cumulative patch 10.1.2.3 (see Note 361082.1)
    Following scenarios were tested by Oracle Support - but these are not certified yet:·     
    OCS 10.1.2.3 and 10.1.4 Portal using the OCS infrastructureNote 392913.1
    How To Register OCS 10.1.2.3 Portlets To External 10.1.4 Portal Using OCS Infrastructure Note 392913.1
    How To Register OCS 10.1.2.3 Portlets To External 10.1.4 Portal Using OCS Infrastructure ·
    OCS 10.1.2.3 and 10.1.4 Portal using an 10.1.2.0.2 iAS infrastructureNote 393590.1
    How To Register OCS 10.1.2.3 Portlets To External 10.1.4 Portal Using IAS Infrastructure Note 393590.1 How To Register OCS 10.1.2.3 Portlets To External 10.1.4 Portal Using IAS Infrastructure ·     OCS 10.1.2.3 (using OCS infrastructure) and Portal 10.1.4 using another iAS 10.1.2.0.2 infrastructureNote 390467.1 How To Register OCS 10.1.2.3 Portlets To External 10.1.4 Portal Note 390467.1 How To Register OCS 10.1.2.3 Portlets To External 10.1.4 Portal

  • Fails when create oracle internet directory in oracle identity management

    Dear All,
    I try to configure oracle identity management and always getting error when try to create oracle internet directory.
    Running on windows 2008 server, oracle weblogic 10.3.4, oim 11.1.1.2.0.
    This is the log file as follow ...
    AdminServer port is 7001
    trying to connect to VM-WindowsServer2K8 7001
    Successful
    getDomainRuntimeMBeanServerConnection ...
    Connecting to Domain runtime ...
    trying to connect to VM-WindowsServer2K8 7001
    Successfully connected to the Domain Runtime ...
    trying to connect to VM-WindowsServer2K8 7001
    Successful
    MBean Server Connection is :javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection@1c58252
    VM-WindowsServer2K8 7001
    Instance idmfinal_2 already exists, continuing with component creation
    D:\Oracle\Middleware\Oracle_IDM1 D:\Oracle\Middleware\idmfinal_2 idmfinal_2
    oracle.as.provisioning.util.ConfigException:
    Error creating ASComponent oid1.
    Cause:
    An internal operation has failed: oracle/security/xmlsec/util/Base64
    Action:
    See logs for more details.
         at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:414)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:358)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:525)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:441)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:861)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.NoClassDefFoundError: oracle/security/xmlsec/util/Base64
         at oracle.security.jps.internal.common.util.JpsCommonUtil.<clinit>(JpsCommonUtil.java:212)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:155)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:166)
         at oracle.iam.management.oid.install.wls.OIDComponentHelper$3.run(OIDComponentHelper.java:2377)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.iam.management.oid.install.wls.OIDComponentHelper.delCredFromCSF(OIDComponentHelper.java:2372)
         at oracle.iam.management.oid.install.wls.OIDComponentHelper.removeCreds(OIDComponentHelper.java:2363)
         at oracle.iam.management.oid.install.wls.OIDComponent.onRemove(OIDComponent.java:423)
         at oracle.as.config.impl.OracleASComponentBaseImpl.remove(OracleASComponentBaseImpl.java:286)
         at oracle.as.config.impl.OracleASComponentBaseImpl.remove(OracleASComponentBaseImpl.java:173)
         at oracle.as.config.impl.OracleASComponentBaseImpl.remove(OracleASComponentBaseImpl.java:154)
         at oracle.iam.management.oid.install.wls.OIDComponent.onCreate(OIDComponent.java:221)
         at oracle.as.config.impl.OracleASComponentBaseImpl.createComponent(OracleASComponentBaseImpl.java:596)
         at oracle.as.config.impl.OracleASComponentBaseImpl.create(OracleASComponentBaseImpl.java:105)
         at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:144)
         at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
         at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
         ... 15 more
    Caused by: java.lang.ClassNotFoundException: oracle.security.xmlsec.util.Base64
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionClassLoader.loadClass(StandardConfigActionClassLoader.java:75)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         ... 32 more
    progress in calculate progress33
    please help me to solve this problem.
    Regards,
    -Ranubaya

    I hit retry and now the "Create Oracle Internet Directory" completed successfully. But now the error is on "Start Oracle Internet Directory". Following error appears in the log file:
    *[2011-01-06T17:11:51.929-06:00] [as] [WARNING] [] [oracle.as.config] [tid: 37] [ecid: 0000IpSwWP60jo8yBgpIcT1D9XrH00000S,0] Failed to start component oid1[[*
    oracle.as.config.ProvisionException: HTTP status code = 400 : No processes or applications match the specified configuration.
    Please assist!

  • Migrating Oracle Internet Directory Data

    We are trying to migrate oracle internet directory data from one of our test environments to the production environments. Both the environments are running on windows 2000 Operating Systems.
    We are followiing the procedures mentioned in the Oracle Application Server 10g Administrator's Guide for the migration. But in one of the sections there is a command that uses unix shell script files - catalog.sh
    This doesnt work in the windows environment, and only after completing this task I can proceed with the migration. Can anyone let us know if there is any windows equivalent file for this catalog.sh. How to proceed from here..

    Arnal,
    Is this really a Portal thread?
    Anyway... Maybe you have two options here (for example):-
    1. Either use the CYGWIN.
    2. Use the LDAPSEARC & LDAPADD to bring everything from Source to Target. In the middle change/substitue the necessary strings, ie, like for example domain.
    I hope it helps...
    Cheers,
    Pedro.

  • Oracle Internet Directory propogation from prod to dev

    I'm having a hard time figuring out how passwords from one Oracle Internet Directory are getting propagated to another. I've taken ownership of an OracleAS Portal system and the DBA who set both it and the development box up has long since moved on. I've had pretty good luck learning enough to be proficient from the documentation, but one aspect eludes me. When a password is changed in Production portal environment (whether through the Portal app or through the admin pages), the password change is almost immediately propagated to our development OracleAS Portal environment. I know this through testing, but also by checking the times for attribute "pwdchangedtime" in the Oracle Internet Directory. The development Oracle Internet Directory entry is updated roughly 5 seconds after the production entry.
    I know there's something called replication, but from what I could glean from Directory Manager GUI, I don't think this is in play (though I can't say for sure). I also don't believe it is custom code or a scheduled job.
    Any ideas would be greatly appreciated.

    Found it! Been poking around and found an entry under "Server Management-->Integration Server --> Configuration Set1" for "OID Import". It was pointing at our production server. Mystery solved.

  • Oracle Single Sign on and Oracle Internet Directory

    Hello Gurus,
    What is the relationship between Oracle Single Sign on and Oracle Internet Directory.
    To my understanding, OID is required to install SSO.
    If OID already exist, can we just install SSO and go on integrating it to existing OID.
    Great Thanks,
    vimal jain.
    [email protected]

    Hi Tim,
    I've been working on this and could reproduce the issue with anonymous binds. A fix will be ready in 4.2.1.
    So what I really need is the password used for login to pass to the is_member call.The P101_PASSWORD item does not save state. However, you can access the value during submit processing of the login page, for example in the post authentication function of your authentication scheme. People sometimes put code in there to query the user's groups (e.g. with apex_ldap.member_of2) and save them in an application. This item value can then be used in the authorization schemes.
    Regards,
    Christian

  • Configure WebSphere Portal Server to use LDAP (Oracle Internet Directory)

    I did configuration for WebSphere Portal to use security with LDAP Oracle Internet Directory (OID). The script for configuring works well (WPSConfig.bat action-secure-portal-ldap)
    But when i start Portal Server it cannot start successfully. I did check in log file and found a error on SystemOut.log as attachment log below. I don't know what happen with WebSphere Portal Server.
    If you guys know how to fix it please let me know or point me some documents to configure this again.
    Thanks in advanced.
    Servlet E com.ibm.wps.engine.Servlet init EJPFD0016E: Initialization of service failed.
    com.ibm.wps.ac.DomainAdministratorNotFoundException: EJPSB0107E: Exception occurred while retrieving the identity of the domain adminuser/admingroup uid=wpsadmin,cn=Users,dc=localhost,dc=com.

    There is no clear documentation available to enable custom security but IBM info center has decent documentation for LDAP based security. I would say follow the steps mentioned for IBM directory and then modify the necessary configuration parameters for OID. This should solve your issues. For better help open a PMR with IBM to get necessary quick help.

  • Error while configuring Oracle Internet Directory

    Hi All,
    I have installed OID according to instructions in
    http://download.oracle.com/docs/cd/E21764_01/install.1111/b32474/start.htm#BEHHHCBB
    I was trying to configure OID using instructions given in section 6.5 Only OID Without a WebLogic Domain at below url
    http://download.oracle.com/docs/cd/E21764_01/install.1111/e12002/oid.htm#CIHHFIGC
    The configurations is failing in creation of directory giving an error below:
    [2011-11-15T12:14:40.321+05:30] [as] [NOTIFICATION] [] [oracle.as.config] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] Ports: nonssl= 3060 ssl= 3131
    [2011-11-15T12:14:40.321+05:30] [as] [NOTIFICATION] [] [oracle.as.config] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] Creating OID specific directories
    [2011-11-15T12:14:40.321+05:30] [as] [NOTIFICATION] [] [oracle.as.config] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] JPS Files already exist: oracle.as.config.ProvisionException: Dest file (C:\Oracle\Middleware\asinst_2\config\JPS\jps-config-jse.xml) already exists.
    [2011-11-15T12:14:40.321+05:30] [as] [NOTIFICATION] [] [oracle.as.config] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] Files already exist: oracle.as.config.ProvisionException: Dest file (C:\Oracle\Middleware\asinst_2\config\JPS\system-jazn-data.xml) already exists.
    [2011-11-15T12:14:41.774+05:30] [as] [ERROR] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [[
    java.lang.NoClassDefFoundError: oracle/security/xmlsec/util/Base64
    at oracle.security.jps.internal.common.util.JpsCommonUtil.<clinit>(JpsCommonUtil.java:204)
    at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:154)
    at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:165)
    at oracle.iam.management.oid.install.wls.OIDComponentHelper$1.run(OIDComponentHelper.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.iam.management.oid.install.wls.OIDComponentHelper.setCredInCSF(OIDComponentHelper.java:389)
    at oracle.iam.management.oid.install.wls.OIDComponentHelper.setPasswdsInCSF(OIDComponentHelper.java:361)
    at oracle.iam.management.oid.install.wls.OIDComponent.onCreate(OIDComponent.java:177)
    at oracle.as.config.impl.OracleASComponentBaseImpl.createComponent(OracleASComponentBaseImpl.java:596)
    at oracle.as.config.impl.OracleASComponentBaseImpl.create(OracleASComponentBaseImpl.java:105)
    at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:144)
    at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:358)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
    at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:537)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:441)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:820)
    at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:855)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.ClassNotFoundException: oracle.security.xmlsec.util.Base64
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionClassLoader.loadClass(StandardConfigActionClassLoader.java:75)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    ... 29 more
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: IdMProvisioningEventListener] [SRC_METHOD: onConfigurationError] ENTRY bb084f6d-09f4-4737-b462-a0a877a439db
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] ________________________________________________________________________________
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> configGUID bb084f6d-09f4-4737-b462-a0a877a439db
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] ErrorID: 35076
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] Description: [[
    Error creating ASComponent oid1.
    Cause:
    An internal operation has failed: oracle/security/xmlsec/util/Base64
    Action:
    See logs for more details.
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] ________________________________________________________________________________
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> eventResponse ==oracle.as.provisioning.engine.ConfigEventResponse@1cc678a
    [2011-11-15T12:14:41.774+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Configuration Status: -1
    [2011-11-15T12:14:41.774+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Asking User for RETRY or ABORT
    [2011-11-15T12:14:41.774+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> ActionStep:OID
    [2011-11-15T12:14:41.774+05:30] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JE_xudK9d_QwI^e9Sv1EkWaj000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> wait for User Input ....
    ===================================================================
    It is not able to find the class oracle.security.xmlsec.util.Base64.
    I was able to find a related thread on this issue at Oracle Internet Directory Config Error Linux x64 java.lang.NoClassDefFoundE
    but didn't find much helpful.
    The setup details are as follows:
    Weblogic Version: 10.3.5
    RCU Version: 11.1.1.3.3
    IDM version: 11.1.1.2.0 (release version) Upgraded to 11.1.1.5.0 (Patchset version)
    Also Oracle IDM installation has the jar file odst_xmlsec.jar having the Base64 class.
    Please let me know if you see any issues.
    Thanks in advance,
    Vikrant
    Edited by: 894449 on Nov 16, 2011 1:01 AM

    Hi,
    Please try
    "Error Creating ASComponent Oid1" Error During OID Configuration When Installing OID11g (Doc ID 1427253.1) that should resolve the issue.

  • Oracle Internet Directory - query.

    Hello ,
    I have query.. as below.. plz provide inputs..
    While installing OID, is it mandatory to install Oracle DB... ?
    If not, then any idea what is the DB used for OID in the backend ?
    Thank you,
    Gops

    Hi Gops,
    Follow the below sequence to make your Oracle Database/RAC usage for OID at the backend
    1) Oracle Database 10g (Version 10.2.0.1). Install the database software only
    2) Upgrade the Oracle Database 10g from 10.2.0.1 to 10.2.0.4 (OID requires a Metadata Repository Database which is certified)
    3) Install Oracle Database 10g Companion for Ultra Search Option
    4) Create a database instance using dbca utility tool, with following DB initialization parameters to be updated while creation (aq_tm_process --> 3 , db_cache_size --> 157286400 , shared_pool_size --> 209715200 , java_pool_size --> 136314880, sesssion --> 500)
    5) Install MRCA on top of Oracle Database.
    6) Install Oracle Internet Directory using Identity Management Option.
    Hope this will help you out.
    Thanks,
    Ajay Babu Pentela

  • Export users in Oracle internet directory

    hi!
    i want to export all the users fro Oracle internet directory with their passwords,resources each and every information regarding users.....
    please tell me how to export and then import those users.....
    actually im tranferring those all users from one application servers OID to another Application server OID....

    There are a few good notes on Metalink about this :
    251776.1 : How to Copy Users and Groups from One OracleAS Infrastructure to Another
    436998.1 : Considerations For Migrating Entries From One OID To Another
    223804.1 : Migrating Users with Password from OID version 2.1.1 or 3.0.1 to higher versions of OID
    404335.1 : How To Migrate / Import / Move / Copy Users From A Database (i.e., Portal, Discoverer, etc.) Into OID, To Enable Users To Login Via SSO
    You may also want to check the backup/restore procedures for small directory in the documentation .
    Thanks,
    EJ

  • Register with Oracle Internet Directory

    During installation of Oracle Application server window appear for Register with Oracle Internet Directory
    Host :
    Port:
    what should enter here.

    Hi Xaver,
    Seems ur installing OAS10g r2,
    Host:is ur server's ip addess where ur installing Application Server
    Port:389(its a default port for Oracle Internet Directory)
    Regards
    Fabian

  • Start Oracle Internet Directory failing... server context is null

    I'm trying to install Oracle Internet Directory on a RHEL5 64 bit for the first time.
    The database (11.2.0.3), Weblogic (10.3.6), and OID (11.1.1.6) have all installed okay, and I'm running the config.sh script.
    I specify 'Creating the schema' and enter in the SYS credentials. The installation goes fine but fails to "Start Oracle Internet Directory" at the configure component stage.
    I can see in the oraInventory/log/install-xxxxx.log
    [2013-01-04T14:15:54.362+13:00] [as] [WARNING] [] [oracle.as.config] [tid: 12] [ecid: 0000Jk314pw3n3kxOw7ECd1GtYLj000003,0] Failed to start component oid1[[
    oracle.as.config.ProvisionException: HTTP status code = 400 : The request parameters did not match any components
            at oracle.as.config.impl.OracleASComponentBaseImpl.manageProcess(OracleASComponentBaseImpl.java:943)
            at oracle.as.config.impl.OracleASComponentBaseImpl.start(OracleASComponentBaseImpl.java:1062)
            at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:153)
            at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
            at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
            at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:364)
            at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
            at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:523)
            at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:439)
            at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
            at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:951)
            at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)
            at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
            at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
            at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
            at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:64)
            at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)
            at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
            at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
            at java.lang.Thread.run(Thread.java:662)and in the oraInventory/log/install-xxxxx..out file,...
    Repository Creation Utility - Creating Tablespaces
    Validating and Creating Tablespaces
    Repository Creation Utility - Create
    Repository Create in progress.
    Percent Complete: 0
    Percent Complete: 35
    Percent Complete: 29
    Percent Complete: 91
    Repository Creation Utility: Create - Completion Summary
    Database details:
    Host Name                       : localhost
    Port                            : 1521
    Service Name                    : OID.CTRU.AUCKLAND.AC.NZ
    Connected As                    : sys
    Prefix for (non-prefixable) Schema Owners : DEFAULT_PREFIX
    RCU Logfile                     : /u04/app/oracle/Middleware/Oracle_IDM1/rcu/log/rcu.log
    Component schemas created:
    Component                       Status  Logfile
    Oracle Internet Directory               Success /u04/app/oracle/Middleware/Oracle_IDM1/rcu/log/oid.log
    Repository Creation Utility - Create : Operation Completed
    -------------------------------------------------   RCUUtil createOIDRepository status = 0-------------------------------------------------   progress in calculate progress25
      AdminServer port is 7001
      trying to connect to oracleidir.ctru.auckland.ac.nz 7001
      Successful
      getDomainRuntimeMBeanServerConnection ...
      Connecting to Domain runtime ...
      trying to connect to oracleidir.ctru.auckland.ac.nz 7001
      Successfully connected to the Domain Runtime ...
      trying to connect to oracleidir.ctru.auckland.ac.nz 7001
      Successful
      MBean Server Connection is :javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection@1dd9505
    oracleidir.ctru.auckland.ac.nz 7001
    Instance asinst_1 already exists, continuing with component creation
    /u04/app/oracle/Middleware/Oracle_IDM1  /u04/app/oracle/Middleware/asinst_1  asinst_1
    oracle.as.config.ProvisionException: Error Starting OID
            at oracle.iam.management.oid.install.wls.OIDComponentHelper.temp_startOID(OIDComponentHelper.java:1980)
            at oracle.iam.management.oid.install.wls.OIDComponent.postCreateConfig(OIDComponent.java:325)
            at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:145)
            at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
            at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
            at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:358)
            at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
            at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:523)
            at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:439)
            at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
            at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:874)
            at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)
            at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
            at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
            at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
            at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:64)
            at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)
            at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
            at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
            at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.as.config.ProvisionException: OID server context is null
            at oracle.iam.management.oid.install.wls.OIDComponentHelper._isOIDSrvUp(OIDComponentHelper.java:2050)
            at oracle.iam.management.oid.install.wls.OIDComponentHelper.temp_startOID(OIDComponentHelper.java:1970)
            ... 19 moreIs anyone able to point me in the right direction as to the cause of this?
    I notice that Metalink ID: " FMW 11g Oracle Internet Directory Configuration Process Fail: Error Creating Ascomponent Oid1 [ID 1289015.1]" refers to IPV6. I only have IPV4 enabled. Is IPV6 a mandatory requirement for OID?
    Thanks in advance.

    I downloaded the RCU 11.1.1.6 patch (13517109) and it ran fine this way (after a drop/create on the OID schemas).
    Obviously running the {Middleware_Home}/Oracle_IDM1/bin/rcu file isn't the way to do it. I'll pay closer attention next time....
    Thanks for your help.

Maybe you are looking for

  • My ipod touch 4g, has a white spot on the screen when you turn it on, what is that and how do I fix it?

    When you turn the ipod on, there is a noticeable white spot on the screen/display. Once all the apps come on you can't see it, but when it starts up you can.

  • The system cannot find the file specified!!

    hi i am new to java web start. i am trying to run a program which copies the contents of a text file farrago.txt to a new file in some other directory. i have packed farrago.txt in the jar file with the program but when i run the program through webs

  • FTP and "File-in-use"

    Dear all, We have a scenario in which a file is written to the SAP application server which should be picked up by XI using the FTP adapter. The polling interval of the adapter is set to 60 seconds. We running into a strange problem: it may occur tha

  • If i uninstall itunes and re-intall it would i still have my same music?

    i want to uninstall itunes because there are diffrent errors happeing, and want to re-install it later, do i still get all my music back by re-installing or does it all delete everything and start as new? please help!

  • Past 12 months Average!

    Hello BW Gurus, Can any one help me in getting past 12 months average? Do we need to write any code? Currently I am using formula key figure (period1) and text variable (zperiod1)in the Bex to calculate the past 12 months average but for some reason