Nexaweb Error Message in OIM 11.1.1.5

Hi experts,
I am using OIM 11.1.1.5.
I am not able to open up the deployment manager export utility. It is giving Nexaweb Error Message.
The Internet Explorer version is: 9

Make sure java is enabled in your browser. To verify it's not the issue from your OIM side. Open deployment using xming or xmanager first and see what happens. If you are getting same issue there as well. create a symbolinc link to java in your /home/username/.mozilla folder and recjeck using xming.
regards,
GP

Similar Messages

  • Localizing Error Messages in OIM

    I was wondering if someone can tell me how to localize error messages in OIM. Is it as simple as adding the error codes to the property file, similar to UDFs?
    thanks

    There are out of the box error messages in OIM that i see in the Design Console.Example:
    Key - 395
    Code - DOBJ.USR_INVALID_EMAIL_FORMAT
    Description - Specified Email Format is Invalid.
    I'm assuming this is what is shown to the user when they do not enter in a valid email value. Is it possible to localize/internationalize that to another language like Spanish or French?

  • Display Custom Error Message in OIM 11g

    Hi,
    I'm trying to display an error message from a validation event handler but seems that am missing something. When the "oracle.iam.platform.kernel.ValidationFailedException" is thrown from a validation handler an error message is displayed: "An error occurred". If an error code is provided (see code below) then the message looks like: "An error occurred. The corresponding error code is ERR-0001". I guess that some resource bungle with corresponding messages should be provided.
    the code used:
    package test;
    public class UserGeneralValidationHandler implements oracle.iam.platform.kernel.spi.ValidationHandler
    @Override
    public void validate(long processId, long eventId, Orchestration orchestration)
                   throws ValidationException
    String errorCode = "ERR-0001";
    String message = "Simple validation message.";
    ValidationFailedException ex = new ValidationFailedException(message);
    ex.setProcessID(processId);
    ex.setErrorCode(errorCode);
    throw ex;
    Q:
    1.What is missing for complete solution?
    2.What is the algorithm that used by OIM to find default or non default resource bundle?
    3.How to change out-of-box validation messages? For a sample "The organization ABC does not exist." message is shown if non existing organization is provided during user creation and I'd like to have a different one.
    Regards
    Serge

    rename OIMUI.jar  to OIMUI.zip
    find logging_en and loggin.properties.
    Modify the "IAM-2050512" error message with your custom message
    Find Agent and agent_en.properties.
    Find Note[ERROR_SUBMITTING_REQUEST].text.  Modify the message. Make sure the message must be the same with in logging.properties("IAM_2050512")
    Deploy
    change the  OIMUI.zip to jar
    replace the existing OIMUI.jar
    login to weblogic  and redeploy OIM (oim.ear)
    no need to restart OIM server.
    Test:
    create a request in web console again, you must see the custom message when you hit the submit button
    hope this helps.
    -rad

  • Display Error Message in OIM 11g

    Hi
    Requirement: When we create user manually if middle name is empty then show error message as "Middle Name is null. Please enter value"
    Steps I have done so far
    1. Created below event handler custom code which extends ValidationHandler and specified the logic inside validate() which will throw error message.
    package mypackage;
    import java.io.Serializable;
    import java.util.HashMap;
    import oracle.iam.platform.context.ContextAware;
    import oracle.iam.platform.kernel.ValidationException;
    import oracle.iam.platform.kernel.ValidationFailedException;
    import oracle.iam.platform.kernel.spi.ValidationHandler;
    import oracle.iam.platform.kernel.vo.BulkOrchestration;
    import oracle.iam.platform.kernel.vo.Orchestration;
    public class MiddleNameValidation implements ValidationHandler {
         @Override
         public void validate(long arg0, long arg1, Orchestration orchestration)
                   throws ValidationException, ValidationFailedException {
              // TODO Auto-generated method stub
              HashMap<String, Serializable> parameters = orchestration
                        .getParameters();
              String middleName = getParameterValue(parameters, "Middle Name");
              if (isNullOrEmpty(middleName)) {
                   String msg = "NOTE[MIDDLE_NAME_MISSING].text:Middle Name is Missing:"; // Custom error message which should be displayed in console
                   ValidationFailedException excep = new ValidationFailedException(msg);
                   throw excep;
         @Override
         public void validate(long arg0, long arg1, BulkOrchestration arg2)
                   throws ValidationException, ValidationFailedException {
              // TODO Auto-generated method stub
         @Override
         public void initialize(HashMap<String, String> arg0) {
              // TODO Auto-generated method stub
         private String getParameterValue(HashMap<String, Serializable> parameters,
                   String key) {
              String value = (parameters.get(key) instanceof ContextAware) ? (String) ((ContextAware) parameters
                        .get(key)).getObjectValue()
                        : (String) parameters.get(key);
              System.out.println("VALUE::" + value);
              return value;
         private boolean isNullOrEmpty(String str) {
              return str == null || str.isEmpty();
    }2. Registered this code as plugin with out errors.
    plugin.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <oimplugins>
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="mypackage.MiddleNameValidation" version="1.0" name="MiddleNameValidation" />
    </plugins>
    </oimplugins>
    3. Imported eventhandlers.xml file to MDS.
    <?xml version='1.0' encoding='utf-8'?>
    <eventhandlers>
    <action-handler class="com.example.custompph.CustomPreProcessEventHandler" entity-type="User" operation="CREATE" name="CustomPreProcessEventHandler" stage="preprocess" order="1000" sync="TRUE"/>
    *<action-handler class="mypackage.MiddleNameValidation" entity-type="User" operation="CREATE" name="MiddleNameValidation" stage="preprocess" order="1000" sync="TRUE"/>*
    </eventhandlers>
    4. Purged the Cache
    But when I tested the same it is not throwing error message but it says ClassCast exception in the logs.
    Am I following the correct steps?
    Pls help.
    <Jul 28, 2011 4:45:42 AM EDT> <Error> <oracle.iam.identity.usermgmt.impl> <IAM-3050030> <An exception occurred while performing the operation.
    java.lang.ClassCastException: mypackage.MiddleNameValidation
         at oracle.iam.platform.kernel.impl.OrchProcessData.runPreProcessEvents(OrchProcessData.java:868)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:627)
         at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:220)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:665)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.process(OrchestrationEngineImpl.java:435)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:381)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:334)
         at oracle.iam.identity.usermgmt.impl.UserManagerImpl.create(UserManagerImpl.java:635)
         at oracle.iam.identity.usermgmt.api.UserManagerEJB.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         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.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         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:119)
         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 $Proxy319.createx(Unknown Source)
         at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.createx(UserManager_nimav7_UserManagerRemoteImpl.java:1089)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy184.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy312.createx(Unknown Source)
         at oracle.iam.identity.usermgmt.api.UserManagerDelegate.create(Unknown Source)
         at oracle.iam.identitytaskflow.backing.taskflows.createuser.CreateUserView.saveUserOperation(CreateUserView.java:521)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:91)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:421)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:421)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:116)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:101)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:160)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    <Jul 28, 2011 4:45:42 AM EDT> <Error> <oracle.iam.identitytaskflow.logging> <BEA-000000> <IAM-3060023>

    you must specify the xmlns for the eventhandlers tag in the step 3, like this one
    <eventhandlers
    xmlns="http://www.oracle.com/schema/oim/platform/kernel"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.oracle.com/schema/oim/platform/kernel orchestration-handlers.xsd">

  • GTC Page Error and Nexaweb Error

    hi all !
    i am experiencing two problems. First one is that when i open GTC page on the Administrator and USer Console, i get this error message printed on top of the page
    +"Provider Registration Framework Initialization failure occurred: The underlying XML parser that is used does not support the required JAXP version. Check the log files for more information."+
    can anyone guide me what do i need to change in my web server or else?
    other is that whenever i try to create noew workflow, the pop up window opens with following error:
    +"Nexaweb Error Message+
    +You don't have JAVA enabled or installed, click here for more info"+
    i have checked the browser settings for java....its enabled...where is the problem???

    wel i have come this far to know that there are two jars in EXT folder namely "Crimson.jar" and "xerces.jar". both have jaxp implementation. Now i guess default jar is set to crimson.jar as it tries to access method as under
    org.apache.crimson.jaxp.DocumentBuilderFactoryImpl.setAttribute(DocumentBuilderFactoryImpl.java:93)
    the error message that the underlying parser doesn't support JAXP 1.2 is because crimson.jar is JAXP 1.1
    now what should i do to tell OIM to use xerces.jar? or is the problem elsewhere?
    please help out

  • How to customize an Error Message

    Hi Gurus,
    Does anyone knows how can I customize the error messages?
    In example, I'm getting the "???en.DOBJ.UPDATE_PERMISSION_DENIED???" error message when a user try to change the user details and do not have permission. But I would like to show a friendly message like "You do not have permission to change this object" or something else.
    Thanks in advance.

    Hi bigboss,
    Thank you for your help. But in which format I need to input the error translation in xlWebAdmin.properties? Something like "DOBJ.UPDATE_PERMISSION_DENIED = You do not have permission to update this object" ?
    Just to let you know, I need to show more user friendly error messages for OIM default error messages.
    Cheers.

  • Error while patching OIM with BP06

    Hi ,
    I am facing error while patching OIM 11.1.1.5.0 with BP 06.
    Please see the logs below:-
    patch:
    [input] skipping input as property weblogic_password has already been set.
    [echo] unzipping the archives.....
    explode-archived-apps:
    [delete] Deleting directory /apps/oracle/middleware/Oracle_IDM1/server/apps/oim.ear
    [delete] Deleting directory /apps/oracle/middleware/Oracle_IDM1/server/apps/Nexaweb.ear
    [mkdir] Created dir: /apps/oracle/middleware/Oracle_IDM1/server/apps/oim.ear
    [mkdir] Created dir: /apps/oracle/middleware/Oracle_IDM1/server/apps/Nexaweb.ear
    [unzip] Expanding: /apps/oracle/middleware/Oracle_IDM1/server/patching/oim.ear into /apps/oracle/middleware/Oracle_IDM1/server/apps/oim.ear
    [unzip] Expanding: /apps/oracle/middleware/Oracle_IDM1/server/patching/Nexaweb.ear into /apps/oracle/middleware/Oracle_IDM1/server/apps/Nexaweb.ear
    [echo] archives unzipped successfully.....
    [echo]           seeding the out of the box jobs into db
    seed-ootb-jobs:
    seed-ootb-jobs:
    [echo] ----> SEEDING OUT OF THE BOX SCHEDULE JOBS AND TRIGGERS
    [java] Mar 25, 2013 7:32:31 PM org.quartz.core.QuartzScheduler <init>
    [java] INFO: Quartz Scheduler v.1.6.0 created.
    [java] Mar 25, 2013 7:32:31 PM org.quartz.impl.jdbcjobstore.JobStoreSupport initialize
    [java] INFO: Using thread monitor-based data access locking (synchronization).
    [java] Mar 25, 2013 7:32:31 PM org.quartz.impl.jdbcjobstore.JobStoreSupport cleanVolatileTriggerAndJobs
    [java] INFO: Removed 0 Volatile Trigger(s).
    [java] Mar 25, 2013 7:32:31 PM org.quartz.impl.jdbcjobstore.JobStoreSupport cleanVolatileTriggerAndJobs
    [java] INFO: Removed 0 Volatile Job(s).
    [java] Mar 25, 2013 7:32:31 PM org.quartz.impl.jdbcjobstore.JobStoreTX initialize
    [java] INFO: JobStoreTX initialized.
    [java] Mar 25, 2013 7:32:31 PM org.quartz.impl.StdSchedulerFactory instantiate
    [java] INFO: Quartz scheduler 'OIMQuartzScheduler' initialized from an externally provided properties instance.
    [java] Mar 25, 2013 7:32:31 PM org.quartz.impl.StdSchedulerFactory instantiate
    [java] INFO: Quartz scheduler version: 1.6.0
    [java] Mar 25, 2013 7:32:36 PM org.quartz.core.QuartzScheduler shutdown
    [java] INFO: Scheduler OIMQuartzScheduler_$_NON_CLUSTERED shutting down.
    [java] Mar 25, 2013 7:32:36 PM org.quartz.core.QuartzScheduler standby
    [java] INFO: Scheduler OIMQuartzScheduler_$_NON_CLUSTERED paused.
    [java] Mar 25, 2013 7:32:36 PM org.quartz.core.QuartzScheduler shutdown
    [java] INFO: Scheduler OIMQuartzScheduler_$_NON_CLUSTERED shutdown complete.
    [echo] ----> SEEDING COMPLETE LOG FILE
    [echo] ----> LOG FILE : ${work.dir}
    [echo] jobs seded succefully.....
    [echo]           updating the oes out of the box policies in oim db
    update-oes-ootb-policies:
    update-oes-ootb-policies:
    [echo] ----> UPDATING OUT OF THE BOX OES POLICIES     
    [java] [EL Info]: 2013-03-25 19:32:45.952--ServerSession(139722802)--EclipseLink, version: Eclipse Persistence Services - 1.1.0.r3634
    [java] [EL Info]: 2013-03-25 19:32:48.824--ServerSession(139722802)--file:/apps/oracle/middleware/Oracle_IDM1/modules/oracle.oes_11.1.1/jps-internal.jar-JpsDBDataManager login successful
    [echo] ----> SEEDING COMPLETE LOG FILE
    [echo] ----> LOG FILE : /apps/oracle/middleware/Oracle_IDM1/server/seed_data/Seed/OESPolicies
    [echo] oes policies updated successfully..
    [echo]           upgrading the oes-ootb policies accordin g to the patched xml
    upgrade-oes-ootb-policies:
    upgrade-oes-ootb-policies:
    [echo] ----> UPDATING OUT OF THE BOX OES POLICIES     
    [java] java.io.IOException: No such file or directory
    [java]      at java.io.UnixFileSystem.createFileExclusively(Native Method)
    [java]      at java.io.File.createNewFile(File.java:883)
    [java]      at oracle.iam.authzpolicydefn.loader.PolicyLoadDataLogger.createLogFile(PolicyLoadDataLogger.java:68)
    [java]      at oracle.iam.authzpolicydefn.loader.PolicyLoader.main(PolicyLoader.java:196)
    [java] Exception in thread "Main Thread" java.lang.NullPointerException
    [java]      at java.lang.Throwable.printStackTrace(Throwable.java:508)
    [java]      at oracle.iam.authzpolicydefn.loader.PolicyLoadDataLogger.createLogFile(PolicyLoadDataLogger.java:73)
    [java]      at oracle.iam.authzpolicydefn.loader.PolicyLoader.main(PolicyLoader.java:196)
    BUILD FAILED
    /apps/oracle/middleware/Oracle_IDM1/server/setup/deploy-files/setup.xml:94: The following error occurred while executing this line:
    /apps/oracle/middleware/Oracle_IDM1/server/setup/deploy-files/setup.xml:215: The following error occurred while executing this line:
    /apps/oracle/middleware/Oracle_IDM1/server/seed_data/seed-rcu-data.xml:136: Java returned: 1
    Total time: 2 minutes 25 seconds
    I have seen similar error on forum but it has not been answered.
    I have set all variables correctly and the directory has all permissions as well.
    Please let me know what I am missing here.
    Thanks in advance.

    Hi,
    Thanks for your help.
    The directory was already created during patch execution.
    My error was related to MDS password.
    The password for mds was different from OIM password so the patch errored out.
    Once the mds password was updated correctly in the profile file, the patch executed successfully.

  • LOTUS NOTES Reconciliation error message

    I am using OIM 11gR2 with connector server java installed on 32 bit windows 2003 server. While performing reconciliation i am getting the following error message includes both OIM side error messages and connector server side error message. Can any one help me out to over come this issue ASAP.
    OIM side error message:
    [2012-09-04T08:10:23.508-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.kernel.impl] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fe4e49376a8b4763:-2d65a256:139909ad0fc:-8000-0000000000001b2e,0] [APP: oim#11.1.2.0.0] Kernel executing default validation with process id, event id, entity and operation 5,045.0.JobDetails.SCHEDULE NOW
    [2012-09-04T08:10:23.519-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fe4e49376a8b4763:-2d65a256:139909ad0fc:-8000-0000000000001b2e,0] [APP: oim#11.1.2.0.0] Execute default action handler with 5045.15771.JobDetails.SCHEDULE NOW.entityId=null
    [2012-09-04T08:10:23.541-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.kernel.dao] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fe4e49376a8b4763:-2d65a256:139909ad0fc:-8000-0000000000001b2e,0] [APP: oim#11.1.2.0.0] Inserting records for orchestration cleanup
    [2012-09-04T08:10:23.552-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.platform.kernel.impl] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fe4e49376a8b4763:-2d65a256:139909ad0fc:-8000-0000000000001b2e,0] [APP: oim#11.1.2.0.0] Completed orchestration with action result - Done
    [2012-09-04T08:10:23.570-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000JaGajgHDOd8pVg_Aic1GHS_g000003,1:16405] [APP: oim#11.1.2.0.0] Job Listener, Job to be executed Description null FullName DEFAULT.Domino Connector User Reconciliation Name Domino Connector User Reconciliation
    [2012-09-04T08:10:23.645-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000JaGajgHDOd8pVg_Aic1GHS_g000003,1:16405] [APP: oim#11.1.2.0.0] Method details Method details: executeJob
    [2012-09-04T08:10:23.645-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.vo] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000JaGajgHDOd8pVg_Aic1GHS_g000003,1:16405] [APP: oim#11.1.2.0.0] Method details executeJob Domino Connector User Reconciliation
    [2012-09-04T08:10:24.392-05:00] [oim_server1] [WARNING] [] [oracle.iam.scheduler.vo] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fe4e49376a8b4763:-2d65a256:139909ad0fc:-8000-0000000000001b2e,0] [APP: oim#11.1.2.0.0] ADP ClassLoader failed to load: Script1
    [2012-09-04T08:10:24.393-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.features.scheduler.agentry.operations] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fe4e49376a8b4763:-2d65a256:139909ad0fc:-8000-0000000000001b2e,0] [APP: oim#11.1.2.0.0] ADP ClassLoader failed to load: Script1[[
    java.lang.ClassNotFoundException: ADP ClassLoader failed to load: Script1
    at com.thortech.xl.dataobj.tcADPClassLoader.findClass(tcADPClassLoader.java:229)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:247)
    at oracle.iam.scheduler.vo.ClassLoaderObjectInputStream.resolveClass(ClassLoaderObjectInputStream.java:72)
    at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1574)
    at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1495)
    at java.io.ObjectInputStream.readClass(ObjectInputStream.java:1461)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1311)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1946)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1870)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1752)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1946)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1870)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1752)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
    at oracle.iam.scheduler.vo.JobHistory.getExceptionObject(JobHistory.java:78)
    at oracle.iam.features.scheduler.agentry.operations.LookupActor.prepare(LookupActor.java:1282)
    at oracle.iam.features.scheduler.agentry.operations.LookupActor.refresh(LookupActor.java:3074)
    at oracle.iam.features.scheduler.agentry.operations.LookupActor.receiveEvent(LookupActor.java:2793)
    at oracle.iam.consoles.faces.mvc.canonic.Model.handleIntent(Model.java:975)
    at oracle.iam.consoles.faces.mvc.canonic.Controller.doHandleIntent(Controller.java:533)
    at oracle.iam.consoles.faces.mvc.canonic.Controller.doSelectAction(Controller.java:204)
    at oracle.iam.consoles.faces.event.NavigationListener.processAction(NavigationListener.java:99)
    at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:675)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:889)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:379)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:107)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:179)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    [2012-09-04T08:10:31.907-05:00] [oim_server1] [WARNING] [] [oracle.iam.scheduler.vo] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000JaGajgHDOd8pVg_Aic1GHS_g000003,1:16405] [APP: oim#11.1.2.0.0] IAM-1020021 Unable to execute job : Domino Connector User Reconciliation with Job History Id:28449[[
    java.lang.RuntimeException
    at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$15.createException(CommonObjectHandlers.java:283)
    at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$15.createException(CommonObjectHandlers.java:282)
    at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$ThrowableHandler.deserialize(CommonObjectHandlers.java:115)
    at org.identityconnectors.framework.impl.serializer.binary.BinaryObjectDecoder$InternalDecoder.readObject(BinaryObjectDecoder.java:162)
    at org.identityconnectors.framework.impl.serializer.binary.BinaryObjectDecoder.readObject(BinaryObjectDecoder.java:313)
    at org.identityconnectors.framework.impl.serializer.binary.BinaryObjectDecoder.readObjectField(BinaryObjectDecoder.java:417)
    at org.identityconnectors.framework.impl.serializer.MessageHandlers$5.deserialize(MessageHandlers.java:155)
    at org.identityconnectors.framework.impl.serializer.binary.BinaryObjectDecoder$InternalDecoder.readObject(BinaryObjectDecoder.java:162)
    at org.identityconnectors.framework.impl.serializer.binary.BinaryObjectDecoder.readObject(BinaryObjectDecoder.java:313)
    at org.identityconnectors.framework.impl.api.remote.RemoteFrameworkConnection.readObject(RemoteFrameworkConnection.java:153)
    at org.identityconnectors.framework.impl.api.remote.RemoteOperationInvocationHandler.handleStreamResponse(RemoteOperationInvocationHandler.java:119)
    at org.identityconnectors.framework.impl.api.remote.RemoteOperationInvocationHandler.invoke(RemoteOperationInvocationHandler.java:97)
    at $Proxy1085.search(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.identityconnectors.framework.impl.api.BufferedResultsProxy$BufferedResultsHandler.run(BufferedResultsProxy.java:162)
    [2012-09-04T08:10:31.923-05:00] [oim_server1] [NOTIFICATION] [] [oracle.iam.scheduler.impl.quartz] [tid: OIMQuartzScheduler_Worker-1] [userId: oiminternal] [ecid: 0000JaGajgHDOd8pVg_Aic1GHS_g000003,1:16405] [APP: oim#11.1.2.0.0] Job Listener, Job was executed QuartzJobListener.jobWasExecuted Description null FullName DEFAULT.Domino Connector User Reconciliation Name Domino Connector User Reconciliation
    connector server side error message:
    Sep 04, 2012 8:12:33 AM org.identityconnectors.framework.server.impl.CCLWatchThr
    ead checkCCL
    INFO: Creating thread 'pool-1-thread-3' with a non-null CCL
    Sep 04, 2012 8:12:40 AM org.identityconnectors.framework.server.impl.ConnectionL
    istener processOperationRequest
    SEVERE: null
    java.lang.NullPointerException
    at org.identityconnectors.domino.Query.executeQuery(Query.java:160)
    at org.identityconnectors.domino.DominoConnector.executeQuery(DominoConn
    ector.java:248)
    at org.identityconnectors.domino.DominoConnector.executeQuery(DominoConn
    ector.java:75)
    at org.identityconnectors.framework.impl.api.local.operations.SearchImpl
    .rawSearch(SearchImpl.java:105)
    at org.identityconnectors.framework.impl.api.local.operations.SearchImpl
    .search(SearchImpl.java:82)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.identityconnectors.framework.impl.api.local.operations.ConnectorA
    PIOperationRunnerProxy.invoke(ConnectorAPIOperationRunnerProxy.java:93)
    at $Proxy5.search(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.identityconnectors.framework.impl.api.local.operations.ThreadClas
    sLoaderManagerProxy.invoke(ThreadClassLoaderManagerProxy.java:107)
    at $Proxy5.search(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.identityconnectors.framework.impl.api.DelegatingTimeoutProxy.invo
    ke(DelegatingTimeoutProxy.java:107)
    at $Proxy5.search(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.identityconnectors.framework.impl.api.LoggingProxy.invoke(Logging
    Proxy.java:76)
    at $Proxy5.search(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.identityconnectors.framework.server.impl.ConnectionProcessor.proc
    essOperationRequest(ConnectionProcessor.java:287)
    at org.identityconnectors.framework.server.impl.ConnectionProcessor.proc
    essRequest(ConnectionProcessor.java:191)
    at org.identityconnectors.framework.server.impl.ConnectionProcessor.run(
    ConnectionProcessor.java:121)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.
    java:1110)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
    .java:603)
    at java.lang.Thread.run(Thread.java:722)

    "....java.lang.ClassNotFoundException: ADP ClassLoader failed to load: Script1
    at com.thortech.xl.dataobj.tcADPClassLoader.findClass(tcADPClassLoader.java:229)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)..."
    Did you do any modification on this environment these days? Eg: migration from OIM 9.x? If so, probably you removed certain supporting classes used by the adapter framework of this connector.
    I hope this helps,
    Thiago Leoncio.

  • Error when starting OIM

    Error message appears "Server is not up and running" when logging on to the OIM. anyone has a suggestion!

    Mohammed,
    All next for NT/W2000 machine (with some changes it can be one of the many flavor of UNIX (LINUX included))
    1. Starting the database
    I assume that you have proper access to the DB server. Oracle can also be installed on your NT/W2000 workstation.
    Start the DB server instance and TNS listener services for the DB instance dedicated to OID.
    Connect to SQL*Plus (SQL*Plus can be replaced by SQL Worksheet) as user SYS with "as sysdba option" You might also need to indicate a valid connect string for this DB as defined in TNSNAMES.ORA.
    Issue startup command. You might also indicate the pfile parameter for startup with the location of the corresponding DB parameter file.
    Next two tasks are for starting OID which consists of one service and a database application.
    2. Start the OID Monitor Daemon.
    This described in the Oracle Internet Directory Administrators Guide.
    Execute
    oidmon connect=dbs1 start
    where dbs1 is the name of the DB instant for the DB you started in 1.
    3. Start a Server Instance
    This alse described in the Oracle Internet Directory Administrators Guide.
    Execute
    oidctl connect=dbs1 server=oidldapd instance=1 configset=0 start
    where dbs1 described in 2.
    After successfully performing all this tasks you should be able to run Oracle Directory Manager.

  • Custom error messages OIM11g

    Hi,
    Can anyone let me know how to throw custom error messages while creating users for custom fields / attributes in OIM 11g?
    In 9i, we can attach custom error adapter in Data Object information of Users form. But in 11g, this feature is not available.
    - Kalyan

    I didn't tried this but you can check this link
    Re: How to use custom error message definition in OIM 11g?

  • Custom error message thrown from plugin

    I have written a username generation plugin in OIM11gR2.   It gets called when i try to create a user from the create user page in the identity console.
    The plugin code throws an exception for some business condition.
    For ex:
    @override
    public String getUserName(Map<String, Object> requestData)throws UserNameGenerationException {
    if(<SOME CONDITION>)){
                throw new UserNameGenerationException("Database is Down", "DB_ERROR");
    The alert message is appearing in the UI but it says:
    "Localized message not available. Error returned is: java.util.MissingResourceException: Cant find resource for bundle java.util.PropertyResourceBundle, key DB_ERROR "
    Where do I need to configure the error messages???  is there any specific property file?  Also, is the above way of throwing the exception correct?
    Regards.

    check this:
    How to use custom error message definition in OIM 11g?

  • Error Message while login via iPhone App.

    Hello,
    after login at iPhone App an error message occurs.
    "Server connection not possible: Please verify Server host and Port settings."
    Where I could check it?
    Used login:
    Account -> corporate mail
    Password -> new password from OIM
    Server -> https://oradocs-corp.documents.us2.oraclecloud.com
    Thank you for help!
    Regards
    Daniela

    Hi Daniela,
    You should try again because I've tried the mobile app on iphone and android on the same identity domain and it is working with the following credentials:
    Account: corporate mail
    Pass: permanent password
    Server: https://oradocs-corp.documents.us2.oraclecloud.com/
    Regards,
    Cristiana.

  • Strange error while starting OIM-----

    I am getting an error when i try to start OIM
    i am using OIM 910
    OracleAppserver version 10133
    Oracle RAC database 10204
    Unable to establish connection to "xlXAConnectionPool". Error message: Exception occurred testing connection. Exception: java.sql.SQLException: Connection Cache with this Cache Name is Disabled.
    my data-config.xkml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <data-sources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/data-sources-10_1.xsd" schema-major-version="10" schema-minor-version="1">
    <managed-data-source connection-pool-name="Example Connection Pool" jndi-name="jdbc/OracleDS" name="OracleDS"/>
    <managed-data-source login-timeout="-1" connection-pool-name="xlConnectionPool" jndi-name="jdbc/xlDS" name="xlDS" tx-level="local"/>
    <managed-data-source login-timeout="-1" connection-pool-name="xlXAConnectionPool" jndi-name="jdbc/xlXADS" name="xlXADS"/>
    <connection-pool name="Example Connection Pool">
    <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource" user="scott" password="tiger" url="jdbc:oracle:thin:@//localhost:1521/ORCL" commit-record-table-name=""/>
    </connection-pool>
    <connection-pool name="xlConnectionPool" initial-limit="10" max-connections="50" min-connections="10" num-cached-statements="50" validate-connection="true" validate-connection-statement="select 1 from xsd where 1=2">
    <connection-factory factory-class="oracle.jdbc.driver.OracleDriver" user="admin" password="oim123" url="jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(FAILOVER=on)(ADDRESS_LIST=(ADDRESS = (PROTOCOL=TCP)(HOST=node1)(PORT=1522))(ADDRESS=(PROTOCOL=TCP)(HOST=node2)(PORT=1522)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=abcd)))" commit-record-table-name=""/>
    </connection-pool>
    <connection-pool name="xlXAConnectionPool" initial-limit="30" max-connections="100" min-connections="30" num-cached-statements="100" validate-connection="true" validate-connection-statement="select 1 from xsd where 1=2">
    <connection-factory factory-class="oracle.jdbc.xa.client.OracleXADataSource" user="admin" password="oim123" url="jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(FAILOVER=on)(ADDRESS_LIST=(ADDRESS = (PROTOCOL=TCP)(HOST=node1)(PORT=1522))(ADDRESS=(PROTOCOL=TCP)(HOST=node2)(PORT=1522)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=abcd)))" commit-record-table-name=""/>
    </connection-pool>
    </data-sources>

    I am able to resolve the problem....error due to DNS suffix

  • OID connector install, getting error message

    I am trying to install the OID connector and keep getting the following error message:
    DOBJ.XML_IMPORT_ERROR
    Unable to save dataobject for MIL
    I've done a lot of searching and could not find what MIL means. What does this error message mean and how can I correct it? Please let me know if other information is needed.
    Version:
    OID Connector 9.0.4.12
    OIM: 9.1.0
    Thanks!

    Thanks for the information about MIL.
    I have not made any manual changes to the XML. This was the first connector I have tried to install.
    Before the install, I created some resource objects. Would these be getting in the way? Is there anyway to rollback before I created these resource objects? When trying to delete the resource object, an error message say I need to delete the tables before deleting the resource objects.

  • Windows Vista: Ipod Error Message, no longer read by PCs

    Hello,
    I have a 5th generation black ipod video with 30GB of memory.
    The other day I hooked it up to my laptop (Toshiba, 4 months old) that it's been functioning on with no problems whatsoever. This weird error message flashed twice about it not being able to sync because of some software problem.
    Eversince then, the only thing I can charge my ipod on is the family treadmill in the basement (~_~) as no other computer in the house recognizes it. I can't even charge it through the wall sockets, either.
    I have changed the ipod cord, still no luck. I've also reset the device about 3 or 4 times and uninstalled, restarted the laptop then reinstalled itunes. I would like to reset it back to factory settings but that's impossible as computers/laptops don't pick it up. I live very far from a Mac store...
    What's a girl to do? I can't live without my Busta Rhymes and Wu-Tang Clan!
    Any advice would be greatly appreciated! Thanks!

    you have to update Vista go to this site and up-date http://windowsupdate.microsoft.com

Maybe you are looking for

  • Fatal error during installation - Error 1603 ONLY on XP

    My Dears, while installing any CS3 or CS4 Adobe product for my friend, at ~90% of installation error comes up: "Adobe Photoshop CS4 Error: Error 1603. Fatal error during installation." I am struggling to solve it for 3 days now, and of corse I have s

  • Trouble with Reader

    Having trouble with Adobe Reader 9.5.  Cannot open program; and cannot open a .pdf file.  No error messages, just nothing happens.  Tried to delete software and re-download.  Cannot delete it - message says patch package could not be opened.

  • Photos not appearing on the photo map on iPhone 6

    Hi, I got a new iPhone 6 yesterday. I had until then been using the iPhone 5. When iOS 8 came out I had to delete a lot of photos from the iPhone 5 to get space for the update. I backed up all my photos on my Macbook. Yesterday I synced all of my pho

  • Using iPad when travelling to Europe

    Can I use my iPad in Italy and other places in Europe.  Am only interested in connecting via WiFi? Is there anything special I need to do this?

  • Is there a method in labviewto dynamically save and change the monitor resolution under program control?

    Is there a method in labview to dynamically save and change the monitor resolution under program control? I have another application that runs on another monitor. I would like to change the monitor resoultion to 640x480 on program startup, and then r