Error registering the Plugin in OIm 11g

HI All,
I am receiving the following error while registering the plugin in OIM11g
[oracle@orclfmw plugin_utility]$ ant -f pluginregistration.xml register
Buildfile: pluginregistration.xml
register:
[echo]
[echo] *******************************************************************************
[echo] REGISTRATION TOOL TO REGISTER
[echo] *******************************************************************************
[echo] This tool can be used to register or unregister plugins to OIM.
[echo]
[echo] Edit the ant.properties file to set the properties.
[echo] Invoke the corresponding ant targets (register or unregister) to perform registration or unregistration correspondingly.
[echo]
[echo] Following are the additional system properties accepted by the utility. They would be prompted if not passed at the time of invoking the utility.
[echo]
[echo] OIM.Username (User ID of the oim user)
[echo] ServerURL (URL of the server. t3://<host>:<port>)
[echo] PluginZipToRegister (Complete name with path of the plugin file. Required for registering a plugin.)
[echo]
[echo] Set the other properties in ant.properties file:
[echo] wls.home
[echo] oim.home
[echo] login.config
[echo]
[echo]
[echo] /home/oracle/Oracle/Middleware/Oracle_IDM1/server/ext/spring.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/ext/jakarta-commons/commons-logging.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/ext/internal/toplink.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/platform/iam-platform-context.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/platform/iam-platform-utils.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/platform/iam-platform-auth-client.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/platform/iam-platform-pluginframework.jar:/home/oracle/Oracle/Middleware/Oracle_IDM1/server/client/oimclient.jar:/home/oracle/Oracle/Middleware/wlserver_10.3/server/lib/wlfullclient.jar
[input] Enter the oim user id:
xelsysadm
BUILD FAILED
/home/oracle/Oracle/Middleware/Oracle_IDM1/server/plugin_utility/pluginregistration.xml:73: The <input> type doesn't support the nested "handler" element.
i don't know what causing this problem..please help
thank you
Edited by: Harsha.kashyap on May 6, 2012 3:12 AM

make sure that you have followed the steps carefully.
1. Modify ant.properties
2. Build the wlfullclient.jar
http://docs.oracle.com/cd/E28389_01/doc.1111/e14309/plugins.htm#CJACGBJB
let me know the OIM version.
Thanks,
Kuldeep

Similar Messages

  • How to Deploy the Event Handlers OIM 11g

    Hi
    I have developed the code for post process event handler using OIM 11 G API. The OIM not invoking the EventHandlers while updating the users attribute or creating the users attribute.
    I have done the following task to develop and deploy the OIM 11g Event handlers. They are
    1) Implementing the PostProcessHandler interface and provide the implementation of execute method.
    Sample Class
    public class SamplePostProcessEventHandler implements PostProcessHandler {
         private Logger logger=Logger.getLogger("TEST-LOGGER");
         public SfsuPostProcessEventHandler()
              logger.debug("Invoking Event Handler Plugin");
         @Override
         public boolean cancel(long arg0, long arg1,
                   AbstractGenericOrchestration arg2) {
              // TODO Auto-generated method stub
              return false;
         @Override
         public void compensate(long arg0, long arg1,
                   AbstractGenericOrchestration arg2) {
              // TODO Auto-generated method stub
         @Override
         public EventResult execute(long processid, long eventid, Orchestration orchestration) {
              // TODO Auto-generated method stub
              logger.debug("Operation "+orchestration.getOperation());
              logger.debug("Parameters "+orchestration.getInterEventData());
              logger.debug("Parameters "+orchestration.getParameters());
              EventResult result=new EventResult();
              return result;
         @Override
         public BulkEventResult execute(long arg0, long arg1, BulkOrchestration arg2) {
              // TODO Auto-generated method stub
              return null;
         @Override
         public void initialize(HashMap<String, String> arg0) {
              // TODO Auto-generated method stub
    2) Create the Jar File SamplePostProcessEventHandler.jar
    3) Create the Plugin.xml file
    Sample File
    <?xml version="1.0" encoding="UTF-8"?>
    <oimplugins>
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="test.eventhandlers.SamplePostProcessEventHandler" version="1.0" name="SamplePostProcessEventHandler">
    </plugin>
    </plugins>
    </oimplugins>
    4) Create the directory lib and copy the SamplePostProcessEventHandler.jar file into this directory
    5) Creating the Zip file with the following directory structure.
    plugin.xml
    lib/SamplePostProcessEventHandler.jar
    6) Register the plugin
    ant -f pluginregistration.xml register
    7) Creating the Custom Events xml file called EventHandlers.xml
    <?xml version='1.0' encoding='UTF-8'?>
    <eventhandlers>
    <action-handler class="test.eventhandlers.SamplePostProcessEventHandler" entity-type="User" operation="CREATE" name="SamplePostProcessEventHandler" stage="postprocess" order="LAST" sync="TRUE"/>
    <action-handler class="test.eventhandlers.SamplePostProcessEventHandler" entity-type="User" operation="MODIFY" name="SamplePostProcessEventHandler" stage="postprocess" order="LAST" sync="TRUE"/>
    </eventhandlers>
    8) Importing the Above XML into the MDS Schema Using the weblogicImportMetadata.sh file
    Directory Structure of the Event Handler Schema File
    /home/oracle/eventhandler/db/EventHandlers.xml
    weblogic.properties file parameters
    wls_servername=oim_server1
    application_name=oim
    metadata_from_loc=/home/oracle/eventhandler
    9) Finnally Running the PurgeCache.sh All
    10) Restarted the OIM Server.
    11) Testing
    I have logged into the OIM Admin Console >> Search the User > Update the First Name. The event handlers are not invoked any create or update operation. I am not able to see the log entries into the log file.
    My Log Entry Configuration.
    log File Configuration :
    /u01/app/wl-10.3.5.0/Oracle/Middleware/user_projects/domains/oim_domain/config/fmwconfig/servers/oim_server1/logging.xml
    <log_handler name='test-handler' level='FINEST' class='oracle.core.ojdl.logging.ODLHandlerFactory'>
    <property name='logreader:' value='off'/>
    <property name='path' value='/u01/app/wl-10.3.5.0/Oracle/Middleware/user_projects/domains/oim_domain/servers/oim_server1/logs/test-event.log'/>
    <property name='format' value='ODL-Text'/>
    <property name='useThreadName' value='true'/>
    <property name='locale' value='en'/>
    <property name='maxFileSize' value='5242880'/>
    <property name='maxLogSize' value='52428800'/>
    <property name='encoding' value='UTF-8'/>
    <logger name="TEST-LOGGER" level="FINEST" useParentHandlers="false">
    <handler name="test-handler"/>
    <handler name="console-handler"/>
    </logger>
    Is there anything is missing while deploying the event handlers.
    Help is Greatly appreciated.

    Change as per the following :
    1. Put the event hander in the /home/oracle/eventhandler /metadata/metadata directory and
    2. Change the following in the weblogic properties
    application_name=OIMMetadata
    metadata_from_loc to =/home/oracle/eventhandler/metadata
    This will work.

  • After the upgrade to 10.10.3 Foto doesn't run and call the error of the plugin PhotoFoundation

    after the upgrade to 10.10.3 Foto doesn't run and call the error of the plugin PhotoFoundation

    Try opening iTunes while holding down the option key. When you get a dialog box with "create a new library" or "choose a library", select the choose option and navigate to the library on your external HD.
    BTW: If your external HD is not powered on and mounted before opening itunes, iTunes will create a new blank library.

  • Error when approving the request in OIM 11g R2

    I have a catalog item for iPlanet User resource setup to go for beneficiary manager approval. On the approval window, when the manager approves the request, OIM tries to forward to the url /identity/face which throws an generic error saying "identity" page doesnt exist because it doesn't get resolved as hostname.
    I have another OIM instance where the popup window just disappears when the approval button is clicked. I'm not sure what the default behavior is. In R1, it used to get a OIM alert box notifying that the request was approved/rejected.
    I'm getting these errors in the logs when I approve/reject
    The parent-organization-chain is empty for the organization list
    Edited by: DJ on Jan 16, 2013 10:44 AM
    Edited by: DJ on Jan 16, 2013 2:36 PM

    I scooped the requests when I hit the approve button, it hits the 302 - Page moved Temporarily
    Here is is the request looks like for the working instance:
    <html><head><title>302 Moved Temporarily</title></head>
    <body bgcolor="#FFFFFF">
    <p>This document you requested has moved temporarily.</p>
    <p>It's now at <a href="http://oim1:14000/identity/faces/adf.task-flow-return?_adf.ctrl-state=zjh4didfg_105&amp;adf.tfDoc=%2FWEB-INF%2FApprovalTask_TaskFlow.xml&amp;adf.tfId=ApprovalTask_TaskFlow&amp;_task-flow-outcome=done&amp;_afrLoop=20671600459024">http://oim1:14000/identity/faces/adf.task-flow-return?_adf.ctrl-state=zjh4didfg_105&amp;adf.tfDoc=%2FWEB-INF%2FApprovalTask_TaskFlow.xml&amp;adf.tfId=ApprovalTask_TaskFlow&amp;_task-flow-outcome=done&amp;_afrLoop=20671600459024</a>.</p>
    </body></html>Here is the broken instance:
    <html><head><title>302 Moved Temporarily</title></head>
    <body bgcolor="#FFFFFF">
    <p>This document you requested has moved temporarily.</p>
    <p>It's now at <a href="http://identity/faces/adf.task-flow-return?_adf.ctrl-state=1acvf8c9l_101&amp;adf.tfDoc=%2FWEB-INF%2FApprovalTask_TaskFlow.xml&amp;adf.tfId=ApprovalTask_TaskFlow&amp;_task-flow-outcome=done&amp;_afrLoop=16835862702848">http://identity/faces/adf.task-flow-return?_adf.ctrl-state=1acvf8c9l_101&amp;adf.tfDoc=%2FWEB-INF%2FApprovalTask_TaskFlow.xml&amp;adf.tfId=ApprovalTask_TaskFlow&amp;_task-flow-outcome=done&amp;_afrLoop=16835862702848</a>.</p>
    </body></html>Working code has the hostname:port - oim1:14000 as part of the URL but the second one does not have it. Does anyone know where this URL setting is stored?
    Thanks
    Edited by: DJ on Jan 16, 2013 2:34 PM
    Edited by: DJ on Jan 16, 2013 2:35 PM

  • How to Deploy the Scheduler Task OIM 11g

    Hi.
    I have deployed the scheduler task in OIM 11g and also I have configured the Scheduler task in OIM Admin Console. The Java Scheduler class was not invoked when I run the Scheduler task.
    I have done the following configuration to develop and deploy the scheduler task in OIM.
    1) Developing the Java Class File.
    package edu.sfsu.oim11g.scheduler;
    import java.util.HashMap;
    import oracle.iam.scheduler.vo.TaskSupport;
    import edu.sfsu.oim11g.logger.SfsuLogger;
    public class SfsuTrustedSourceReconciliation extends TaskSupport {
         //private Logger logger= Logger.getLogger(SfsuTrustedSourceReconciliation.class);
         private SfsuLogger logger= new SfsuLogger("SFSU-LOGGER");
         private String className=this.getClass().getCanonicalName();
         private String methodName="";
         public SfsuTrustedSourceReconciliation() {
              methodName="SfsuTrustedSourceReconciliation";
              debug("SfsuTrustedSourceReconciliation() Called");
         @Override
         public void execute(HashMap arg0) throws Exception {
              // TODO Auto-generated method stub
              methodName="execute";
              debug("SfsuTrustedSourceReconciliation Arguments "+arg0);
         @Override
         public HashMap getAttributes() {
              // TODO Auto-generated method stub
              return null;
         @Override
         public void setAttributes() {
              // TODO Auto-generated method stub
         private void debug(Object message)
              logger.info(className+" : "+methodName+" : "+message);
    2) Custom Scheduler XML File
    This file is located in
    /home/oracle/confg_files/schedulers/db/SfsuTrustedSourceReconciliation.xml
    <scheduledTasks xmlns="http://xmlns.oracle.com/oim/scheduler">
         <task>
         <name>SfsuTrustedSourceReconciliation</name>
              <class>edu.sfsu.oim11g.scheduler.SfsuTrustedSourceReconciliation</class>
              <description>Reconciliation IDSync Data</description>
              <retry>5</retry>
              <parameters>
                   <string-param required="true" encrypted="false" helpText="Source Data Source">Source Resource Data Source Name</string-param>
                   <string-param required="true" encrypted="false" helpText="Config Data Source">Config Resource Data Source Name</string-param>
                   <string-param required="true" encrypted="false" helpText="Reconciliation Type is Full Or Cincremental. Default is Incremental">Reconciliation Type</string-param>
                   <number-param required="true" encrypted="false" helpText="Max Records" >Max Records</number-param>
              </parameters>
         </task>
    </scheduledTasks>
    3) Plugin File Configuration.
    <?xml version="1.0" encoding="UTF-8"?>
    <oimplugins>
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="edu.sfsu.oim11g.eventhandlers.SfsuPostProcessEventHandler" version="1.0" name="SfsuPostprocessExtension"/>
    </plugins>
    <plugins pluginpoint="oracle.iam.scheduler.vo.TaskSupport">
    <plugin pluginclass="edu.sfsu.oim11g.scheduler.SfsuTrustedSourceReconciliation" version="1.0" name="SfsuTrustedSourceReconciliation"/>
    </plugins>
    </oimplugins>
    The event handler is successfully deployed and working fine without any issue.
    4) making the scheduler jar file.
    5) Making the scheduler zip with the following directory format.
    plugin.xml
    lib/scheduler.jar
    6) Registering the Schedule task and event handler as a Plugin.
    ant -f pluginregistration.xml register
    7) Importing the SfsuTrustedSourceReconciliation.xml file into the MDS.
    7.1) weblogic.properties
    wls_servername=oim_server1
    application_name=oim
    metadata_from_loc=/home/oracle/configfiles/schedulers
    7.2) Running the weblogicImportMetadata.sh file
    It imported the SfsuTrustedSourceReconciliation.xml file into the MDS Schema and it is available in the MDS_PATH table in MDS schema
    Path_Name : SfsuTrustedSourceReconciliation.xml
    PATH_FULL : /db/SfsuTrustedSourceReconciliation.xml
    8) Imported the EventHandlers.xml file into the MDS Schema.
    9) Run the PurgeCache.sh file
    10) Restarted the OIM Server.
    11) Loggin into the OIM Admin Console and Created the Scheduler job based on the SfsuTrustedSourceReconciliation listed in the scheduler.
    12) Run the Scheduler job and log file entries are not logged into the log file. My Log File Configuration
    <log_handler name='sfsu-handler' level='FINEST' class='oracle.core.ojdl.logging.ODLHandlerFactory'>
    <property name='logreader:' value='off'/>
    <property name='path' value='/u01/app/wl-10.3.5.0/Oracle/Middleware/user_projects/domains/oim_domain/servers/oim_server1/logs/sfsu-connector.log'/>
    <property name='format' value='ODL-Text'/>
    <property name='useThreadName' value='true'/>
    <property name='locale' value='en'/>
    <property name='maxFileSize' value='5242880'/>
    <property name='maxLogSize' value='52428800'/>
    <property name='encoding' value='UTF-8'/>
    </log_handler>
    <logger name="SFSU-LOGGER" level="FINEST" useParentHandlers="false">
    <handler name="sfsu-handler"/>
    <handler name="console-handler"/>
    </logger>
    Is there any special configuration Do i need to do invoke my Scheduler Java Class File.
    Help is Greatly Appreciated.

    Seems like you did it all right but just piece which if you can modify and test. The plugin.xml has two artifacts eventhandler and the schduler. Can you try creating separate plugin.xml with one for the scheduler zipped up with /lib/scheduleClass.jar and test it?
    Just deregister everything before trying it and let us know how it goes.
    Also the logger as I see is a custom logger, so it is extending the OOTB Logger? Just put some sysouts in the code and check for those in the server out file to be sure.
    Edited by: bbagaria on Jul 22, 2011 5:15 PM

  • Error While Creating User in OIM 11g R2

    Experts,
    I am working on OIM 11g R2, while creating user i am getting below prompt
    IAM-2050242: Orchestration process with id 815, failed with error message IAM-3010201:LDAP create event failed: Object Class Violation.
    any pointers?

    Try to check which OBJ Class violation are you hitting , for example: If you have uniquemember instead of member and try to add more than one member this will be a rule violation. Eg: ADD request to an attribute that is included in an account entry because the attribute entry has been existed prior to the ADD request.
    I hope this helps.
    Thiago Leoncio.

  • Mapping a parameter to the form field (OIM 11g)

    Hello, people!
    How can I get an information from a created form field?
    In more details: I have to assign a manual creating of a resource to a concrete group of users. So I made a form that contains a field named "Admin Group", made a process for this form that contains a manual task "manual create user", in assignment tab of this task I'm using a task assignment adapter. This adapter has one input parameter - Group name using what I want to find a group key. So the problem is in mapping this parameter. I expected to find my "Admin Group" field and map to it, but i didn't find that. How can I get information from this field?
    Regards
    Anton Litvin

    I think you have created Object Form. Are you seeing Object Data while mapping.
    Create one process form. Populate Process Form Field using Data Flow under Process Definition.
    While mapping you'll see Process data to map with your Admin Group.
    Sorry don't know how they have handled in OIM 11g... Above is for 10g.

  • Error in the Upgrade Assistant for 11g

    Hi,
    I'm trying to upgrade a 10g repository to 11g using the Upgrade Assistant but it is returning an (unhelpful) error in the log file.
    Has anyone else experienced this error or know what it is?
    [2010-09-17T14:14:45.902+01:00] [Framework] [NOTIFICATION] [upgrade.Framework] Starting to upgrade BIEE.
    [2010-09-17T14:14:45.933+01:00] [Framework] [ERROR] [UPGAST-00138] [upgrade.Framework] upgrade exception occurred
    [2010-09-17T14:14:45.933+01:00] [Framework] [ERROR] [upgrade.Framework] Cause: An unexpected upgrade exception has occurred. Action: See the secondary error message for additional details.
    [2010-09-17T14:14:45.933+01:00] [Framework] [ERROR] [upgrade.Framework] UPGCMP-02712: Expected oracle.biee.admin:oracleInstance=*,type=BIDomain.OracleInstance,group=Service Oracle instance, found 2
    [2010-09-17T14:14:45.933+01:00] [Framework] [ERROR] [upgrade.Framework] UPGCMP-02712: Expected oracle.biee.admin:oracleInstance=*,type=BIDomain.OracleInstance,group=Service Oracle instance, found 2
    [2010-09-17T14:14:45.933+01:00] [Framework] [NOTIFICATION] [upgrade.Framework] Finished upgrading BIEE with status: Failure.
    Thanks.

    I ran into this same problem after I performed the steps in the enterprise deployment guide. One of the steps in Chapter 5, section 5.4.4 has you separate the bi_server1 managed server from the admin server into its own "mserver" directory structure by using the pack.sh and unpack.sh commands. This step appears to cause the problem. For now, what I have done is perform a complete reinstall and skip this step along with any other clustering related steps. Once I did this, I was able to run the upgrade assistant to upgrade the 10g repository to 11g.
    I have informed Oracle support about this issue. If they have a better work around, I will post it back here at a later date.
    Edited by: user10715047 on Dec 21, 2010 1:33 PM

  • Trying to check for updates but I keep getting an error from the plugin checker.

    I try to find updates for the plugins I have installed and when I get to the site I get this message:Plugin Finding Service Error
    We've encountered an error. Please try your request again later.

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • Error Registering the provider

    I am trying to register the web provider (the link to actual page worked) and got the error .
    An error occurred when attempting to call the providers register function. (WWC-43134)
    An unexpected error occurred: ORA-29531: no method registerProvider in class oracle/webdb/provider/web/HttpProviderDispatcher (WWC-43000)
    Plaes help

    Mila,
    The best place for this question is the Oracle Portal Development Kit forum.
    Thanks

  • Error in using Lookup Query - OIM 11g

    Hi Guys,
    I am trying to use following lookup query:
    select usr_key, usr_login from USR where usr_status = 'Active' and have following mapping defined in the process form:
    Column Width = 200
    Lookup Column Name = usr_login
    Column Names = usr_key, usr_login
    Column Captions = USER_KEY, USER_LOGIN
    The values are getting populated properly while searching for the lookup. But when I click on 'SELECT' button. It throws error. saying 'A system error occurred'
    I see following error in the log:
    <Jul 4, 2011 7:19:07 PM IST> <Error> <XELLERATE.WEBAPP> <BEA-000000> <Class/Method: tcLookupFieldAction/selectedValue encounter some problems: {1}
    Thor.API.Exceptions.tcColumnNotFoundException
    at Thor.API.tcMetaDataSet.getStringValue(tcMetaDataSet.java:368)
    at com.thortech.xl.webclient.actions.tcLookupFieldAction.selectedValue(tcLookupFieldAction.java:1723)
    ### Steps to Reproduce Problem ###
    1. Create a new process form
    2. For one of the column, assign following properties:
    Lookup Query = select usr_key, usr_login from USR where usr_status = 'Active'
    Column Width = 200
    Lookup Column Name = usr_login
    Column Names = usr_key, usr_login
    Column Captions = USER_KEY, USER_LOGIN
    3. Activate the form
    4. Open the resource in Web Console
    5. Search for that lookup.
    6. Select any of the value
    7. Press 'Select' button. Error is thrown.
    Could somebody please help me out with this issue?
    Thanks,

    Got the solution:
    tcColumnNotFoundException with Lookup Query

  • Error in Provioning Exchange2007 with oim 11g

    Hi All ,
    I installed a new Remote manager in the same server where Exchange is installed. Then I configured Exchange connector and IT resource with oim11g.
    While I was trying to provision a newly created user with Exchange2007 after provisioning with Active Directory.
    I got an error like this :
    Running CHECKPROCESSORDEREDFORUSER
    Target Class = com.thortech.xl.util.adapters.tcUtilXellerateOperations
    Running GETVALUE
    Target Class = com.thortech.xl.integration.Exchange.tcExchangeTasks
    Running GETSTRINGLENGTH
    Target Class = com.thortech.xl.util.adapters.tcUtilStringOperations
    Running Check Madatory
    Running Check If Email Alias Characters Are Invalid
    Running GETSERVICENAME
    Target Class = java.lang.String
    Running GETURL
    Target Class = java.lang.String
    Running GETSCRIPTPATH
    Target Class = java.lang.String
    Running GETREPORTLOGPATH
    Target Class = java.lang.String
    Running CheckRemoteManagerConnection
    <Jan 20, 2012 8:56:15 PM IST> <Error> <XELLERATE.REMOTEMANAGER> <BEA-000000> <Class/Method: RemoteManagerSupport/getRemoteManager encounter some problems: RManager1
    java.rmi.NotBoundException: RManager1
    at sun.rmi.registry.RegistryImpl.lookup(RegistryImpl.java:114)
    where RManager1 is the Remote manager service name.
    Any solutions please.
    -Ashish

    Make sure that the Remote Manager Service name is the same in the following two locations
    1. In OIM Design Console, under IT Resource of Type "Remote Manager" you specify the service name. I believe this must be set to RManager1.
    2. Now on the host where you have deployed Exchange Remote Manager, check the xlconfig.xml file and ensure that the service name specified there is also RManager1
    Restart the Remote Manager.
    Before trying to provision the mailbox, check the status of the Remote Manager from the Design Console -> Administration -> Remote Manager form.

  • Error while updating AD attributes-OIM 11G

    Hello All,
    I changed the expiration date value in user table and the associated change task is propagating the change to AD User process form, BUT the Account Expiration Updated task failed and it throws the below error.
    Similarly for all the attributes this is happening, any change made in xellerate user form is forwarded to process form but the associated Update task is failing and the attribute is not updated in AD.
    Thanks.
    Regards,
    ~VSN
    Running Set User Expiration Date
    <Oct 26, 2011 4:18:54 PM EDT> <Error> <XELLERATE.DATABASE> <BEA-000000> <Error: Error Keyword: DAE.UNKNOWN_CODE
    Description: An unknown error code was passed.
    Remedy: Contact your system adminstrator.
    Action: E
    Severity: C
    Help URL:
    Detail:
    >
    <Oct 26, 2011 4:18:54 PM EDT> <Error> <XELLERATE.SERVER> <BEA-000000> <Class/Method: tcUserProvisionObject/checkAllowMultiple Error : OBJ doesnot allow miltiple.This object cannot be provisioned multiple times>
    <Oct 26, 2011 4:18:54 PM EDT> <Error> <XELLERATE.SERVER> <BEA-000000> <Class/Method: tcDataObj/save Error :Insertion of dataobject into database failed>
    <Oct 26, 2011 4:18:54 PM EDT> <Error> <XELLERATE.DATABASE> <BEA-000000> <Class/Method: tcDataBase/rollbackTransaction encounter some problems: Rollback Executed From
    java.lang.Exception: Rollback Executed From
    at com.thortech.xl.dataaccess.tcDataBase.rollbackTransaction(tcDataBase.java:578)
    at com.thortech.xl.dataobj.tcDataObj.rollback(tcDataObj.java:904)
    at com.thortech.xl.dataobj.tcDataObj.doRollback(tcDataObj.java:867)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:538)
    at oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler.execute(ProvisionAccountActionHandler.java:104)
    at oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler.execute(ProvisionAccountActionHandler.java:35)
    at sun.reflect.GeneratedMethodAccessor1444.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at oracle.iam.platform.kernel.impl.EventHandlerDynamicProxy.invoke(EventHandlerDynamicProxy.java:30)
    at $Proxy276.execute(Unknown Source)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runActionEvents(OrchProcessData.java:1035)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:644)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:669)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeChildProcess(OrchestrationEngineImpl.java:751)
    at oracle.iam.platform.kernel.impl.OrchProcessData.handleAdditionalChanges(OrchProcessData.java:537)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:802)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:227)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:674)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:705)
    at oracle.iam.platform.kernel.impl.OrhestrationAsyncTask.execute(OrhestrationAsyncTask.java:108)
    at oracle.iam.platform.async.impl.TaskExecutor.executeUnmanagedTask(TaskExecutor.java:100)
    at oracle.iam.platform.async.impl.TaskExecutor.execute(TaskExecutor.java:70)
    at oracle.iam.platform.async.messaging.MessageReceiver.onMessage(MessageReceiver.java:68)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:102)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy473.onMessage(Unknown Source)
    at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
    at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
    at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
    at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
    at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
    at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    <Oct 26, 2011 4:18:54 PM EDT> <Error> <oracle.iam.accesspolicy.impl.handlers.provisioning> <IAM-4030308> <An error occurred in oracle.iam.accesspolicy.impl.handlers.provisioning.ProvisionAccountActionHandler while provisioning resource 3,759 to user 28 and the cause of error is DAE.UNKNOWN_CODE: C: An unknown error code was passed. : This object cannot be provisioned multiple times.>

    tcUserProvisionObject/checkAllowMultiple Error : OBJ doesnot allow miltiple.This object cannot be provisioned multiple times>
    the cause of error is DAE.UNKNOWN_CODE: C: An unknown error code was passed. : This object cannot be provisioned multiple times.The error points that you are trying to provision multiple instance of a resource while you have NOT selected "Allow Multiple" option in Resource Object configuration.

  • Error during the installation of OIM

    Hello all,
    After install oracle database(10.2) , oracle application server 10.1.3, i started both and try to install OIM in my machine(Rhel4), but when it question to me about informations of my application server (Username[oc4jadmin],password,rmi port and the name of oc4j instance), the installation tell's me that my application server didn't started, but application server is up. Anyone know about this problem? Please help me?
    Thanks again.

    Check Metalink Note:466183.1, it should solve your problem
    Regards

  • Error during the installation of OBIEE 11g

    Hi all,
    i have an issue with OBIEE 11g when installing it on windows seven .It stops in the creation of the instance as .
    when i read the log file i saw this : java.outofmemoryerror permgen space
    my question is how can i increase the permgen space ?
    Thanks all

    Check this link
    http://prasadmadhasi.com/2011/11/13/increase-java-heap-size-for-oracle-map-builder/
    Also check
    http://www.unitask.com/oracledaily/2012/02/29/obiee-11-1-1-ibm-jdk-tuning-for-weblogic-11g-under-aix-6-x/
    Pls mark if helps

Maybe you are looking for