Integrate two weblogic with LDAP embedded

I need connect a weblogic with a LDAP embedded. I make the settings as follows:
1)Create a new provider of type LDAPAuthenticator.
2)The parameters  the provider are:
<sec:authentication-provider xsi:type="wls:ldap-authenticatorType">
        <sec:name>Authenticator</sec:name>
        <sec:control-flag>SUFFICIENT</sec:control-flag>
        <wls:port>7041</wls:port>
        <wls:user-object-class>wlsUser</wls:user-object-class>
        <wls:principal>cn=Admin</wls:principal>
        <wls:user-base-dn>ou=people,ou=myrealm,dc=base_domain_adf</wls:user-base-dn>
        <wls:credential-encrypted>{AES}23vkfCfP/jzmmoqK2g/zkH9uJ8zMSmJ/Xwa6GDjCCQc=</wls:credential-encrypted>
        <wls:user-from-name-filter>(&amp;(uid=%u)(objectclass=wlsUser))</wls:user-from-name-filter>
        <wls:group-base-dn>ou=groups,ou=myrealm,dc=base_domain_adf</wls:group-base-dn>
        <wls:use-retrieved-user-name-as-principal>true</wls:use-retrieved-user-name-as-principal>
      </sec:authentication-provider>
The problem is that the application do not authenticated. I think that the problem is because do not returns all attributes of the users. This is log de LDAPemebedeb the weblogic:
15:45:47.896 ldc=2 op=235 SearchRequest {baseObject=ou=people,ou=myrealm,dc=base_domain_adf, scope=2, derefAliases=0,sizeLimit=1000, timeLimit=0, attrsOnly=false, filter=(&(uid=pribpm22)(objectclass=wlsUser)), attributes=description}
15:45:47.901 ldc=2 op=235 SearchResponse {entry='uid=pribpm22,ou=people,ou=myrealm,dc=base_domain_adf', attributes='LDAPAttribute {type='description', values='Tue May 14 17:34:51 COT 2013'}'}
any ideas?..
Have you made this configuration?
Thanks....

As far as I know, you cannot navigate between workspaces without logins.
You can do it, if the applications are in the same workspace
Gus

Similar Messages

  • Integrate Profile WS with LDAP in PT5.0.1

    HiI have SSO enabled PT-5.0.1 up and running with AD authentication source. But user profile information of the users are in stored in a different system (LDAP).
    The task is to retrieve user profile information from LDAP system and store it in AD authenticated source imported user's user-profile.
    Need a jumpstart here. Has anyone done this in past?Thanks

    Hi Kuljit,
    The primary problem with this scenario is that you cannot tell the Native LDAP Profile Source what attribute you'd like to lookup your AD User's against. So unless you have the Object GUID (that AD AWS uses to uniquely identify each AD User) in your LDAP directory, you can't do this out of the box.However there is a fairly straightforward solution, it will require you to write your own AD PWS:
    Write an AD PWS that accepts a GUID as the unique identifierThe PWS should lookup the CN attribute given the GUID on the ADUse the LDAP PWS to talk to LDAPThe AD PWS you write should make calls into the LDAP PWS using the CN as the unique identifierthe AD PWS should proxy all calls made to it to the LDAP PWS, substituting the GUID with the CN looked up aboveThis amounts to something like this (from the SOAP call perspective):
    Portal calls AttachToUser on your AD PWS using a GUIDAD PWS asks the AD directory for the CN given that GUIDif the GUID doesn't exist on the AD, AttachToUser failsGiven the CN, call AttachToUser against the LDAP PWSif this fails, pass the failure back to the portalreturn a success to the portalFor subsequent calls, you should have saved the current user GUID and CN on the session with the portal. You can now do proxy all requests directly to the LDAP PWS and send responses back to the portal. Make sure you substitute the CN for the GUID on requests, and vice versa on responses.
    In futue versions this may become simpler - but for now this is the best solution. Also, if you are wondering where to get the LDAP PWS, it is currently in beta - please e-mail me if you are interested in tryng it out.
    ThanksAkash Jain

  • Weblogic 9.2 Embedded LDAP Login denied!

    Hi,
    I am trying to put together users/ groups in the Embeded ldap for LDAP authentication. I saw in the embedded LDAP, the tree as
         domainName->myrealm->groups,people etc by default.
    Now, under the LDAP root domainName, I created a directory structure as:
         domainName->myorg->groups,users.
    In the weblogic console ( myrealm is the default security realm.)
    under myrealm, I created LDAP Authentication Provider and gave all the LDAP provider specific info for searching etc.
    I was able to see the users using the console screen.
    Now in my Web Application, using the "FORM based Authentication"(using j_username etc) I tried to login.
    I saw the AdminServer log:
    --getDNForUser search("ou=people,ou=myrealm,dc=domainA", "(&(uid=ldapuser2)(objectclass=person))", base DN & below)
    with the following exception:
    --javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User ldapuser2 denied
         at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:191)
    which means, Weblogic was trying to use the LDAP params which were pointing to 'myrealm'.
    I was expecting weblogic to search as I specified in the provider:
    "ou=users,ou=myorg,dc=domainA" rather than "ou=people,ou=myrealm,dc=domainA".
    Remember I am using Embeded LDAP.
    Please let me know whether what I am trying to achieve is something that Weblogic is capable of.
    By the way, when I put my users under the 'myrealm' directory it does authenticate.
    Please let me know
    Thank you in advance.
    Azim

    These are the steps that I followed to connect weblogic 9.2 with LDAP Port 636(SSL Enabled) and it worked fine.
    Steps for Installation of SSL
    1.     Modify the Provider Specific configuration in the Admin Console to use port 636 and ‘SSL Enabled’ (OR Modify config.xml)
         <wls:port>636</wls:port>
         <wls:ssl-enabled>true</wls:ssl-enabled>
    2.     Back up the D:\apps\bea\wls92\weblogic92\server\lib directory
    3.     Copy the certificate (xxxx.cer) to that directory
    4.     Import the certificate into the keystore:
    5.     D:\apps\bea\wls92\jrockit_150_12\bin\keytool -v -import -alias ldapcert -keystore DemoTrust.jks -file entrust_ssl_ca.cer -storepass DemoTrustKeyStorePassPhrase
    6.     Add the following parameter to the JAVA_OPTIONS in the start script (setDomainEnv.cmd):
    a.     -Dweblogic.security.SSL.allowSmallRSAExponent=true
    7.     Restart WebLogic (Admin) Server

  • Weblogic 8.1 & Embedded LDAP server

    Hi,
    Is it possible to store user attributes alongwith username & password in the Weblogic 8.1 Embedded LDAP Server?.
    We have about 6 user profile attributes along with the username & password. Does weblogic's embedded LDAP Server
    support this feature.
    Any help will be appreciated.
    thanx,
    Vishwa

    Hi Vishwap,
    Did you ever found out how to manipulate additional information in the embedded LDAP server?
    I am in critical need to do the same.
    Thanks in advance for your comments.
    Zi

  • JMS Foregin server configuration with two Weblogic 8.1 AS

    Hi,
    I have two Weblogic8.1 AS. Box 1 is configured with JMS connection factory and Topic. MDB is deployed on Box 2, which is configured to listen to Box1 JMS Topic. I am running session bean which is publishing JMS message to the Topic on Box1. Also, I have configured JMS foreign Server on Box2 pointing to Box1 connection factory and Topic.
    MDB throws error "Destination not found", while deploying. I read somewhere in the net, that We need Weblogic with Clustering licence for configuring Foreign JMS Server.
    Pls. help me.
    Regards
    Anand Bobade

    hi... can you please send me the java code for messaging part ...... i want to know how you are sending
    message from server and it is listened at different server?
    I am also in same condition....I have configured JMS foreign server on box 1 .....on box2 my MDB is listening....
    My problem is how do i send a message to a foreign queue which is inside JMS Foreign Server..... I am not able to give any JNDI name to this server... so please send me the code from which you are sending the Message.
    Thanks in advance

  • Weblogic server 5.1.0 with sp8 does not work with LDAP (Netscape Directory Server 4.12)

    I have weblogic server 5.1.0 with the sp8 running on Windows NT server 4.0.
    The weblogic server is configured to use LDAP realm (Netscape directory
    server 4.12).
    When I try to run weblogic server and I am getting the following errors:
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.ExceptionInInitialize
    or: weblogic.security.ldaprealm.LDAPRealmException: cannot connect to ldapse
    without a principal to authenticate as
    at weblogic.security.ldaprealm.LDAPDelegate.setupProperties(LDAPDele
    .java, Compiled Code)
    at weblogic.security.ldaprealm.LDAPDelegate.<clinit>(LDAPDelegate.ja
    83)
    at weblogic.security.ldaprealm.LDAPRealm.<init>(LDAPRealm.java:34)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:241)
    at weblogic.security.acl.Realm.getRealm(Realm.java:78)
    at weblogic.security.acl.Realm.getRealm(Realm.java:56)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1756)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    java.lang.ExceptionInInitializerError: weblogic.security.ldaprealm.LDAPRealm
    ption: cannot connect to ldapserver without a principal to authenticate as
    at weblogic.security.ldaprealm.LDAPDelegate.setupProperties(LDAPDele
    .java, Compiled Code)
    at weblogic.security.ldaprealm.LDAPDelegate.<clinit>(LDAPDelegate.ja
    83)
    at weblogic.security.ldaprealm.LDAPRealm.<init>(LDAPRealm.java:34)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:241)
    at weblogic.security.acl.Realm.getRealm(Realm.java:78)
    at weblogic.security.acl.Realm.getRealm(Realm.java:56)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1756)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    And here is the my ldaprealm.properties file
    netscape.server.host=localhost
    netscape.server.port=389
    netscape.server.ssl=false
    netscape.server.principal=uid=admin, ou=Administrators,
    ou=TopologyManagement, o=NetscapeRoot
    netscape.server.credential=password
    netscape.user.dn=ou=People, o=towers.com
    netscape.user.filter=(&(uid=%u)(objectclass=person))
    netscape.group.dn=ou=Groups, o=towers.com
    netscape.group.filter=(&(cn=%g)(objectclass=groupofuniquenames))
    netscape.membership.filter=(&(uniquemember=%M)(objectclass=groupofuniquename
    s))
    By looking at the error message, it seems like the "server.principal" and
    "server.credential" info is not correct.
    But I was able to use the same Netscape Directory server with Welogic 5.1.0
    with sp4, although the ldaprealm.properties file has somewhat different
    format.
    Did anyone have similar problems with sp8?
    Thanks in advance for any suggestions.

    BEA support just gave me the solution.
    They told me to uncomment out the line
    server.alias=netscape
    in the ldaprealm.properties file
    And I am able to start weblogic with my NIS
    Thanks
    "Enrique" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi,
    Have you try to remove the "system" user on the LDAP server?
    Regards.
    "Honghai Zhang" <[email protected]> wrote:
    I have weblogic server 5.1.0 with the sp8 running on Windows NT server
    4.0.
    The weblogic server is configured to use LDAP realm (Netscape directory
    server 4.12).
    When I try to run weblogic server and I am getting the following errors:***************************************************************************
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException:
    java.lang.ExceptionInInitialize
    or: weblogic.security.ldaprealm.LDAPRealmException: cannot connect toldapse
    without a principal to authenticate as
    atweblogic.security.ldaprealm.LDAPDelegate.setupProperties(LDAPDele
    ..java, Compiled Code)
    atweblogic.security.ldaprealm.LDAPDelegate.<clinit>(LDAPDelegate.ja
    83)
    atweblogic.security.ldaprealm.LDAPRealm.<init>(LDAPRealm.java:34)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:241)
    at weblogic.security.acl.Realm.getRealm(Realm.java:78)
    at weblogic.security.acl.Realm.getRealm(Realm.java:56)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1756)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    java.lang.ExceptionInInitializerError:weblogic.security.ldaprealm.LDAPRealm
    ption: cannot connect to ldapserver without a principal to authenticate
    as
    atweblogic.security.ldaprealm.LDAPDelegate.setupProperties(LDAPDele
    ..java, Compiled Code)
    atweblogic.security.ldaprealm.LDAPDelegate.<clinit>(LDAPDelegate.ja
    83)
    atweblogic.security.ldaprealm.LDAPRealm.<init>(LDAPRealm.java:34)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:241)
    at weblogic.security.acl.Realm.getRealm(Realm.java:78)
    at weblogic.security.acl.Realm.getRealm(Realm.java:56)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1756)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)***************************************************************************
    And here is the my ldaprealm.properties file////////////////////////////////////////////////////////////////////////////
    netscape.server.host=localhost
    netscape.server.port=389
    netscape.server.ssl=false
    netscape.server.principal=uid=admin, ou=Administrators,
    ou=TopologyManagement, o=NetscapeRoot
    netscape.server.credential=password
    netscape.user.dn=ou=People, o=towers.com
    netscape.user.filter=(&(uid=%u)(objectclass=person))
    netscape.group.dn=ou=Groups, o=towers.com
    netscape.group.filter=(&(cn=%g)(objectclass=groupofuniquenames))
    netscape.membership.filter=(&(uniquemember=%M)(objectclass=groupofuniquename
    s))////////////////////////////////////////////////////////////////////////////
    By looking at the error message, it seems like the "server.principal" and
    "server.credential" info is not correct.
    But I was able to use the same Netscape Directory server with Welogic5.1.0
    with sp4, although the ldaprealm.properties file has somewhat different
    format.
    Did anyone have similar problems with sp8?
    Thanks in advance for any suggestions.

  • Secure OSB Service with LDAP

    Hi Friends,
    Greetings!
    Is there a way to secure an OSB service so that user will be able to access it only if they pass their AD/LDAP userid and password?
    Note: I know I can add servie accounts. However I want to avoid adding a guge number of users/services acounts manually.
    Thanks,
    Sachin.

    Hi Sachin,
    You have to configure webogic security realm to add AD/LDAP Authentication provider.
    http://onlineappsdba.com/index.php/2010/02/04/how-to-integrate-weblogic-with-oracle-internet-directory-for-login-authentication/
    In order to secure OSB service you can enable HTTPS or have message level security for the same.
    >know I can add servie accounts. However I want to avoid adding a guge number of users/services acounts manually.
    No Need to maintain n nunber of accounts per n number of users.
    use Basic Authentication/Custom Authentication/OWSM username token service policy to to authenticate username/password with AD/LDAP.
    For Authorization: Use Transport/Message Level Authorization at OSB Service level
    Regards,
    Abhinav Gupta

  • Integration iLearning login with LDAP?

    Hi friends,
    Although there exists a Metalink note with this exactly title, (How To Integrate Oracle iLearning and LDAP Note:452425.1) I've searched inside documentation how exactly iLearning does this step. I mean:
    I have to install the iLearning Platform (without installing Oracle Portal) in a Windows environment. Due to customer requirements, the iLearning login must be validated with LDAP validation... I've read that it's done with iLearning WebServices.. but I can't find where exactly is described this procedure. (My knowledgements of web services are limited)
    I'm reading the "Oracle iLearning 5.0: Web Services API Technical Reference " And it's supposed all lis there.. but.. "LDAP" word is not mentioned so... any ideas?
    Thanks a lot.
    Jose L.

    If is not possible that integration, I've thinked in other solution:
    - Create/Publish a WebService in iLearning platform. That webservice woul check in LDAP contents for new users... if there exists new users it would retrieve their information and would create them as iLearning platform users ...
    This could be divided in two tasks:
    - create/publish web service in iLearning to query in LDAP
    - insert the information retrieved as a new user/s into iLearning System.
    [This one.. if is not possible to "program" in the webservice.. could be done through direct INSERT into i Learning tables.. I suppose]
    Any ideas of how to do this?
    Thanks a lot!!!!.
    Jose.

  • 4402 Integration with LDAP

    I need to integrate 4402 Controller with Active Directory.
    If I have two distinguished names, can I use two OU like:
    OU=HQ,OU=Branch1,DC=DC1,DC=com
    Is it OK???
    shall I use spaces between the patrs?
    Please any useful points I should consider them?

    Thank you,
    I already have the configuration guide,
    but this is the first time that I need to do the configuration between the LDAP and controller. and I did not find information about many things like:
    how to got the distinguished names?
    if I have more than one distinguished name, how I should deal with this issue?
    what about EAP configuration? Is there any recommended EAP with LDAP??

  • Is it possible to integrate multiple instances with single OAM (Oracle Acce

    Hi All,
    Please could anyone clarify,is it possible to integrate multiple instance with single OAM(Oracle Access Manager).
    We have two instance in development environment, Among them one is already integrated with OAM 11g,Now we want to integrate the second one with OAM 11g. For this already configured OAM is enough or we need to configure the another OAM separately.
    Application Version is 12.1.1
    Database Version : 11.1.0.7
    OS : RHEL 5.3 64 bit
    Thanks in advance.

    Hi Hussein ,
    I Ran below script,
    ant -f txkEBSAuth.xml \
    -Dwlshosturl=appora.corp.hexaware.com:7021 \
    -Dwlsuser=weblogic \
    -Dwlspwd=password1 \
    -DuseDefaults=true \
    -DforceDataSource=true \
    -DdataSourceName=DEV \
    -DdataSourceJNDIName=jndi/DEV \
    -DasadminUser=SSO11GLOGIN \
    -DasadminPassword=welcome1 \
    -DdbcFile=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/DEV.dbc \
    -DserverName=AdminServer \
    -DdeploymentName=ebsauth_DEV \
    -DfndauthWarFile=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/fndauth.war \
    -DplanPath=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/plan/plan.xml \
    -DforceDeployment=true \
    -DSSOServerRelease=11 \
    -DSSOServerURL=http://appora.corp.hexaware.com:14100 \
    -DWebgateLogoutURL=http://appora.corp.hexaware.com:7780/public/oacleanup.html \
    -DlogConfigfile=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/sample/logging.properties
    -bash: ant: command not found
    Thanks in advance

  • XML Publisher 5.6.2 with LDAP integration

    Hi,
    I have XMLP 5.6.2 installed on a tomcat instance.
    I wish to integrate the same with a LDAP source - Sun Iplanet directory server.
    For the user docs that I read, it is for Oracle LDAP and it is different for Iplanet.
    Is XMLP not supported for Iplanet directory server?

    Just to add some more context here:
    Using the SUN One console, I created all the roles mentioned (XMLP_ADMIN, XMLP_DEVELOPER...etc) in the user doc, and added users from the directory server to these roles.
    Then, I modified the xmlp-config file like:
    <property name="LDAP_PROVIDER_URL" value="ldap://millvalley:2389/"/>-->
    <property name="LDAP_PROVIDER_ADMIN_USERNAME" value="cn=Directory Manager"/>
    <property name="LDAP_PROVIDER_ADMIN_PASSWORD" value="oracle"/>
    <property name="LDAP_PROVIDER_USER_DN" value="cn=Rohit Valiveti, ou=Sales, ou=Dealer1k1, ou=Latin America, ou=Ford, o=company,c=us"/>
    The DS is working, I can connect via any LDAP client.
    I also restarted the tomcat and the Iplanet Directory Server.
    But now i am unable to login at all. The catalina.out file says:
    javax.naming.AuthenticationException: [LDAP: error code 32 - No Such Object]

  • EDSPermissionError(-14120) problems with LDAP, SSL and Directory Utility

    Hello everyone,
    Apologies for the repost but I think I may have made a mistake by posting this originally in the Installation, Setup and Migration forum instead of the Open Directory forum. At least I think that may be why I didn't receive any responses.
    Anyway, I've been trying to get my head around Open Directory and SSL as they are implemented in Mac OS X Server 10.5 Leopard, and have been having a few issues. I would like to set up a secure internal infrastructure based around a local Certificate Authority that signs certificates for other internal services like LDAP, email, websites, etc.
    I only have one Mac OS X Server and it is kind of a small office so I have gone against best practice and simply made it a CA (through Keychain Utility). I then generated a self-signed SSL certificate through Server Admin, and used the "Generate CSR" option to create a Certificate Signing Request. This went fine, but I did have some problems signing it with the CA, because the server documentation suggested that once I signed it it would pop open a Mail message containing the ASCII version of the signed certificate - it did not, and it took me a loooong time to realize that I could simply export the copy of the signed certificate it put in my local Keychain on the server as a PEM file and paste this back into the "Add Signed or Renewed Certificate from Certificate Authority" dialog box in Server Admin. Hopefully this can be fixed in a forthcoming patch, but I thought I would mention it here in case anyone else is stuck on this issue.
    Once I did this I was able to use this certificate in the web server on the same machine and sure enough I was able to connect to it with with clients who had installed the CA certificate in their system Keychains without getting any error messages - very cool.
    However, I haven't had quite as much luck getting it going with LDAP/Open Directory. I installed the certificate there as well, but have run into a number of problems. At first I could not get clients (also running 10.5.2) to talk to the server at all over SSL, receiving an error in Directory Utility that the server did not support SSL. I eventually discovered that the problem seemed to lie in the fact that the OpenLDAP implementation on Leopard is not tied in with the system Keychain, necessitating some command-line voodoo to install a copy of the CA cert in a local directory and point /etc/openldap/ldap.conf at it, as documented here: http://www.afp548.com/article.php?story=20071203011158936
    This allowed me to do an ldapsearch command over SSL, and seemingly turn SSL on on clients that were previously bound to the directory, and additionally allowed me to run Directory Utility on new clients and put in the server name with the SSL box checked and begin to go through the process of binding. Once this seemed to work, I turned off all plaintext LDAP communication and locked down the service by checking the "Enable authenticated directory binding," "Require authenticated binding," "Disable clear text passwords," and "Encrypt all packets" options in Server Admin. However, I am now running into a new problem, specifically that I cannot successfully bind a local account to a directory account over SSL.
    Here's what happens:
    1) I run Directory Utility, (or it auto-runs) and add a server, typing in the DNS name and clicking the SSL box.
    2) I get asked to authenticate, and type in user credentials, including computer name (incidentally, should this be a FQDN or just a hostname?)
    3) Provided I put admin credentials in here and not user-level credentials, I get taken to the "Do you want to set up Mail, VPN, etc.?" box that normally appears when you autodiscover or connect to an Open Directory server.
    4) I click through, and am asked for a username and password on the server, as well as the password for my local account.
    5) When I put this information in, I get a popup with the dreaded "eDSPermissionError(-14120)" and it fails.
    Checking the logs in Server Admin reveals nothing special, and while I have seen a couple other threads on this error and various other binding problems:
    http://discussions.apple.com/thread.jspa?messageID=5967023
    http://discussions.apple.com/message.jspa?messageID=5982070
    these have not solved the problem. In the Open Directory user name field I am putting the short username. I have tried putting [email protected] and the user's longname but this fails by saying the account does not exist. For some reason it does seem to work if I bind it to the initial admin account I created, but no other user accounts.
    If I turn all the encryption stuff off I am able to join just fine, so I am suspecting that the error may lie in some other "under the hood" piece of software that doesn't get the CA trust settings from the Keychain or the ldap.conf file, but I'm stymied as to which piece of software this might be. Does anyone have any clues on what I might be able to do here?
    Thanks,
    Andrew

    Hard to tell what is happening without looking at the application
    source, knowing what OS & hardware you're using etc. You might want to
    try running with different JVM versions to see if it's actually the VM
    that is the problem. If you have a support contract with BEA you could
    ask support to help you diagnose this.
    Regards,
    /Helena
    Ayub Khan wrote:
    I have an application running on Weblogic 8.1 ( with JRockit as the JVM). This
    application in turns talks to an iPlanet Directory server via LDAP/SSL. The problem
    seems to happen on loading the machine..the performance progressively gets worse
    and after a couple of seconds, all the threads stop responding. I checked the
    heap, cpu and the idle threads in the execute queue and there is nothing there
    to trigger alarms...there are quite a few idle threads still and the heap and
    the cpu utilization seem OK. On doing a thread dump, Is see that all the other
    threads seem to be in a state where they are waiting for data from LDAP and it
    is basically read only data that they are waiting on.
    Does anyone know what it is going on and help point me in the right direction.
    -Ayub

  • How to allow user chaning his password in OBIEE 11g weblogic custom LDAP?

    Hi,
    How to allow user chaning his password in OBIEE 11g weblogic custom LDAP?
    I need to give user an option to do so, without the intervention of any Administrator. I also do not want to make user a Administrator else he will be able to login in weblogic and can do any damages unknowingly.....
    Regards,
    Rahul

    Hi,
    Replace the line in the instantconfig.xml
    <WebMessage name=”kmsgChangePasswordLink”><!–<HTML><sawm:messageRef name=”kmsgUIChangePassword”/></HTML>–></WebMessage>
    with
    <WebMessage name=”kmsgChangePasswordLink”><HTML><sawm:messageRef name=”kmsgUIChangePassword”/></HTML></WebMessage>

  • How to integrate WPF NotifyIcon with Caliburn.Micro

    Hi, can anyone help with my question? I've asked 20 days ago...
    http://stackoverflow.com/questions/27588784/how-to-integrate-wpf-notifyicon-with-caliburn-micro
    Any insights?
    Take a look at WPF FlashMessage
    About.me

    Hello Joba Diniz,
    I'm afraid you need to contact the writer of the two libraries to consult this issue:
    http://www.hardcodet.net/wpf-notifyicon
    https://caliburnmicro.codeplex.com/
    After my research they are all third party libraries and we have no idea about its content.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can i use PXIe-1073 with an embedded PXIe controller PXIe-8108

    I have a PXI express chassis PXIe-1073 with an integrated controller MXI-Express controller PCIe-8361. I now want to use the chassis as a standalone system with an embedded controller.
    (a)Can i use PXIe-1073 chassis with PXIe-8108 embedded controller
    (b)Can i use a windows based laptop to control the PXIe-1073 via the PCIe-8361 integrated controller.

    Hello kanad,
    The PXIe-1073 is a MXI-integrate chassis.  This means that the MXI card that would normally go into the controller slot (slot 1) is built into the chassis.  The PCIe-8361 or Expresscard8360 are placed into the desktop or laptop, respectively, and connect to the chassis.  The cards in the PXIe-1073 then appear as if they are part of the desktop of laptop.
    Since the controller is built into the chassis, the PXIe-1073 does not have a slot 1.  Controllers, such as the 8108 can only be plugged into slot 1.  Therefore, the PXIe-1073 can only be controlled by the desktop or laptop MXI link.  It cannot run standalone with an embedded controller.
    Consider reading page 1-3 and 1-6 in the manual below:
    NI PXIe-1073 User Manual and Specifications
    Regards, 
    George T.
    Applications Engineering Specialist
    National Instruments UK and Ireland

Maybe you are looking for

  • Apple shipped my iPhone at a different address

    Hi, iPhone 6 problem I had connectivity issue (WiFi) with my iPhone 6 and I called Apple to setup repair. They were very nice in helping me out to resolving the issue. But when it didn't work, they setup a repair and sent me an empty box in which I s

  • How to add Total Quantity in Inbound and Outbound Delivery screen

    Hi, I want to add Total quantity field in Inbound and Outbound Delivery screens. In document flow i can see the line item quantities in ALV Format, but if i select Display the totals above the entry check box in Change Layout--> Display, i didn't see

  • Help with pulling files from PlayBook

    I have been trying for a while now to pull the files from my husbands PlayBook that has a corrupt OS per BB phone support. I had pretty much come to this conclusion but had to hear it from someone else before I decided this too. Well....per BB suppor

  • Dynamic PDF Creator Replacement Widget

    Hi, I'm trying figure out I can get a widget similar to Dynamic PDF Export that was sold by CaptivateDev.com - eLearning Development with Adobe Captivate Now that they closed there door...I'm stuck it's the exact widget I needed. My goal is to captur

  • Google Docs offline / Adobe Reader

    I'm looking for a way to read PDF files in Galaxy Nexus. I've installed Google Docs and Adobe Reader. Google Docs allows offline caching; but I'm not sure where it saves the file in the device. When I connect it to a computer, the folder tree doesn't