How can authenticate users´portal in OIM?

I have installed Aqualogic Interaction 6.5, and I want import and authenticate users from OIM(or another LDAP)? What i can do?
I read that i must install Oracle webcenter identity services? It´s true? Where i can adquire?
thanks

I have not tried with 6.5, btu I think you just need to install one of the identity services which allow you to sync and authenticate against various sources (LDAP, AD, etc). See here for more info http://edocs.bea.com/alui/integration/

Similar Messages

  • I have itunes on a mac with 2 users but the library only shows on the main user how can both users have the same library?

    i have itunes on a mac with 2 users but the library only shows on the main user how can both users have the same library?

    Hi,
    Have a Look at these Links on Home Sharing:
    http://support.apple.com/kb/HT4620
    http://support.apple.com/kb/HT3819
    Could be what you need...
    Cheers,

  • I have set up different use accounts on my I mac how can other users share the music stored in my I tunes

    I have set up different user accounts on my I mac how can other users share the music stored in my I tunes

    iTunes: How to share music between different accounts on a single computer

  • How can two users work on iMovie?  My husband is working on a memorial video for a family member who passed, I plan to edit but he had to take his computer to work.  I have the iMovie project on a zip drive.  How do I get it to open in my imovie?

    How can two users work on iMovie?  My husband is working on a memorial video for a family member who passed, I plan to edit but he had to take his computer to work.  I have the iMovie project on a zip drive.  How do I get it to open in my imovie? 

    You will need an external drive that is formatted as MAC OS EXTENDED (journaled).
    Move the Project, Events, and any photos and music to the external drive by following the instructions in this post.
    https://discussions.apple.com/docs/DOC-4141
    Be sure to use CONSOLIDATE MEDIA to get the photos and music. Then plug this drive into your computer and you will be able to edit.

  • How to create User Portal in OID programmatically in JSP

    Hi.
    I want to create User Portal programmatically in JSP (if posible) or have to use procedure.
    I check with package wwsec_api, it just have 'function
    add_portal_user', but it say we must have "the user must already exist in OID before this function is called."
    So, i checked for 'how to create User in OID'. What i got (in metalink)just methods that 'Create manually Portal Users in to OID' by LDAP or PL/SQL coding (with list of user in flat files).
    What i want to do is, How to create User POrtal in OID by JSP? What are the procedure/table/method involved?
    Do anybody have any samples?..
    Thanks.

    I had to write my own because I could not find one anywhere. Here is an addUser() method that seems to work pretty well.
    import oracle.ldap.util.jndi.ConnectionUtil;
    import javax.naming.directory.*;
    import javax.naming.*;
    public class LdapUser
    public LdapUser(){}
    public void addUser(String pUsername, String pPassword, String pFirstName, String pLastName, String pEmail)
    try
    InitialDirContext ctx = ConnectionUtil.getDefaultDirCtx("host", "port", "orcladmin", "pwd");
    BasicAttributes attrs = new BasicAttributes();
    BasicAttribute oc = new BasicAttribute("objectclass");
    oc.add("top");
    oc.add("person");
    oc.add("inetOrgPerson");
    oc.add("organizationalPerson");
    oc.add("orclUser");
    oc.add("orclUserV2");
    attrs.put(oc);
    BasicAttribute gn = new BasicAttribute("givenName", pFirstName);
    attrs.put(gn);
    BasicAttribute sn = new BasicAttribute("sn", pLastName);
    attrs.put(sn);
    BasicAttribute cn = new BasicAttribute("mail", pEmail);
    attrs.put(cn);
    BasicAttribute pwd = new BasicAttribute("userpassword", pPassword);
    attrs.put(pwd);
    // Etcetera, etcetera...
    ctx.createSubcontext("cn="+pUsername+",cn=users,dc=whatever,dc=com", attrs);
    ctx.close();
    System.out.println("Success!!");
    catch (NameAlreadyBoundException nabe)
    System.out.println("Username is already in use. Please choose another.");
    catch (NamingException ne)
    System.out.println("NamingException: " + ne);
    catch (Exception e)
    System.out.println("User account was not created.");
    }

  • How can a user (user edition) see a saved worksheet by other user

    how can a user (user edition) see a saved worksheet that was saved by another if it was saved in the database?
    thnx
    Endre

    If the user has given you permission to view their worksheet, then you should be able to open up an existing workbook as soon as you log into Discoverer. The disgression is up to the owner if you can view, or change their workbook.

  • How can a user site be remove from my computer?

    How can a user be removed from my computer? the user can't get on their site because of password encounters.
    It seem that their password has been corrupted.

    Could you provide a bit more information? Is it a local user or a network user? Would you want him to have access to his data again, or do you want to loose him with his data completely?
    Have fun
    Leo

  • How can i user  PixelGrabber in javafx.scee.image.Image

    how can i user PixelGrabber in javafx.scee.image.Image

    You can either get a java.awt.BufferedImage snapshot of the Image, and use a PixelGrabber with that:
    import javafx.scene.image.Image ;
    import javafx.embed.swing.SwingFXUtils ;
    import java.awt.image.BufferedImage ;
    import java.awt.image.PixelGrabber ;
    Image img = ... ;
    BufferedImage bImage = SwingFXUtils.fromFXImage(img, null);
    PixelGrabber grabber = new PixelGrabber(bImage, ...);Or, you can use a javafx.scene.image.PixelReader, which has essentially the same functionality:
    import javafx.scene.image.Image ;
    import javafx.scene.image.PixelReader ;
    import javafx.scene.image.PixelFormat ;
    Image img = ... ;
    PixelReader reader = img.getPixelReader();
    int[] pixelArray = ... ;
    int x, y, w, h ; // bounds of image portion from which to read pixels
    reader.getPixels(x, y, w, h, PixelFormat.getIntArgbInstance(), pixelArray, 0, w); // see javadocs for full description of parameters(The second solution is probably better; the first might be useful if you have a lot of existing functionality that relies on a PixelGrabber.)

  • How can create users in OIM

    Hi All,
    I am new to OIM, Just installed OIM using IDM Template on OVM Server. I am able to login on both access and identity webconsole.
    but I dont know how can i create users and use these URL...Please help me some on this...
    thanks...
    YJR

    I am not sure what you are asking.
    Use this link if you want to use OIM Webconsole like creating users, groups etc.
    http://download.oracle.com/docs/cd/E14049_01/doc.9101/e14057/users.htm#CIHEGEHF

  • How can i get portal user creation date?

    Hi,
    In my web dynpro java application i must get user creation date.
    How can i get user creation date?
    Thanks.

    user.created()

  • How can multiple users want to use airpaly to apple tv?

    Our family wants to be able to share different media from our iphones/itouches through Apple TV 2. How can we do this? It seems that only one device and connect at a time. While we understand that all 4 of our devices cannot simultaneously connect and play, we would like to be able switch back and forth.  We cannot.  Also, when the last person to use Airplay is leaves the house or is gone (their itunes library is closed/off), others would like to access the Airplay through their device to the Apple TV 2 but more often than not we cannot seem to get the Apple TV 2 to recognize a new user.  Any tips?

    It's a fundamental oversight of Home Sharing - it assumes you're a single user with a single AppleID.
    You can go to Setting>Computers and log out of one AppleID and change to another HomeSharing ID, but that seems a hassle.
    AC

  • How can multiple users from different locations access my Muse website files to update them?

    We're a team, and we need to be able to work together remotely.
    How can I let another user (on the East Coast - I'm on the West coast) have access to my Muse website files so that they can work on them and make changes - but I can also work on them here?
    I've already made them an Admin in the Manage section of the live Muse website that is hosted on Business Catalyst.
    BTW, they also belong to Creative Cloud.
    Thanks!

    You need to share your .muse file with this other person.
    Muse does not currently support multiple users opening the same .muse file at the same time.
    There's lots of options for sharing a file - you could copy it up to a company network server, or email the file back and forth, or use a filesharing service like Dropbox, SendThisFile, Adobe SendNow, or Creative cloud sync, among others.
    Which one is right for you depends on the size of your file, how often you're sending the file back and forth, and personal preferences
    Whatever you choose, it's important that you DO NOT have 2 users working on the same .muse file at the same time. This can cause corruption of your .muse file. I'd also recommend frequent backups of your .muse file, as you might find that one of you clobbers a change made by the other and you want to be able to go back to your old copy of your .muse file to copy/paste some content to your latest copy of your .muse file.

  • How can multiple users edit and access same ACCESS file

    Hello,
    We have 2 access files and multiple users needs to edit and access those files.
    How can I enable mulitple access but only one user can edit rest of users are in read-only mode for one file and multiple access and edit on the another file.

    Hi,
    You should split your database in a front and backend. Then create two seperate front ends which you can distribute. If you need readonly you can opt for two options, setting the attributes of the file to read only or create a front end with read only forms.
    The last one takes a little more work but is safer than setting the attributes to read only because people can change that back themselfs.
    Maurice

  • How can 2 user edit 1 word document at the same time

    hi,
    in office 2013 professional plus, can 2 user edit 1 word document at the same time?

    Hi,
    As far as I know, multiple users can not edit Word file in the same time directly. Could you give me your demand?
    Please check the two follows workarounds if they are helpful:
    http://blogs.msdn.com/b/johnmullinax/archive/2010/04/19/co-authoring-how-two-people-can-edit-one-word-2010-doc-at-the-same-time.aspx?Redirected=true
    http://www.ehow.com/how_7229904_allow-word-document-same-time.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support
    Hi
    thank you; its worked.
    I'm so excited about this; thank you again.

  • How to authenticate user in Active Directory for an Oracle report

    Hey there,
    We have users of 1 report all over the country.
    Currently, when using the report, the user chooses a location as a parameter, then runs the report.
    The problem is we don't want the user to be able to see data from other locations, only their own.
    So how can I do this as all users are set up in Active Directory, but the only thing that distinguishes them apart is under the Properties of the user, under the General tab, the Office field says where they are located.
    Thanks in advance!

    Hey there,
    We have users of 1 report all over the country.
    Currently, when using the report, the user chooses a location as a parameter, then runs the report.
    The problem is we don't want the user to be able to see data from other locations, only their own.
    So how can I do this as all users are set up in Active Directory, but the only thing that distinguishes them apart is under the Properties of the user, under the General tab, the Office field says where they are located.
    Thanks in advance!

Maybe you are looking for

  • I am looking to buy a new macbook. I am not sure whether to go for the Air, 13inch Retina or 15inch Retina.

    I mainly use my current laptop for browsing the internet on my sofa, however I also want to be able to use photoshop and logic without a struggle. My thinking so far is, MBA 13inch is portable and fast with good battery. rMBP 13 is more powerful but

  • Changing Weblogic Server properties without restarting Weblogic Server

    I have an application that requires a few things to be set at the start of the Weblogic server (email addresses,criteria settings, etc.). These are contained in a properties file that is referenced in the Weblogic properties file. The problem is when

  • Problem during Download of Dynamic Table Data

    Hello All, I have data in a dynamic internal table. When I'm trying to download the content onto my Presentation Server and Application Server, the data corresponding to the CURRENCY and QUANTITY fields are getting ROUNDED to the nearest whole number

  • Exported image size

    I shoot a canon 30D which produces RAW files about 7mb. When I export the versions as full size Jpegs, they get knocked to around 250kb! What is going on? That seems like an extreme amount of compression to me. Any ideas as to what I am doing wrong?

  • Sound not working right

    ok so my itouch worked for like a week then the main singer stopped working. the background music kinda works. it has this weird constant sound. i tried factory resets, no luck. also i wanted to know if you have a solution....is it possible to keep m