Access Manager Upgrade from 2005Q1 to 2005Q4 Failed Miserably

I really could use some help. I tried to upgrade our calendar server from 2005Q1 to 2005Q4 last week. Everything was going fine (calendar and webserver upgraded ok) until I upgraded the Access Manager piece. Now, Access Manager isn't running correctly. When I start the webserver container, it starts, but some parts of Access Manager (amserver) fails. I cannot get into the AMConsole web interface. Users cannot authenticate to their calendars through AM (we've got them working through an older method for now).
We've uninstalled/reinstalled AM several times. Run the amconfig tool to undeploy and redeploy. Rerun the amupgrade tool to redeploy the directory server objects...
We've opened a ticket with Sun but so far it hasn't been much help.
I'd just like to at least get AM to start so I can at least get into AMConsole...can anyone help?
Here's the error the webserver gives off when it starts....
failure: WebModule[amserver]: WEB2783: Servlet /amserver threw load() exception
javax.servlet.ServletException: WEB2778: Servlet.init() for servlet LoginLogoutMapping threw exception
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:949)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
----- Root Cause -----
java.lang.NullPointerException
at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
...and here's the error I see in the amAuth debug log...
01/31/2006 09:31:19:261 AM CST: Thread[main,5,main]
AuthD initializing
01/31/2006 09:31:19:301 AM CST: Thread[main,5,main]
ERROR: AuthD failed to get session service instance
01/31/2006 09:31:19:301 AM CST: Thread[main,5,main]
ERROR: AuthD init()
java.lang.NullPointerException
at com.sun.identity.authentication.service.AuthD.initAuthSessions(AuthD.java:706)
at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:229)
at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:494)
at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
Thanks for any help...
Matt

Sorry, I have no idea otherwise.
In our case, where we had the same exceptions, we could resolve the issue with reindexing the directory.
Most probably this has to do with the services
ldapsearch -b ou=services,o=root -D "cn=puser,ou=DSAME Users,o=root" -w password "(objectClass=sunService)" dn | wc -l
In my case I get 164 lines.
puser should be able to find all services. If not, you have probably have an ACI or index issue. If you get no services and get with the same search and Directory Manager as user 220 (in my case) entries, it is ACI.
If DM does not get any entries either, there is probably something wrong with indexes.
Ok, now lets assume you get the services. Another possible issue might be that your server is not in the "iplanet-am-platform-server-list"
Look into iPlanetAMPlatformService and check if the server you entered in AMConfig.properties(protocoll + "://" + host + ":" + port) is in the list.
hth Chris

Similar Messages

  • Accessing Managed Beans from Code

    Hi,
    How can I access managed beans from my code? I am too new to JSF to know if what I am doing is right from a design perspective. But what I am trying to do is to use Actions as sort of a Web Facade that aggregates state from other beans (all of them Managed beans right now) to build up state that is necessary for displaying pages.
    Thanks for you help
    Suhail

    Just answering my own question. The answer was given in a different thread (http://forum.java.sun.com/thread.jsp?forum=427&thread=427057&message=1901909#1901909) . JSF has provided various Factories (look at the FactoryFinder API) that allow one I presume to access the internal state of a FacesContext. One of the factory is ApplicationFactory. This factory from what I can make out essentially gives you access to everything (actionlisteners, navigationhanlder,components etc) in you application. My original question was about accessing something (for some reason) named ValueBinding. I can access the managed beans declared in my faces-config.xml by invoking getValue(facesContext). I can naturally also set the value of a bean by invoking setValue(...). I just needed the getValue and it seems to work.
    Ofcourse keep in mind that the underlying managed bean will not necessarily be initialized when you access it so test for nullness. As a general rule I think its best not to create the beans but access them using this facility. After all its not for nothing these are called Managed Beans.
    Now if only the faces implementation would persist the changes to Navigation hanlders that one makes in the code ;-)

  • What is the procedure of Call Manager upgrade from version CUCM 7.1 (MCS Server) to version CUCM 10.2 (on UCS server)

    Hi
    What is the procedure of Call Manager upgrade from version CUCM 7.1 (MCS Server)  to version CUCM 10.2 (on UCS server) , please let me know the steps to what would be the backup procedures and upgrades.
    Regards
    Gaurav

    I'd suggest reading this guide to make sure you have prepared your environment to support 10.x first. The link below also contains the upgrade path to 10.0(1).
    One of the ways you can do this is:
    1/ Apply refresh upgrade cop file on all servers in cluster.
    2/ Upgrade the cluster to 8.6(2). Take a backup of the cluster.
    3/ Build a cluster of 8.6(2) servers on VMs, and assign them the same hostnames and IP address as the hardware cluster. (You may need to keep these on a separate network until switching off the hardware machines)
    4/ Restore the backup taken from the hardware cluster on to the VM cluster.
    5/ Upgrade VM cluster to 10.0(1).
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/upgrade/10_0_1/CUCM_BK_U4214F9D_00_upgrade-guide-cucm-100/CUCM_BK_U4214F9D_00_upgrade-guide-cucm-100_chapter_010.html#CUCM_RF_UA60AFAB_00

  • Upgrade from 2.6.34 fails. No devices recognized.

    I should have posted this over a month ago, but I've been in the process of moving. I frequently run powerpill -Syu to keep up to date, and debug issues as the come up, but the upgrade from 2.6.34 caused so many issues that I've been unable to attempt to resolve until now.
    Here's what I did.
    pacman -Syu
    Here's what happened:
    boot into upgraded kernel and USB drivers are not found, so I can't use the keyboard or mouse. During boot, eth0 is not found (there's an error message to this effect), can't start ssh.
    so basically the computer is unusable. It seems that none of the drivers are found, but I can't test because I have no way to input into the system.
    To resolve I booted in using system rescue cd and rolled back the kernel upgrade.
    My system:
    Atom 330 ION
    RAID0
    Stock kernel
    Where should I start to fix this? I'll run the upgrade again and post the error output in a few hours when I finish work. But if somebody has some ideas beforehand I'd like to try that before crippling my computer.
    Moderator, not sure if this is the correct forum, it's a package upgrade issue, but also a kernel problem. If I've posted incorrectly, please move the topic.

    Hi all,
    I'm experiencing the same problem after upgrading from 2.6.15 to 2.6.16. I get the following upon booting:
    mount: Mounting /dev/root on /new_root failed: No such device or address
    pivot_root: pivot_root: No such file or directory
    umount: /initrd: No such file or directory
    umount: /initrd: No such file or directory
    /linuxrc: 382: /sbin/busybox: not found
    Freeing unused kernel memory: 244k freed
    BusyBox v1.01 (2006.03.10-22:56+0000) Built-in shell (ash)
    Enter 'help' for a list of built-in commands.
    /bin/sh: can't access tty; job control turned off
    So I went to a backup kernel and tried to rebuild the initrd:
    # mkinitrd auto
    Checking Input...
    ERROR: Your ramdisk size (4096 KB) is too low! It must be at least 16384 KB.
    Note also that I'm getting a lot of these messages during the boot process, no matter what kernel I choose:
    FATAL: Could not load /lib/modules/2.6.15.4-ARCH/modules.dep: No such file or directory
    Any ideas on this one? I'm stuck! Thank you!

  • Virsa Access Enforcer Upgrading from 5.1 to 5.2

    Hi,
    we are upgrading Virsa Access Enforcer from 5.1 to 5.2 GRC acording to the Access Control 52 Product Migration Guide.
    All required steps were finished successfully.
    After this not a single request in AE can be displayed (Error:Request Approval Screen is not displayed because Request Status has changed),
    One example of the error from the AE log:
    2007-11-08 10:24:32,160 [SAPEngine_Application_Thread[impl:3]_12] ERROR SQL Exception in insert : [NWMss][SQLServer JDBC Driver][SQLServer]Violation of PRIMARY KEY constraint 'PK__VIRSA_AE_WF_STGF__149DFBA3'. Cannot insert duplicate key in object 'dbo.VIRSA_AE_WF_STGFLD'. ==> VIRSA_AE_WF_STGFLD : {FLD_NAME=Request Role, WFTYPE=AE, FLD_DESCRIPTION=Request Role}
    neither the audit trail can be displayed (Erro:No audit trail found for given range or invalid range specified).
    In AE52 there are four new tables where has new column REQPATHID added:
    VIRSA_AE_RQD_WPCLD
    VIRSA_AE_RQD_WPFWD
    VIRSA_AE_RQD_WPHST
    VIRSA_AE_RQD_WPTRN
    Entries to this tables were copied during upgrade from tables:
    VIRSA_AE_RQD_WFCLD
    VIRSA_AE_RQD_WFFWD
    VIRSA_AE_RQD_WFHST
    VIRSA_AE_RQD_WFTRN,
    but REQPATHID entries was not properly created.
    Btw. when did AE52 installation from scratch, not upgrade, on PROD system, i was copying table entries manualy and also had to insert REQPATHID values manually in above mentioned tables.
    What I am expecting, when upgrading, this should be done by the system automatically.
    Has anyone similar experience with upgrading and how you handle with this.
    Thank you.
    Regards,
    Robert Bilicic

    Hi Christof,
    The VB codes used in the excel sheets are only excel dependent. I don't think Microsoft has any backward compatability issue with 2003 to 2007. Similarly the VB commands from 5.1 is maintained in 7 so you should not face any major issues there too.
    Badrish

  • Directory access problem: upgrade from windows 2000 to 2003

    Hi Experts,
    We are trying to upgrade from old server(OS - windows2000) to new server (windows 2003).
    Its also upgrade from 32bit to 64bit.
    Currently we have 5 application servers mounted on a single database server.
    When we tried to upgrade in test server, user is not able to acess the server directory(to save file from backround job) inspite of having authorization.
    Please let me know if you need further inputs.
    Eagerly looking forward to your help.
    Best Regards,
    Apps

    > When we tried to upgrade in test server, user is not able to acess the server directory(to save file from backround job) inspite of having authorization.
    Error message?
    Markus

  • LR4 upgrade from LR3 registration keeps failing

    I was beta testing LR4, and bought the upgrade today (to upgrade from LR3).. entered the serial number into LR4 Beta to upgrade, entered my registration info, and keep getting this pop up afterwards.  Tried contacting Adobe chat support, and got nowhere.  Idiots in India.  I have tried downloading the file from Adobe as well (instead of just registering the beta) .. keep getting this error (I'm using a Mac):
    I try clicking the "goto Adobe.com" button, and it takes me to an "error 404" page.

    Hi,
    Remove all the versions of LR from the computer and then remove this file from this location  (USER)Library/Application Support/Adobe/Lightroom/Lightroom x.0 Registration file
    Then install LR by downloading from adobe.com and then serialize with your serial number and then check.

  • About Solution Manager upgrade from 3.1 to 4.0

    Hi colleague,
    I am in progress of finalizing a planning for an Upgrade project of Solution Manager from 3.1 to 4.0 release.
    The current usage of the Solution Manager usage is the following :
    - Only Blue Print and Implementation function used,
    - No modification (no repair),
    - Very few customizing : document type, key word,
    - More than 300 User : BRIDGE Program at Schneider Electric customer that uses Sol Man as implementation enabler and tool is very huge, with many SAP component - ECC, CRM, BW, SRM, EP, APO, XI ; + scope is all SE business organization worldwide,
    - We us Template approach (Template Project + Implementation Project per Roll Out),
    - DE/EN/FR installed and FR supplemented with EN,
    - Landscape is mapped,
    - We use Blue Print, business structure, few project administration function, IMG activities linked to Project/Structure, Dev objects linked to Project/Structure, documentation linked to Project/Structure, customizing distribution,
    - There are around 6000 documents stored in 2 used Project (one Template, other Implementation).
    Current plan is to perform 2 upgrade :
    - One on a SandBox Sol Man on which we will have before copied the Sol Man plateform used for project implementation task,
    - Another on the Sol Man plateform used (final).
    Strategy is in a first step to perform an upgrade without implementation of additional/new Sol Man functions (to see and qualify in a further phase) : iso functionality is the strategy.
    Now my concern / question.
    I did estimate roughly the upgrade duration and workload to 3 days (only for upgrade, not for preparation, pre-step, post-steps, validation, ...,
    I would like to know if such estimation is realistic, and if I have to check and pay attention to particular concern (I already collected all relevant SAP Note like 892412, 914910, 834534, ...).
    I expect to have after upgrade the same content, without any bad surprise.
    Thanks for your collaboration.
    Regards.
    Philippe Boyer SAP France (Project Management Team)

    Hi,
    I guess by now you would have started your upgrade. Sorry for the delay. That's a realistic/achievable estimate, goahead. Any specific queries about upgrade? feel free to revert back.
    --Ragu
    Downloading and installation of patches would consume more time.
    Message was edited by:
            Raguraman C

  • Cisco Call Manager Upgrade from Ver 5.1.3 to Ver 8.6

    Hi ,
    My organization have 4 Subscribers and 1 publisher between 4 different sites. version of all call manager are 5.1.3. all are running on HP Proliant server.
    I looking to upgrade to Version 8.6. Do I need to upgrade server hardware as well for upgrading latest version of call manager or I can use my old server ?
    Thanks
    Amit Sharma

    Hi GP,
    Thanks for your reply.
    Please find below the hardware details of my old server. these details I get from Cisco call manager application.
    Hardware Resources
    Hardware platform type    7835H
    The CPU type    Intel(R) Xeon(TM) CPU 3.40GHz
    Memory    2048 Mbytes
    Detailed Report
    Machine_Type = XXXX
    Model_Number =
    Serial_Number = GB8637LRFE     
    Product_Name = ProLiant DL380 G4
    BIOS_Version =
    BIOS_Build_Level = P51
    BIOS_Date = 04/26/2006
    BIOS_Manufacturer = HP
    BIOS_Language =
    Number_Of_Enclosures =
    Enclosure_Type.0 =
    Processor_Slots = 2
    Active_Processors = 1
    Processor_Family.0 = Xeon
    Processor_Speed_MHz.0 = 3400
    Total_Enabled_Memory_Mb = 2048
    ROM_Diagnostics_Build_Level =
    Thanks
    Amit

  • Real Estate Management Upgrade from Ecc5.0 to Ecc6.0

    HI Gurus
    Can any body guide me what all upgrade issues from Functional Prospective are there in Real Estate Management from Ecc5.0 to Ecc6
    Thanks and regards
    Ramarao

    Hi,
    Pleae use the link http://solutionbrowser.erp.sap.fmpmedia.com to find out the newer functionalitites as per SAP product release modulewise.
    Hope this helps you.
    Rgds
    Manish

  • Upgrade from Mavericks to Yosemite fails (RAID1)

    I bought a Mac Mini (i5, 2013) from Amazon and replaced the stock hard disk with 2x 1TB WD Red Series drives.
    I re-installed OSX via internet recovery, everything went smoothly.
    When Yosemite was released my mac tried to download and install it.
    After a reboot, it goes in a crash loop. It will try to load the installer, crash, reboot, and repeat.
    I assume this is because Yosemite isn't aware of the RAID1 drives that are set up, and I can go back to Mavericks holding ALT and selecting 10.9.5 again.
    Is there some way I can get this to work without modifying my configuration?
    Everything on Mavericks works flawlessly but it just won't upgrade.

    I'm not sure which of the prior steps I took fixed things, but after writing the last post I tried to boot to safe mode one last time and succeeded.
    After booting to safe mode and allowing the Mavericks installation to complete restarted the Mini. I had to restart with Cmd-Ctrl-Eject because none of the menus were working in safe mode.
    Anyways, maverics booted up fine after that point.
    If anyone runs into this I would follow the instructions This update is causing my Mac Mini (2011) to reboot into a grey screen. Time Machine restore is required through step 6 then try to boot back into safe mode.

  • Cannot start sun webserver if Access Manager component is present in magnus

    We have a Oblix 7.02 installation on Solaris 9 with sun one web server 6.1. I am unable to start the web server if there is Access Manager components in magnus.conf. If I delete the Access Manager part from magnus.conf then the server starts fine but then I am unable to access Access Server Console or Access Manager. I ran the EditObjConf on a fresh obj.conf and magnus.conf but still the issue remains.
    Here is the error when I try to start the web server:
    Status:
    [https-identityadmin.xx.com]: start failed. (2: SSL_ERROR_NO_CERTIFICATE: unable to find the certificate or key necessary for authentication)
    [https-identityadmin.xx.com]: Sun ONE Web Server 6.1SP1 B12/19/2003 22:19
    [https-identityadmin.xx.com]: failure: server initialization failed
    Error
    An error occurred during startup.
    The server https-identityadmin.xx.com was not started.
    Thanks.

    When I reinstall Access Manager I get the following error:
    Press 3 to Finish or 4 to Redisplay [3] 3
    SIGABRT 6 abort (generated by abort(3) routine)
    si_signo [6]: ABRT
    si_errno [0]:
    si_code [-1]: SI_LWP [pid: 20513, uid: 2931]
    stackpointer=FFBFDAF0
    "process reaper" (TID:0x7087d0, sys_thread_t:0x708708, state:R, thread_t: t@49, threadID:0xff191600, stack_bottom:0xfaed0000, stack_size:0x20000) prio=5
    [1] java.lang.UNIXProcess.waitForProcessExit(Native Method)
    [2] java.lang.UNIXProcess.access$10(UNIXProcess.java:30)
    [3] java.lang.UNIXProcess$3.run(UNIXProcess.java:74)
    Exiting Thread (sys_thread_t:0xfefd1db0) : no stack
    Exiting Thread (sys_thread_t:0x40a948) : no stack
    "Finalizer" (TID:0x152580, sys_thread_t:0x1524b8, state:CW, thread_t: t@4, threadID:0xff190600, stack_bottom:0xfebc0000, stack_size:0x20000) prio=8
    [1] java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:145)
    [2] java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:167)
    [3] java.lang.ref.Finalizer$FinalizerWorker$FinalizerThread.run(Finalizer.java:117)
    "Reference Handler" (TID:0x150db0, sys_thread_t:0x150ce8, state:CW, thread_t: t@3, threadID:0xff190400, stack_bottom:0xfebf0000, stack_size:0x20000) prio=10
    [1] java.lang.Object.wait(Object.java:417)
    [2] java.lang.ref.Reference$ReferenceHandler.run(Reference.java:129)
    "Signal dispatcher" (TID:0x132990, sys_thread_t:0x1328c8, state:MW, thread_t: t@2, threadID:0xff190200, stack_bottom:0xff040000, stack_size:0x20000) prio=10
    "main" (TID:0x39058, sys_thread_t:0x38f90, state:R, thread_t: t@1, threadID:0xff190000, stack_bottom:0xffc00000, stack_size:0x800000) prio=5 current thread
    [1] java.lang.Runtime.exitInternal(Native Method)
    [2] java.lang.Runtime.exit(Runtime.java:76)
    [3] java.lang.System.exit(System.java:652)
    [4] com.installshield.wizard.Wizard.main(Wizard.java:135)
    [5] java.lang.reflect.Method.invoke(Native Method)
    [6] run.main(run.java:15)
    Abort - core dumped

  • Access Manager + Portal Server + Zones + Subnets

    Hi
    Appreciate your help.
    I'm installing Access Manager and Portal Server, this is the environment:
    - 3 machines - Solaris 10, 2 local zones per machine
    ie
    root@global1 # zoneadm list -cv
    ID NAME STATUS PATH
    0 global running /
    1 accesclbp1 running /zone-access
    2 portalclbp1 running /zone-portal
    Every local zone assigned to Portal Server and the global zone lives on the same VLAN, and every local zone assigned to AM lives on a different VLAN.
    The failover of AM is been working rigth now, but I have a problem trying to install the Portal Server's, when I try to connect to AM through the VIP I'm loosing the connections to AM, sometimes I can connect and sometimes is not possible.
    Somebody has an environment like this? PS + AM + zones + subnets???

    We have this configuration as well.
    A few things we have experienced during installation:
    1. If Access Manager is https the Portal install fails even the cert is included in the installer JVM.
    2. Zones: We use DNS and in nsswitch.conf - hosts and ipnodes were both set to files dns. Once I changed ipnodes to files only problem disappeared.
    3. Check that Password Encryption Key is the same across the AMSDKs and the Access Manager servers.

  • Integrate IdM roles with Sun Access Manager roles

    Hi all,
    I am currently working on a solution involving Sun Identity Manager 7.1 and Sun Access Manager 7.1 as well. We use AM for overall authentication and SSO across the application, and IdM for user provisioning.
    I need to create roles in Identity Manager, and I would like that when I assign a role to a user in Identity Manager, he gets the same role in my Access Manager repository (Sun LDAP). Identity Manager does provide a way to set attribute values in resources when a role is set. Access Manager on the other hand has both dynamic roles, based on an LDAP search, and static roles.
    What are the important differences between static and dynamic roles in AM?
    Does anybody know a good way to propagate roles from Identity Manager to Access Manager?
    Thanks.

    I found answers to my question. I succeeded in setting the Access Manager role from Identity Manager using the nsRoleDN attribute. Here are some references to begin with:
    About directory server roles:
    http://docs.sun.com/app/docs/doc/820-2493/fvbrn?a=view
    Forum thread reference:
    http://forums.sun.com/thread.jspa?threadID=5208694
    Here are roughly the steps I followed to get this working.
    Access Manager roles setup:
    1. In Access Manager, create a new static role named test_role under the identities realm (in Subjects > Role).
    Identity Manager roles setup:
    1. Create a new role in Identity Manager: tab Roles, click New....
    2. Assign the LDAP resource to synchronize the role with.
    3. On the Assigned Resources line, click the Set Attributes Values button. This shows up the attributes listing allowing you to bind your IdM role to your LDAP repository.
    4. Set the attribute nsRoleDN to the LDAP DN of the role that was created in AM (nsRoleDN must be added in the resource attributes mapping before).
    * In the column Value override, select Text.
    * In the column How to set, select Authoritative merge with value, clear existing. (* See IDM Admin guide about this setting, I am still not sure how it reacts with multi-value attributes)
    * In the text box, enter the role DN text (ex: cn=test_role,dc=com).
    5. Save the role. You can now add the role to a user.

  • Oracle Access Manager AND Jdev

    We plan to use Access manager et the front end of Jdev ADFBC JSF web application ..
    How can we integrate our java application with Access Manager
    We can't find any code or application sample about that...
    Any extention planned for Access Manager like portlet extention ?
    (is true forum here ?)
    Thanks for your help....

    I am assuming you are trying to use CoreID's Access Manager API?
    If so....
    In order to use the access manager API from within Java you must do the following:
    1) Intall the Access Server SDK on the machine that you will be doing your development on ( This is a sepperate executeable form the CoreID Installer )
    2) Configure an Access Gate on your Access Server for this development machine
    3) Run the Access Gate Configuration Tools on the development machine.
    (Chapter 5 of the Development Guide [NetPoint70B_Developer_Guide goes through this in more detail)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Excel sheet on sharepoint to be used as source for Xcelsius dashboard

    Hi Everyone, We have to build an Xcelsius dashboard based on an excel sheet's data. This excel sheet is placed on a sharepoint, which will be updated periodically. I would like to know what kind of dat a connection i can use to fetch this excel data

  • Mail is Frozen because of outgoing attachment

    Yikes..I was trying to send an e-mail with a very large video file. Too large obviously. Anyway..it's stuck in my OUTGOING mailbox and every time I open mail I see "configuring mail headers"..or "sorting messages" and I get the please wait color whee

  • Adobe PS Elements 11 in Win7 SP1 download?

    My Adobe PS Elements was corrupted in Win7 SP1 How do I download and reinstall? I have my key; but cannot find the link to down load. Also, part of the porblem has been a change in syntax of our emails from Firstname to FirstnameLastname. Adobe can't

  • EJB3.0 and toplink workbench

    Hi, I have a question to the new TopLink release and EJB 3.0 support. Is it possible that TopLink workbench generates EJB 3.0 persistence classes from database with annotations or mappings in the project.xml? I don't want to write all the persistence

  • Help Me! Apple ID has been disabled

    Apple help me! with my account was disabled. Change Password , was not confirmed I want a refund account It gives me loads of money on an app that does not work. Please allow me to use it.