ICF Connector issue

I am trying to create new connector for testing OIM connector. I have developed a sample application and deployed on Connector Server. Please can you let me know where I am doing wrong. Am I passing the wrong key to the program.
Steps followed to start the server:
Deployed the jar in the bundles folder
ConnectorServer.bat /setkey password
ConnectorServer.bat /run
Steps followed to test the connection:
ConnectorInfoManagerFactory cInfoManagerFactory = ConnectorInfoManagerFactory.getInstance();
  String connectorHost = "192.168.1.7";
  int connectorServerPort = 8759;
  GuardedString key = new GuardedString("password".toCharArray());
  RemoteFrameworkConnectionInfo remoteConnInfo =
  new RemoteFrameworkConnectionInfo(connectorHost, connectorServerPort,key);
  ConnectorInfoManager connInfo = cInfoManagerFactory.getRemoteManager(remoteConnInfo);
Exception:
Exception in thread "main" org.identityconnectors.framework.common.exceptions.InvalidCredentialException: Remote framework key is invalid
  at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$9.createException(CommonObjectHandlers.java:227)
  at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$9.createException(CommonObjectHandlers.java:226)

I am trying to create new connector for testing OIM connector. I have developed a sample application and deployed on Connector Server. Please can you let me know where I am doing wrong. Am I passing the wrong key to the program.
Steps followed to start the server:
Deployed the jar in the bundles folder
ConnectorServer.bat /setkey password
ConnectorServer.bat /run
Steps followed to test the connection:
ConnectorInfoManagerFactory cInfoManagerFactory = ConnectorInfoManagerFactory.getInstance();
  String connectorHost = "192.168.1.7";
  int connectorServerPort = 8759;
  GuardedString key = new GuardedString("password".toCharArray());
  RemoteFrameworkConnectionInfo remoteConnInfo =
  new RemoteFrameworkConnectionInfo(connectorHost, connectorServerPort,key);
  ConnectorInfoManager connInfo = cInfoManagerFactory.getRemoteManager(remoteConnInfo);
Exception:
Exception in thread "main" org.identityconnectors.framework.common.exceptions.InvalidCredentialException: Remote framework key is invalid
  at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$9.createException(CommonObjectHandlers.java:227)
  at org.identityconnectors.framework.impl.serializer.CommonObjectHandlers$9.createException(CommonObjectHandlers.java:226)

Similar Messages

  • Enable icfcommon logging for ICF Connector ??

    I have a custom icf-connector and some of the logs are not showing up. In my code I used ODJ loggers and those work fine, but the out of the box icfcommon loggers are not working.
    Someone has used the same custom connector and was able to get the icfcommon logs to work. When I checked that environment, I did not see any icfcommon log handers defined in the logging.xml.
    Here are some icfcommon logs I see in the oim_server1.out for that environment:
    Thread Id: 108
    Time: 2013-07-11 14:53:17.057
    Class: oracle.iam.connectors.icfcommon.service.oim9.OIM9Configuration
    Method: getLookupMap
    Level: OK
    Message: Enter: Lookup.DatabaseTable.UM.ReconAttrMap
    Thread Id: 108
    Time: 2013-07-11 14:53:17.066
    Class: oracle.iam.connectors.icfcommon.service.oim9.OIM9Configuration
    Method: getLookupMap
    Level: OK
    Message: Return
    Thread Id: 108
    Time: 2013-07-11 14:53:17.095
    Class: oracle.iam.connectors.icfcommon.recon.SearchReconTask
    Method: handle
    Level: INFO
    Message: Object with UID [534] ignored, contains no changes
    Thread Id: 108
    Time: 2013-07-11 14:53:17.096
    Class: oracle.iam.connectors.icfcommon.recon.SearchReconTask
    Method: handle
    Level: OK
    Message: Handling object with UID [535]
    Are there any configuration I need to make in order for me to see the icfcommon logs in my environment??

    I had a similar issue. In a clean OIM environment with no patches, I was getting logs. After patching OIM to Bundle Patch 3, the logs does not appear.
    It probably a bug.

  • Target Recon using the ICF connector

    Hi all
    I am trying to reconcile the accounts from target but i m doing this in ICF connector
    I gave It Resource as type It Resource
    and not construct a Connector object with IT resource value on SPI side
    But i did nt get eh It Resource value in API side
    I am getting all the information except IT resource key
    As per my understanding , there is no need to pass It Resource key on SPI side
    ICF API will construct the key as per the recon parameter info
    Any help highly appreciated
    Regards
    Nagaraj

    thanks Rajiv for your reply
    I added like what u said in the Recon Profile and mapped that to the It Resource field in the process Form
    I got the Each and every field in the Recon Profile
    But it is not trigerring the Recon Event
    I don't what am i missing...
    Help me out on this issue
    I am not getting any exception in logs

  • Ipod doesn't work on speakers but headphones are fine and speaker works with iPhone. Possible connector issue? Any thoughts on how I can get the fixed?

    ipod doesn't work on speakers but headphones are fine and speaker works with iPhone. Possible connector issue? Any thoughts on how I can get the fixed?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • Custom ICF Connector; Upd ChildTableValues (delete) not sending group name

    I'm building a custom ICF connector implemented as a .Net bundle. The UpdateChildTableValues operations for add and update on groups pass the group name into the code but the delete does not. There doesn't seem to be any indication of the operation itself for groups so it seems the developer must handle target group memberships in the code, which is fine. However, if a delete doesn't send the group name, how do I know what group to even look for? It seems this also adds the burden of API calls against OIM to identify the user's group assignments as well as a target search to compare and decide what was removed.
    OIM 11gR1 on RHEL 6.4 (64-bit)
    11.1.2 Connector Server on Win2K8R2 (64-bit)
    .Net 4 target build/C# 4.0

    You have 2 options when working with child tables:
    1) use ICProvisioningManager#updateChildTableValues -- this provides the list of values after the update, so let's say the attribute has values group1, group2, group3, you remove group1 then the UpdateOp#update with attribute values group2, group3 will be called on your connector (so in this case your connector needs to implement UpdateOp). You are right, it might mean additional target API call in your connector (depending on target).
    2) use ICProvisioningManager#addChildTableValue, ICProvisioningManager#updateChildTableValue, ICProvisioningManager#removeChildTableValue -- when you use these methods, the connector will get the changes only. In the previous example UpdateAttributeValuesOp#removeAttributeValues with value group1 would be called on your connector. You connector needs to implement UpdateAttributeValuesOp to make this work.
    Tomas

  • Custom ICF Connector for Salesforce

    Gurus,
    I am new to the concept of ICF connector.
    I got a new requirement to develop a custom ICF connector for salesforce.
    Are there any samples for salesforce to which u can direct me? A lot is there in google for flatfile which I don't understand how to use it for salesforce. I am looking for salesforce as I am not sure how to implement for it.
    Please help.

    I believe Salesforce exposes Create User/Update User etc Webservices. Just get it confirmed first and try to use OOTB Webservice connector to integrate with Salesforce.
    ~J

  • ICF Connector Error: ObjectSerializer ClassNotFoundException

    I installed an ICF based connecor DBUM-11.1.1.6.0, which worked perfectly fine.
    Then i built up my custom connector with ICF Framework for flat file, which was not allowing me to compile the adpater due to long type parameters in the adapter parameters. Later i came to know that long variable was not getting listed as it was a bug in OIM and it got resolved after applying the patch BP02.
    but i am facing another problem after applying BP02 patch (p14760806_111200_Generic) on OIM.
    I am able to compile the adapter and configure the connector after applying the patch mentioned above, but facing the below error when provisioning the account:
    java.lang.ClassNotFoundException: org.identityconnectors.framework.impl.serializer.ObjectSerializer
    The same exception is now appearing when i am provisioning the account with DBUM-11.1.1.6.0 connector in the database as well as in my custom ICF Adapter.
    I checked that the following jars are in the class path:
    icf-oim-intg.jar
    connector-framework-internal.jar
    connector-framework.jar
    Also checked the contents of connector-framework-internal.jar, which has the package org.identityconnectors.framework.impl.serializer but the class org.identityconnectors.framework.impl.serializer.ObjectSerializer is not present in the package.
    As the connector was working prior to my patch upgrade, and not working now.
    Any help on the above is appreciated.

    Hi Experts,
    Tried all APIs mentioned, but the problem persists with the same error.
    To give a brief about our configuration.our process form has 13 attributes and in the lookup-provattribute map we have set __UID__ to userlogin of our process form.So when we try to update a filed for eample firstname the adapter is getting triggered but we are getting the error as mentioned in the post.
    We are using the public java.lang.String oracle.iam.connectors.icfcommon.prov.ICProvisioningManager.updateAttributeValue(java.lang.String,java.lang.String) method in our update adapter.
    So just wanted to understand that do we have to set __NAME__ attribute also in the lookup and map it to some process form label?
    Did anyone tried doing similar thing and has solved the issue similar to what we are experiencing? Your valuable inputs are highly appreciated.
    Thanks
    Edited by: 962322 on Nov 21, 2012 3:08 AM

  • Oracle connector issues

    Hi Experts,
    We have 40 to 50 connectors including SQL server, Oracle,Pco,OLAP etc in SAP MII system.
    SAP MII version 12.2 SP6.
    We got the Java Heap space on the SAP MII server and due to lack of disk space the server process is shutdown.
    #2.0#2015 04 14 09:30:16:473#0-400#Fatal#com.sap.engine.frame.ProcessEnvironment#
    com.sap.ASJ.krn_frm.000041#BC-JAS-COR#kernel.sda#C0000A0E68F54AF20000000100000D58#307331950000768373##com.sap.engine.frame.ProcessEnvironment#Guest#0##7F961CADD61211E4A26400001251836F#7f961cadd61211e4a26400001251836f#7f961cadd61211e4a26400001251836f#0#Thread[Managed_Application_Thread_37,5,Managed_Application_Thread]#Plain##
      Server process shutting down with exit code [666]; memory allocation error [OutOfMemoryError]# 
    #2.0#2015 04 14 09:30:16:473#0-400#Fatal#com.sap.engine.frame.ProcessEnvironment#
    com.sap.ASJ.krn_frm.000041#BC-JAS-COR#kernel.sda#C0000A0E68F54AF20000000200000D58#307331950000768373##com.sap.engine.frame.ProcessEnvironment#Guest#0##7F961CADD61211E4A26400001251836F#7f961cadd61211e4a26400001251836f#7f961cadd61211e4a26400001251836f#0#Thread[Managed_Application_Thread_37,5,Managed_Application_Thread]#Plain##
    Server process shutting down with exit code [666] memory allocation error [OutOfMemoryError]
    [EXCEPTION]
    java.lang.OutOfMemoryError: Java heap space (failed to allocate 56 bytes)
    After clearing the dump and make available disk space all the connectors like SQL server, OLAP,PCo etc working fine. But Oracle connectors are unstable.I can say oracle connectors keep loosing connections. The following errors were seen in logs. After I restart the server , the oracle connector starts working fine.
    Unable to create connection to database for GDW
    [EXCEPTION]
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
    at com.sap.lhcommon.system.CustomClassLoader.findClass(CustomClassLoader.java:232)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:367)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:308)
    at com.sap.xmii.Illuminator.tools.database.JDBCDriverManager.getClassInstance(JDBCDriverManager.java:104)
    at com.sap.xmii.Illuminator.tools.database.ConnectionPool.<init>(ConnectionPool.java:62)
    at com.sap.xmii.Illuminator.tools.database.ConnectionHolder.addDBConnectionPool(ConnectionHolder.java:121)
    at com.sap.xmii.Illuminator.server.Server.createHolder(Server.java:277)
    at com.sap.xmii.Illuminator.server.Server.start(Server.java:134)
    at com.sap.xmii.Illuminator.server.ServerManager$ServerInitializer.run(ServerManager.java:451)
    at com.sap.xmii.Illuminator.server.ServerManager.startServer(ServerManager.java:414)
    at com.sap.xmii.Illuminator.server.ServerManager.reload(ServerManager.java:370)
    at com.sap.xmii.ejb.ServiceHandlerBean.doServerFunction(ServiceHandlerBean.java:222)
    at com.sap.xmii.ejb.ServiceHandlerBean.onMessage(ServiceHandlerBean.java:75)
    at sun.reflect.GeneratedMethodAccessor276.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:47)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:50)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_MessageListenerType.invoke(Interceptors_MessageListenerType.java:111)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:191)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:23)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:25)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:17)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Lock.invoke(Interceptors_Lock.java:21)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:179)
    at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:138)
    at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
    at com.sap.engine.services.ejb3.runtime.impl.MDBProxyInvocationHandler.invoke(MDBProxyInvocationHandler.java:78)
    at $Proxy435.onMessage(Unknown Source)
    at com.sap.jms.client.session.JMSSession.deliverMessage(JMSSession.java:1046)
    at com.sap.jms.client.session.JMSSession.run(JMSSession.java:894)
    at com.sap.jms.resourceadapter.RaServerSession.run(RaServerSession.java:139)
    at com.sap.engine.services.connector.jca15.work.TaskImpl.run(TaskImpl.java:410)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    Error occurred while creating a database connection
    [EXCEPTION]
    com.sap.xmii.Illuminator.system.CommunicationException: Error occurred while creating a database connection
    at com.sap.xmii.Illuminator.connectors.IDBC.IDBC.doProcessRequest(IDBC.java:81)
    at com.sap.xmii.Illuminator.connectors.AbstractConnector.processRequest(AbstractConnector.java:83)
    at com.sap.xmii.Illuminator.server.QueryEngine.run(QueryEngine.java:49)
    at com.sap.xmii.Illuminator.services.handlers.IlluminatorService.processRequest(IlluminatorService.java:82)
    at com.sap.xmii.Illuminator.services.ServiceManager.run(ServiceManager.java:69)
    at com.sap.xmii.servlet.Illuminator.service(Illuminator.java:68)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:202)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:103)
    at com.sap.xmii.system.SecurityFilter.doFilter(SecurityFilter.java:186)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.xsrf.filter.XSRFProtectorFilter.doFilter(XSRFProtectorFilter.java:62)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:79)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:441)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:210)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:441)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:430)
    at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:81)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:278)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.SessionSizeFilter.process(SessionSizeFilter.java:26)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:57)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:43)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:475)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:269)
    at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    I am not sure of OJDBC jar file version .we have either OJDBC5 or OJDBC6 jar deployed in SAP MII.
    The oracle database version that we are connecting in the data server is Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit
    My questions  are
    After the server process shutdown and recovered , While  all other connectors  working fine why oracle connectors have problems?
    Is it due to oracle driver issue? or any other issue related to Netweaver.
    Please help.

    for item #1...If you add the line "gal_enableldapsearch = FALSE" to the "[ENG]" section of the calendar server configuration file, it will only put calendar users in the GAL and not all Internet Directory users.
    --Bill                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • OID 11.1.1.5.0 Connector Issue With Logging in OIM 11.1.1.5.0

    I am using OpenLDAP as my target system for the OID connector. I am following the OID 11.1.1.5.0 documentation section "2.1.6.1 Enabling Logging on Oracle Identity Manager". I placed the first part inside the <log_handers> tag and the second part inside the <loggers> tag.
    <log_handler name='OIMCP.LDAP' level='TRACE:32'
    class='oracle.core.ojdl.logging.ODLHandlerFactory'>
    <property name='logreader:' value='off'/>
    <property name='path'
    value='${domain.home}/servers/${weblogic.Name}/logs/oid_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="ORG.IDENTITYCONNECTORS.LDAP" level="TRACE:32"
    useParentHandlers="false">
    <handler name="OIMCP.LDAP"/>
    <handler name="console-handler"/>
    </logger>
    The "oid_connector.log" was created for me, but no logs are being printed out whenever I do anything related with LDAP in the OIM console.
    Any insights on how to fix this issue?

    Any updates i am facing same problem.
    thanks in advance

  • Win 8.1 Connector issue

    Hello folks,
    I have been having this annoying issue trying to Join my windows 8.1 desktop pc to my company domain, whenever I run through the connector software (Windows server 2012 essentials) it fails with "an unexpected error has occured" just after you
    put in the domain credentials.
    I've removed all connector updates and software installed on the pc and tried fresh...still no joy.
    Any advice would be greatly appreciated!
    Thanks,
    Jordan

    Hi,
    Please ensure you uninstall those connector software completely and unjoin you computer client from the network. Meanwhile, please make sure the client computer
    is not joined to any other server networks. Then check if you can join in your company domain.
    Based on your current description, please refer to the following path on the client computer: %programdata% /Microsoft /Windows
    Server /Logs and find the ClientDeploy.log to narrow down your issue.
    By the way, would you please provide a screenshot for the error message (you describe it "an unexpected error has occurred")?
    Hope this helps.
    Best regards,
    Justin Gu

  • DBUM Connector Issue in OIM11g

    Hi all. I'm having a very strange issue. Let me explain my scenario. I have installed correctly the DBUM Connector 9.1.0 in OIM11g. When I start a direct provisioning for an user, it all works perfectly: the user gets correctly created automatically on Oracle DB by the connector. Now I'm trying to enable a Human User to edit the provisioning form before the connector starts for the provisioning in the following way:
    - User X starts direct provisioning for Oracle DB resource object
    - User Y is assigned the provisiong task "Edit Provisioning Form" (which precedes "Create User" - standard task created by DBUM connector installation)
    - User Y edits the provisioning form (previously compiled from User X)
    - Connector starts for the provisioning with the provisioning form modified by User Y
    All actors involved in this process have all privileges on resources and forms for Oracle DB resource object.
    Although this, when connector starts it reply with the "ERROR" response code. Analyzing the log, I've been able to see this exceptions:
    oracle.iam.connectors.common.vo.ITResource
    and all the related exceptions. By the way, User X chooses correctly the IT Resource for Oracle DB resource, and User Y does not modify X's choice.
    Could anyone help me to find out the solution to this problem?
    I've tried the same solution with SSH Connector, in OIM11g, and it works fine. I'm having this issue only with DBUM Connector for Oracle DB.
    Thanks in advance for the help,
    Giuseppe.

    I kind of remember ..i had a similar issue , Can you try giving permission to the involved actors on DBUM IT Resource.
    Thanks
    Suren

  • PoP Port Connector Issues

    I seem to have a dodgie pop-port on my phone or dodgie cables?
    I wiggle the pc cable and that causes it to disconnect from the pc and phone yet its still in the socket and the headset sometimes if i wiggle it, the sound cuts out..
    Can I take this to a Nokia shop to get it fixed under warranty or do I have to RMA it back to Expansys?
    Regards,
    Andy
    Owned: Nokia 3510i, Nokia 3120, Nokia 6230i, Nokia 6233, Nokia N73, Nokia N82.
    Current: Nokia N900!

    26-Aug-2007 07:25 PM
    tehrules wrote:
    I seem to have a dodgie pop-port on my phone or dodgie cables?
    I wiggle the pc cable and that causes it to disconnect from the pc and phone yet its still in the socket and the headset sometimes if i wiggle it, the sound cuts out..
    Yes, Nokia's pop-port wasn't their best invention. I had similar problems with my 6280 and I've heard countless other people with similar issues.
    What I used to do always was to blow on the handset's connector in order to dislodge any dust particles, and then wipe the contacts on the headphone or USB cable with a soft cloth in order to get rid of dust/grease/etc. Then annd only then did I get a relatively stable connection.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Outlook connector issues 2007

    Hi there is a previous post with the same issue i am having. The response that melon chan gave i have tried all of this and still no luck. It will not sign me at all keeps telling me "could not authenticate my windows live ID" I also get the same
    error issue when i look up the detailed report. No emails are sending or receiving into those accounts. I really need help as my business  has come to a hault... Can someone please give me any other ideas... It has only played up since i turned on automatic
    microsoft updates. can i uninstall outlook and reinstall it or is this a complete system restore to do it.
    Thanks Kylie
    My outlook connector has been having issues since yesterday.
    Outlook 2007 - connector ver 14.0.6123.5001
    I can get in to my online email but Outlook 2007 will not connect.
    Here's what Outlook says in the detailed description;
    Outlook Hotmail Connector Version 14.0.6123.5001
    Account:********
    Sign in failed at 27/12/2014 9:04:29 PM                                                                               
    The network connection was interrupted. Make sure your network cable is  attached properly to your computer. If you still cannot connect, try again later.

    Hi,
    As Diane suggested, you can restore to a point to verify whether it's caused by an update. But before this, please let me know your current Office and Outlook build number so that I can take further action if you can confirm it's an update problem.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • AD connector issue 9.1.1.4

    I installed Ad connector 9.1.1.4.
    No issues were reported during installation.
    ADITResource was configured according to documentation.
    If I go Resource Management-> Manage and search Resource Name by AD* the following objects appear:
    AD Organization Unit
    AD User Trusted
    AD User
    AD Group
    Clicking on any of the links will produce the system error. "A system error was encountered. Contact Oracle Identity Manager System Administrator"
    Also, Diagnostic Dashboard gives 500 error on Test Basic Connectivity test
    Current platform:
    OIM 9.1.0.1+BP09
    OIM 10.1.3.3
    Oracle Database 11.1.0.7 Patch 20
    Windows 2003 SP2
    I would appreciate any help

    Dear All,
    Thank you very much for your feedback.
    Here is the exception:
    Class/Method: SearchResourceAction/displayDetailPage encounter some problems: {1}
    Thor.API.Exceptions.tcColumnNotFoundException
    at Thor.Api.tcColumnNotFoundException
    My main concern is DB compatibility. Is 11.1.0.7 patch 29 should work?
    I appreciate your help

  • Create Object Function with Custom ICF Connector

    Hi,
    I am developing an ICF Custom Connector. When provisioned a user, the user is created on the target succesfully but the process remains on the "Provisioning" status. When i control the log file, i see the following error:
    [oim_server1] [ERROR] [] [ORACLE.IAM.CONNECTORS.ICFCOMMON.PROV.ICPROVISIONINGMANAGER] [tid: [ACTIVE].ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: c4b0db765c688017:-2d2de9cf:13c04b25533:-8000-0000000000002b20,0] [APP: oim#11.1.2.0.0] oracle.iam.connectors.icfcommon.prov.ICProvisioningManager : createObject : Error while creating user[[
    java.lang.IllegalArgumentException: null field label doesn't exist
         at oracle.iam.connectors.icfcommon.service.oim9.OIM9Provisioning.getFieldName(OIM9Provisioning.java:174)
         at oracle.iam.connectors.icfcommon.service.oim9.OIM9Provisioning.setFormField(OIM9Provisioning.java:63)
         at oracle.iam.connectors.icfcommon.service.oim11.OIM11Provisioning.setFormField(OIM11Provisioning.java:299)
         at oracle.iam.connectors.icfcommon.prov.ICProvisioningManager.createObject(ICProvisioningManager.java:277)
         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.thortech.xl.adapterGlue.ScheduleItemEvents.adpICFCREATEOBJECT.CREATEOBJECT(adpICFCREATEOBJECT.java:109)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpICFCREATEOBJECT.implementation(adpICFCREATEOBJECT.java:54)
         at com.thortech.xl.client.events.tcBaseEvent.run(tcBaseEvent.java:196)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(tcDataObj.java:2492)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(tcScheduleItem.java:3181)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(tcScheduleItem.java:753)
         at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:604)
    Thanks
    Fyigit

    null field label doesn't exist you have to create return field in process form and map this field to provisioning lookup. In this lookup CodeKey should be your process form field and Decode should be __UID__
    Test the provisioning again...

Maybe you are looking for