Reallocation of IOM account using API

Hi all

I have a usecase to reallocate/re-associate an account of an instance of the application to another user.

For example. ABCD is a disconnected application. User1 has the Acc1 account. Using the API - I want to take this same account and bind with User2.

I tried account.setUserKey (new_usr_key) api. It runs successfully (without exception). but the account is still linked to User1.

Can someone help me with this?

Any help is appreciated.

Thank you!

Here's a solution I've posted in the past: Re: OIM 11 g R2 - transfer a user to another user accounts

-Kevin

Tags: Fusion Middleware

Similar Questions

  • An exception occurred while creating a user in the IOM by using APIs

    Get the UserManager service
    UserManager usrService = oimClient.getService (UserManager.class);
    for (; i < = n; i ++)
    {

    userAttribute.put("act_key","1");
    userAttribute.put ("User ID", username + i);
    userAttribute.put ("FirstName", firstname + i);
    userAttribute.put ("Name", lastname + i);
    userAttribute.put ("Password", password);
    userAttribute.put ("Role", "Full Time");
    userAttribute.put (Type "Xellerate", "End user");
    User user = new User (null, userAttribute);
    Result = usrService.create (user) UserManagerResult;
    }

    trying to create the user returns this:

    Exception in thread "main" java.lang.ClassCastException: java.lang.String
    at oracle.iam.identity.usermgmt.impl.UserManagerImpl.create(UserManagerImpl.java:403)
    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)
    to $Proxy324.createx (Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.createx(UserManager_nimav7_UserManagerRemoteImpl.java:1005)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl_WLSkel.invoke (unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:590)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    to weblogic.rmi.internal.BasicServerRef$ 1.run(BasicServerRef.java:478)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:119)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Process has finished with exit code 1.

    Your ACT_KEY must be a value of type long.

    -Kevin

  • Grant a role to a user using API in GR 11, 1 IOM material

    Friends,

    Could you please provide me with some snippet of code to configure a role to a user using API in IOM - R1?

    Thank you
    Vetri

    Try this code.

    public void GrantRole (String userLogin, String roleName) {}
    Try
    {
    Take string = getUserKey (userLogin);
    String roleKey = getRoleKey (roleName);

    RoleManager roleMgr = oimClient.getService (RoleManager.class);
    UserKeys value = new HashSet();
    userKeys.add (take);
    Result = roleMgr.grantRole (roleKey, userKeys) RoleManagerResult;
    System.out.println("Status:"+result.getStatus());)
    }
    catch (Exception e) {}
    e.printStackTrace ();
    }
    }

    public String getRoleKey (String roleName)
    {
    String roleKey = null;
    Try
    {
    RoleManager roleMgr = oimClient.getService (RoleManager.class);
    The list of roles = null;
    Criteria of SearchCriteria = null;

    criteria = new SearchCriteria (RoleManagerConstants.ROLE_NAME, roleName, SearchCriteria.Operator.EQUAL);

    roles = roleMgr.search (null, null, criteria,);
    roleKey = (String) roles.get (0) .getAttribute (RoleManagerConstants.ROLE_KEY);
    }
    catch (Exception e) {}
    e.printStackTrace ();
    }
    Return roleKey;
    }

    public String getUserKey (String userName) throws Exception
    {
    UserManager usrService = oimClient.getService (UserManager.class);
    User user = usrService.getDetails ("User Login", username, null);
    String = take user .getAttribute ("usr_key") m:System.NET.SocketAddress.ToString ();
    Return take;
    }

  • Problem with the bulk loading IOM account to AD

    Hi all

    I'm doing a loading block account for AD in IOM. I followed all the steps in the oracle documentation.

    I entered the user in the format of CSV file data. Data in the example are given below:

    Primary data in the Table:
    UD_ADUSER_UID, UD_ADUSER_FNAME, UD_ADUSER_LNAME, UD_ADUSER_ORGNAME, UD_ADUSER_BNUMBER, UD_ADUSER_OBJECTGUID
    TWoods, Tiger, Woods, "' 22 ~ CN = Users, DC = gkidmsolutions, DC = com", B000004, 104 "
    TCruise, Tom, Cruise, "" 22 ~ CN = Users, DC = gkidmsolutions, DC = com ", B000005, 105"
    WSmith, Will, Smith, "' 22 ~ CN = Users, DC = gkidmsolutions, DC = com", B000006, d149e9add00198469b1ebef579911024 "

    Data in the Child Table:
    UD_ADUSER_UID, UD_ADUSRC_GROUPNAME
    TWoods, ' 22 ~ CN = users, CN = Users, DC = gkidmsolutions, DC = com ".
    TCruise, ' 22 ~ CN = users, CN = Users, DC = gkidmsolutions, DC = com ".
    WSmith, ' 22 ~ CN = users, CN = Users, DC = gkidmsolutions, DC = com ".

    All of these users are already available in both IOM and AD. I am trying to establish links between these users through loading bulk. I am able to load bulk account using the IOM bulk load utility. After loading bulk accounts, when I go to the tab the user resources, I see a user resource AD for the respective users with the status 'Configured'.

    However, the problem is when I try to update any user information through the process of the object resource AD shape, this not updated for AD. An exception mentioned below can be seen in newspapers. Looks like the loading block creates a map that can be seen from front end, but in fact, he is not pointing the user to the AD. Am I missing something? Help me!

    *********************************************************************************************************************************************
    "Current execution LOCKUNLOCKADADAMUSER
    Target class = com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > <>=
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks: unlockADUser: the user could not unlocked >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < =.
    >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < = start the Stack Trace = >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks: unlockADUser >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < String index out of range:-1 >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < Description: String index out of range:-1 >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < java.lang.StringIndexOutOfBoundsException: String index out of range:-1
    at java.lang.String.substring(String.java:1931)
    at java.lang.String.substring(String.java:1904)
    at com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks.unlockADUser (unknown Source)
    at com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks.lockADorADAMUser (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)
    to com.thortech.xl.adapterGlue.ScheduleItemEvents.adpADCSLOCK_UNLOCKUSER. LOCKUNLOCKADADAMUSER (adpADCSLOCK_UNLOCKUSER. Java:163)
    at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpADCSLOCK_UNLOCKUSER.implementation(adpADCSLOCK_UNLOCKUSER.java:61)
    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:2919)
    at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(tcScheduleItem.java:553)
    at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:604)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
    at com.thortech.xl.dataobj.tcOrderItemInfo.eventPostUpdate(tcOrderItemInfo.java:374)
    at com.thortech.xl.dataobj.tcDataObj.update(tcDataObj.java:664)
    at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:508)
    at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2906)
    at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.setProcessFormData(tcFormInstanceOperationsBean.java:710)
    at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.setProcessFormData(tcFormInstanceOperationsBean.java:426)
    at Thor.API.Operations.tcFormInstanceOperationsIntfEJB.setProcessFormDatax (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)
    to $Proxy341.setProcessFormDatax (Unknown Source)
    at Thor.API.Operations.tcFormInstanceOperationsIntfEJB_h6wb8n_tcFormInstanceOperationsIntfRemoteImpl.__WL_invoke (unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at Thor.API.Operations.tcFormInstanceOperationsIntfEJB_h6wb8n_tcFormInstanceOperationsIntfRemoteImpl.setProcessFormDatax (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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    to $Proxy178.setProcessFormDatax (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)
    to $Proxy337.setProcessFormDatax (Unknown Source)
    at Thor.API.Operations.tcFormInstanceOperationsIntfDelegate.setProcessFormData (unknown Source)
    at com.thortech.xl.webclient.actions.UserDefinedFormAction.editForm(UserDefinedFormAction.java:2033)
    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.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:269)
    at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(tcLookupDispatchAction.java:133)
    at com.thortech.xl.webclient.actions.tcActionBase.execute(tcActionBase.java:894)
    at com.thortech.xl.webclient.actions.tcAction.execute(tcAction.java:213)
    at org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    at org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    at org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    at org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
    at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    at org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1914)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:463)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    to 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 com.thortech.xl.webclient.security.CSRFFilter.doFilter(CSRFFilter.java:78)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:122)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:108)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    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)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3715)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3681)
    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:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    < 5 April 2012 5:18:54 CEST > < error > < OIMCP. A/d converters > < BEA-000000 > < = end of stack memory trace = >
    EXECUTEREMOTESCRIPT running
    Target class = com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks
    "# SessionContainer:valueUnbound: expired Session of the name of the event is: Xellerate.Session.

    Looks like a problem with the value of the UD_ADUSER_LOCKED field. Change to retry and value non-zero.

  • [OIM 11 g] How can I send a pwd has changed in the ad to the user of the IOM account?

    Hi gurus,

    I work in a CEP. I have AD and AD Pwd Sync connectors and connector DBAT installed.

    IHAC who expected to see the following behavior on the management of the users password:

    (1) when the user change password on behalf of IOM, this password must be propagated to all targets (AD and DB table).
    Ok... I had the behavior.

    (2) when the user change the AD account password, this password must be propagated to the user IOM account (therefore this password will be propagated to all the goal)...
    How can I do to achieve this?
    With AD password synchronization, I can just sync the password between the target and resource password form.

    Note: AD is not the Source of confidence. The announcement should only be trusted for the password source.

    I would appreciated any help.

    Best regards.

    Edited by: user12295533 09/01/2011 07:05

    It seems that the connector has changed since the last I used it about 4 years ago. You will need to create additional tasks and the logic to handle this. When password on the form AD process changes, you will have to also compare the password definition as well. And if they are different, then you will want to reset the password on the user form. When runs in your task to change the user password, it returns the same password to the form of the user of the AD, which then will not do anything because there will be a real change on the ground, which means that the update of password does not work. And then you also have your task to change the password on your other resources that will send the new password.

    -Kevin

  • Create an event of reconciliation delayed using API

    Hello

    The future was created in the test of IOM recon using the API?

    You must just supplement the later date:

    >
    long createReconciliationEvent (java.util.Map poData, pbFinishEvent boolean, psObjectName java.lang.String, java.sql.Date futureDate) throws Thor.API.Exceptions.tcAPIException, Thor.API.Exceptions.tcObjectNotFoundException, tcAPIException

    Creates a future event to day of atonement for the object specified in the future.
    >

    -Kevin

  • I don't understand why I can't login my account using mozilla but with googlechrome fb, I am able to do... Mozilla can load the fb site but cannot access my fb account... I'm uncomfortable with the use of mozilla as my browser... pls help thanks

    I don't understand why I can't login my account using mozilla but with googlechrome fb, I am able to do... Mozilla can load the fb site but cannot access my fb account... I'm uncomfortable with the use of mozilla as my browser... pls help thanks

    • "Clear the Cache": Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.
    • 'Delete Cookies' of sites that cause problems: Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > themes).

    • Makes no changes on the start safe mode window.

    See:

  • My gmail and Icloud accounts disappear from the list under "Mailbox store" in the mail. When I try to recreate my gmail account using the "new mailbox...» "I get the message"this account already exists. " What can I do to recover my mailboxes.

    I use YOSEMITE 10.10.5.

    My gmail and Icloud mailboxes (and several smart mailboxes) disappear from the list under "Mailbox store" in the mail. When I try to recreate my gmail account using the "new mailbox...» "(using the sign on the side down and to the left of the screen in Mail +) I get the message"this mailbox already exists. ». What can I do to recover my mailbox?

    Restart the Mac and Mail.

  • A second iTunes for the same account using the phone?

    Say a password is forgotten and you do not have the password for the other music on the phone, can you buy extra pieces with a second iTunes account using the same iTunes library and transfer all the music on the iPhone?   This less recent purchased music (from the old account forgotten password) no longer works on the phone once you purchase music with the second account?   Reset I know can be done with http://iforgot.apple.com/ unfortunately it takes 24 hours to get some discount lists to zero because for some reason, I can not receive their e-mail.  And no it's not end up in my spam folder.

    Howdy has brody,

    Thank you for using communities Support from Apple.

    If you do not receive the password reset email to reset the password of your Apple ID, then I suggest that you follow the information below.

    If you don't receive your check or reset email

    I recommend going through this path, because if you download music with another Apple on your Mac ID, it will be locked for this Apple ID for 90 days.

    View and delete devices in iTunes

    Take care.

  • Whenever I connect to my hotmail account using Windows Live, I get a warning, "there is a problem with this Web site's secure certificate. »

    original title: security

    Whenever I connect to my hotmail account using Windows Live, I get a warning, "there is a problem with this Web site's secure certificate. »

    Security certificate problems may indicate an attempt to fool you or intercept any data you send to the server.
      We recommend that you close this webpage and do not make this Web site.
      Click here to close this webpage.
      Continue to this website (not recommended).
     
    More information
    • If you arrived at this page by clicking a link, check the Internet address in the address bar to be sure this is the address you've been waiting for.
    • When you go to a Web site with an address as https://example.com, try to add the "www" in the address, https://www.example.com.
    • If you choose to ignore this error and continue, don't get personal information on the Web site.

      For more information, see "Certificate errors" in Internet Explorer Help.

    Some things you can try:

    You can have old certificates root on your computer.  Try to update your root certificates from the link provided in the paragraph "Root Update Package (intended for Windows XP only)" in the following article:

    "Members of the certificate program root Windows.
      <>http://support.Microsoft.com/kb/931125 >

    Depending on which version of Internet Explorer and Service Pack level of your machine, one of the following articles might help you:

    ' "There is a problem with the security certificate from the website" when you try to visit a secure in Internet Explorer Web site.
      <>0 http://support.Microsoft.com/kb/93185>

    "Certificate error Web page is displayed when you try to visit an SSL Web using Internet Explorer 7:"There is a problem with the security certificate from the Web site""
      <>http://support.Microsoft.com/kb/950067 >

    It is also possible that indeed, you will be redirected to a false site.  Check your file C:\Windows\System32\drivers\etc\hosts ensure that there is not a bogus entry for your hotmail login.  Generally, the only line that is required in this file does not begin with a character ' # ' is ' 127.0.0.1 localhost '.

    HTH,
    JW

  • I am trying to open my child hotmail account using my itouch. However get the message incorrect password.

    incorrect password using itouch error message

    I am trying to open my child hotmail account using my itouch.  However get the message incorrect password.  I double checked that I am entering the correct password, but always without success. The hotmail account is protected by using parental controls.

    Any help appreciated.

    Hi 5pesh,

    The question you posted would be better suited to Windows Live Solution Center. I suggest you to send your application in the Windows Live Solution Center for better support.

    http://www.windowslivehelp.com/product.aspx?ProductID=1

    Reference: http://www.windowslivehelp.com/

  • Account used by an unauthorized person

    My hotmail account has been used by a strange person between 14/09/2011 to 16/09/2011. My hotmail account has been blocked on 14/09/2011 and I have reset the password. Kidly do necessary in order to protect this account using unauthorzied people because of personal and safety reasons.

    My hotmail account has been used by a strange person between 14/09/2011 to 16/09/2011. My hotmail account has been blocked on 14/09/2011 and I have reset the password. Kidly do necessary in order to protect this account using unauthorzied people because of personal and safety reasons.

    Suggestions:

    1. close the account.

    2 create another account hotmail with the new password and the new Windows Live ID.

    Here are a few links to Hotmail issues.

    Compromised account:
    http://windowslivehelp.com/solution.aspx?SolutionID=6ea0c7b3-1473-4176-b03f-145b951dcb41

    Account closure:
    http://windowslivehelp.com/solution.aspx?SolutionID=baf3b47e-4618-49E1-AE2C-91e158a4cc76

    Hotmail - Hotmail Threads Forum.
    Hotmail questions belong to Winfdows Live Solution Center. Please use this link to ask questions.

    http://windowslivehelp.com/forums.aspx?ProductID=1

  • I created a live account using my domain name, but I can't check because I can't in my Inbox as my accounts not verifyied,

    I created a live account using my domain name, but I can't check because I can't in my Inbox as my accounts not verifyied,

    I'm going round in circles. :
    I get this message: you have created * address email is removed from private life * as your Windows Live ID, but it must be checked until you can use it. To check, you can check your email at the * address email is removed from the privacy * and follow the instructions in the message, we have sent you.
    But it won't let me in the Inbox to check my email as my unverified accounts?

    Your question is part of Windows Live Solution Center.
    Given that you do not specify Windows Live Mail or Windows Live Hotmail, here is the main link and you can pick the right forum for your question:
    http://windowslivehelp.com/

  • Why can I access is more my hotmail account using firefox?

    Since this thing 'Windows Live' has been implemented, (ie: pushed to the bottom of the throat), got hurt continually access to my hotmail account using Firefox as your browser, until, from the past week or so can not access at ALL, unless I use IE. Everytime I turn on my laptop, I get the 'Windows Live Mssgr' box and must stop and that close. (Oh, I tried a few time just "go with the flow" and went forward and connected to Live Mssgr, and I was immediately HARASSED by dozens of 'contacts' I had NEVER heard of and had to spend the 5 minutes following or so playing whack-a-mole with the hordes of spamming, until the only way to stop him stopping once again.) I am NOT interested in LiveMssgr, Windows Live, or one of that truck, is what I'm interested to have access to my hotmail account, using ANY BROWSER, I JUDGE GOOD of USE!  I have already written on this time, but I was told I was in the wrong section, and I had to go in this section. (And of course, some worker drone MS came and he labeled as being "CORRECTLY answered"). WHY can I access is no longer my email using ANY other browser except IE; and WHY does microsoft keep pushing constantly to be the largest and most greedy aggressor on the block? .... Anyone? .... Bueller?

    Try resetting your Internet security to the default zone. Brian Tillman [MVP-Outlook]

  • Can't receive mail from Hotmail account using the phone or windows live mail

    Hello

    I'm having a problem where I get a sign in error whenever I try to access my Hotmail account using my smartphone or windows live mail.

    I CAN however use my web browser to connect and access the account in this way.

    I tried using 2 different laptops (windows 7 on both) and my android phone.

    I have reset the password twice and still have no chance to access the account outside the approach of above web browser.

    It seems that this problem has affected my direct mail phone and windows at the same time, and I am at a loss for a line of conduct.

    Does anyone have a solution?

    Thanks in advance

    It seems that if you have activated the two-step verification when you changed your
    password. If you did, you can not use this password to authenticate in stupid
    programs like Windows Live Mail which cannot ask or submit to security codes. You
    need to generate a unique password app to use in situations like this.

Maybe you are looking for