Forms6i Connectivity using Directory Server

I installed directory server in my organisation to centralize the service names. When i connect with db using 9i SQL prompt it works fine but when i try to connect through froms 6i the connection does not go through. I placed LDAP and SQL NET files in the NET80 ----- ADMIN folder
Any idea

Hi, try to ask at Sun Java System Directory Server forum:
http://swforum.sun.com/jive/forum.jspa?forumID=13

Similar Messages

  • Access Manager Failed to Connect to Directory Server

    Dear All,
    I have problem with Directory Server connection in Access Manager. This happened in Production site, all application that integrated with Oracle Access Manager (OAM) for Single Sign On are not accessible after the Directory Server connection problem occur in OAM. The problem has only started occurring suddenly, before it the all service including the OAM and Directory Server is running well. Below are the error messages that appear in WebGate log file (ohs1.log) and OAM log file (oblog.log) :
    >> OHS/WebGate (ohs1.log) :
    [2014-01-21T09:25:12.0053+07:00] https://community.oracle.com/OHS https://community.oracle.com/OHS-9999 https://community.oracle.com/apache2entry_web_gate.cpp host_id: <WEBGATE_HOSTNAME> [host_addr:10.10.254.178] [ecid: 004w76rlRYt0NuapxKL6iW0000sE001oGY] The host and port from the requested URL could not be found in the Policy database. Check if the corresponding directory service is up.
    >> OAM (Oblog.log):
    2014/01/15@03:12:23.833746      [30573 30606 | tel:30573%20%20%2030606]   DB_RUNTIME      ERROR  0x000008C1      ../ldap_connection_mngr.cpp:443 "Failed to connect to directory server" lpszHost<LDAP_HOSTNAME_VIA_LOADBALANCER> port<LDAP_PORT_VIA_LOAD_BALANCER>
    The OAM using the Load Balancer between the LDAP Directory Server to OAM's component. When the error appears, there are no problem with the Load Balancer and all of Directory Sever services is up. There are two Directory Server servers in Multi Master Replication and 14 WebGate servers that integrated with OAM. Is there a limitation number of WebGate for integrated to the OAM?
    I have tried to set some parameters in OAM configuration to solve this problem. I set the Maximum Connection of Directory Server parameter to 10 value (in OAM Console), the LDAPOperationTimeout paramater to 1 hour value and the LDAPMaxNoOfRetries parameter to 2 value (in the globalparams.xml). After set these parameters, the error is not appear in some days, but suddenly appear again in the same error message. May be set these parameters is not appropriate solution for the problem or the value that I set is not correct. Any experience with this?
    I still don't know what the root cause of this problem. Restart all of OAM services (including the WebGate) is temporary solution when the error appear.
    Any idea for this problem?
    Thanks in advice.

    Hi Jun-Y,
    Thank you for your answer.
    What do you means with the Directory Server's idle timeout is the "Idle Timeout" parameter in LDAP Client Control Settings?
    I use Oracle Directory Server Enterprise 11.1.1.5.0. Now, the Directory Server's idle timeout parameter is "unlimited" value.
    If the idle timeout of the load balancer set 1 hour, it means that I must change the directory server's idle timeout to be less than 1 hour. Isn't right?

  • Connect IPlanet Directory Server(5.0) with ADSI

    Has anyone ever had to connect to a iPlanet Directory Server 5.0 with ADSI?
    I can retrieve the entries(user's information), but I can't add the
    user-defined objClass and attributes to entries(user).
    If you know, please kindly to give me some hints about this.
    Many Thanks,
    Kat

    Make sure the user-defined schema is present on the server before you try to use it. Also you will need appropriate permissions for updating and will very likely need to bind before you try to update.

  • Creating Peer to Peer connections using intermediate server

    I want to connect two clients (via TCP/IP sockets in Java). The clients can discover each other using an intermediate server. Once the clients discover each other, there should not be any involvement of the server.
    I made some study about this and found many people suggesting JXTA. But I'd like to create the protocol myself from scratch (because in future I might have to implement the same using WebSockets as well (when my client is a Browser)). Currently, my clients can be Desktop applications or mobile applications.
    My questions are:
    1. How will clients discover each other at the server? If the server sends the global IP address of the clients to each other, will that information be enough to create a peer-to-peer connection? What if the clients are on the same LAN network and the server is on a different WAN?
    2. Client have dynamic IP address. Can their IP change all of a sudden even if it has an active socket?
    3. Is peer-to-peer connection is reliable for transfer of non-continuous data (like in chat application)?
    [*NOTE*: by peer-to-peer connection I mean establishing a client-server TCP/IP socket connection by making one of the client as temporary socket-server]
    Thanks in advance.

    two clients (via TCP/IP sockets in Java). The clients can discover each other using an intermediate server.If you only have 2 clients, it's hardly worth putting a server between them; a client 'discovering' the server is as much work as one client discovering the other.

  • No Airport Connection Using Tiger Server

    Using clean install Tiger Server on Pudding Basin iMac
    Can connect to the internet via cable connection from router but cannot configure Airport. iMac can "See" the network but when I enter the WEP code, it says that there is an error connecting to the network.
    I am sure that it is a box that I have left un-ticked or ticked but since I do not understand the terminology, I do not know where to start. I thought that I would just use a 'Wizard' to get going but I cannot find one.
    Is there a kindly soul on this forum who can point me in the right direction?
    Warmly,
    Malcolm

    The ethernet I would not know of, but I have had this problem before too with the wireless. Infact, 1 of my computers had this problem and one of them worked perfectly fine too. I also have a 2-wire gateway. I use a WPA pass-code.
    It would tell me connection timeout and all sorts of other stuff. I restarted the 2-wire device and that worked for me. Then I decided to use time capsule as a second wireless network so if 2 wire didn't work for my computer, I would be able to switch to the time capsule (which would be using double-nat, which is easy to set up), if the network didn't work. If you had time capsule and wanted only 1 wireless network, then go to http://home click on wireless networks and on the right side of the screen should be a wireless disable button.
    *This shouldn't be a problem with the iMac* unless you cant connect to any network like your neighbors of something.

  • TLS connection to directory server

    public int tls(String host, String port, String uname, String passwd,
                   boolean anonymous, boolean connOnly,boolean DTOnly) {
              setHost(host.trim());
              setPort(port.trim());
              setPasswd(passwd.trim());
              setUname(uname.trim());
              String ldapURL = LDAP + host.trim() + COLON + port.trim();
              env.put(Context.INITIAL_CONTEXT_FACTORY,LDAPCTX);
                   //set security credentials
              env.put(Context.SECURITY_AUTHENTICATION, SIMPLE);
              if (anonymous == false) {
                   env.put(Context.SECURITY_PRINCIPAL, uname.trim());
                   env.put(Context.SECURITY_CREDENTIALS, passwd.trim());
              //connect to my domain controller
              env.put(Context.PROVIDER_URL, ldapURL);
              StartTlsResponse tls=null;
              LdapContext ctx;
              try {     
                   ctx = new InitialLdapContext(env, null);
                   //          Start TLS
                   //StartTlsResponse tls;
                   try {                    
                        /* VersionHelper helper = VersionHelper.getVersionHelper();
                        Class clas = helper.loadClass("com.sun.jndi.ldap.ext.StartTlsResponseImpl");
                        tls = (StartTlsResponse) clas.newInstance();*/
                        /*tls=null;
                        if(tls!=null)
                        JOptionPane.showMessageDialog(null, tls.toString());*/
                        tls = (StartTlsResponse) ctx.extendedOperation(new StartTlsRequest());
                        System.out.println("TLS-> "+tls.toString());
                        /*JOptionPane.showMessageDialog(null, tls.toString());*/
                        tls.negotiate();
                        ctx.addToEnvironment(Context.SECURITY_AUTHENTICATION, SIMPLE);
                        ctx.addToEnvironment(Context.SECURITY_PRINCIPAL,uname.trim());
                        ctx.addToEnvironment(Context.SECURITY_CREDENTIALS, passwd.trim());
                        ctx.addToEnvironment(Context.PROVIDER_URL, ldapURL);
                        setCtx(ctx);
                        if(connOnly)
                             if(DTOnly==false){
                                  // Create the thread
                             Thread thread = new MyThread(tls);
                             // Thread can be set as daemon by the creator
                             thread.setDaemon(true);
                             // Start the thread
                             thread.start();
                        ctx.close();          
                        //tls.close();
                        return CONNECTION_SUCCESSFULL;
                   /*catch (CommunicationException ne1) {
                        System.err.println(ne1.getLocalizedMessage());
                        return 3;
                   catch (NamingException ne) {
                        ne.printStackTrace();
                        System.err.println(ne.getLocalizedMessage());
                        File fp = new File("C:\\tp.txt");
                        FileOutputStream outputStream= new FileOutputStream(fp);
                        PrintWriter printWriter = new PrintWriter(outputStream);
                        ne.printStackTrace(printWriter);
                        printWriter.close();
                        outputStream.close();
                        return 4;
                   catch (Exception e) {
                        e.printStackTrace();
                        System.out.println("Any other exception");
                        e.printStackTrace();
                        return ERROR;
                   //ctx.close();
              catch (InvalidNameException ie){
                   //ie.printStackTrace();
                   System.out.println("InvalidNameException :Username is incorrect");
                   return UNAME_PASSWORD_ERROR;
              catch (AuthenticationException ex)
                   System.out.println("Username or Password is incorrect");
                   //ex.printStackTrace();
                   return UNAME_PASSWORD_ERROR;
              catch (CommunicationException ce){
                   //ie.printStackTrace();
                   System.out.println("Connection Refused");
                   return CONNECTION_REFUSED;
              catch (NamingException e)
                   System.out.println("Host or Port is incorrect");
                   //e.printStackTrace();
                   return HOST_PORT_ERROR;
              catch (Exception e) {
                   System.out.println("Any other exception");
                   e.printStackTrace();
                   return ERROR;
         }

    Why did you post twice? Why didn't you use code tags? Why didn't you post a question? What is your problem?

  • Applet problem connecting to directory server

    When my applet loads I get the following message:
    "java.security.AccessControlException: access denied (java.net.SocketPermission <servername> resolve)"
    I'm fairly new to web programming so I may be missing something obvious. I'm taking java code that works perfectly in the "DOS" environment and migrating to the web.
    Anyone know how to fix this?

    Your Applet will need to be a signed applet
    if you need to connect to an IP other than the
    one that launched the Applet. see jarsigner,
    keytool etc..
    good luck

  • Failure to connect to directory server

    [root@vuwunicvdseem01 ldif]# ldapsearch -h localhost -b dc=vuw,dc=ac,dc=nz "(uid=jonesst1)" SASL/EXTERNAL authentication started
    ldap_sasl_interactive_bind_s: Unknown authentication method (-6)
    additional info: SASL(-4): no mechanism available:
    [root@vuwunicvdseem01 ldif]#

    Does not appear to be iptables
    [root@vuwunicvdseem01 ~]# iptables -L -n |grep 389
    ACCEPT tcp -- 130.195.87.0/24 0.0.0.0/0 tcp dpt:389
    ACCEPT tcp -- 130.195.245.0/24 0.0.0.0/0 tcp dpt:389
    ACCEPT tcp -- 130.195.246.0/24 0.0.0.0/0 tcp dpt:389
    [root@vuwunicvdseem01 ~]# iptables -L -n |grep 127
    ACCEPT all -- 127.0.0.1 127.0.0.1
    ACCEPT all -- 127.0.0.1 127.0.0.1
    [root@vuwunicvdseem01 ~]# /usr/bin/ldapsearch -vvv -h vuwunicvdseem01 -p 389 -s base -b '' "(objectclass=*)"localhost
    ldap_initialize( ldap://vuwunicvdseem01:389 )
    ldap_sasl_interactive_bind_s: Can't contact LDAP server (-1)
    [root@vuwunicvdseem01 ~]# /usr/bin/ldapsearch -vvv -h vuwunicvdseem01 -p 389 -s base -b '' "(objectclass=*)" ldap_initialize( ldap://vuwunicvdseem01:389 )
    ldap_sasl_interactive_bind_s: Can't contact LDAP server (-1)
    [root@vuwunicvdseem01 ~]# /usr/bin/ldapsearch -vvv -h localhost -s base -b '' "(objectclass=*)"
    ldap_initialize( ldap://localhost )
    ldap_sasl_interactive_bind_s: Can't contact LDAP server (
    [root@vuwunicvdseem01 ~]# service iptables stop
    Flushing firewall rules: [  OK  ]
    Setting chains to policy ACCEPT: filter [  OK  ]
    Unloading iptables modules: [  OK  ]
    [root@vuwunicvdseem01 ~]# /usr/bin/ldapsearch -vvv -h vuwunicvdseem01 -p 389 -s base -b '' "(objectclass=*)"
    ldap_initialize( ldap://vuwunicvdseem01:389 )
    ldap_sasl_interactive_bind_s: Can't contact LDAP server (-1)
    [root@vuwunicvdseem01 ~]# /usr/bin/ldapsearch -vvv -h localhost -s base -b '' "(objectclass=*)"
    ldap_initialize( ldap://localhost )
    ldap_sasl_interactive_bind_s: Can't contact LDAP server (-1)
    [root@vuwunicvdseem01 ~]#
    [root@vuwunicvdseem01 ~]# iptables -L
    Chain INPUT (policy ACCEPT)
    target prot opt source destination
    Chain FORWARD (policy ACCEPT)
    target prot opt source destination
    Chain OUTPUT (policy ACCEPT)
    target prot opt source destination

  • Can't start NT service for Directory Server using other acc. than LocalSys.

    Hi!
    I'm using Directory Server 5.1 on a Windows 2000 machine.
    I wrote a Plug-In for DS that needs Administrator Access to the NT Domain. So I tried to run the DS-Service as Administrator but the service can not start. I just keeps in status "starting...".
    I don't get any error message and the errorlog doesn't contain anything.
    Has anyone an idea?
    Thanks!
    Florian

    I forgot to tell one thing: I use SSL, without SSL I do not have this problem. Perhaps it's only the popup I get when starting DS, where I have to enter the certificate password?

  • Directory Server and Samba 3 PDC

    I'm trying to connect to directory server from samba 3
    # ./smbpasswd -w secret
    # ./net getlocalsid
    it says:
    bash-3.00# ./net getlocalsid
    [2006/04/29 13:29:10, 0] lib/smbldap.c:smbldap_connect_system(890)
    failed to bind to server ldap://merlin.cotarh.local with dn="cn=admin,dc=cotarh,dc=local" Error: Inappropriate authentication
    [2006/04/29 13:29:25, 0] lib/smbldap.c:smbldap_search_suffix(1346)
    smbldap_search_suffix: Problem during the LDAP search: (unknown) (Timelimit exceeded)
    SID for domain MERLIN is: S-1-5-21-3865381809-2382358429-1619658665
    What's wrong?

    Once the user has authenticated with Kerberos, the token can be used with LDAP using the SASL authentication with GSSAPI / Kerbv5 mechanism.
    How to configure Directory Server 5.2 for this is fully documented in the Chapter 11 - Managing Authentication and Encryption of the Administration Manual.
    <http://docs.sun.com/source/817-5221/ssl.html#wp20166>
    Regards,
    Ludovic.

  • SNMP on Directory Server 4.15

    Hi all
    we are using directory server version 4.1x , on solaris 7 running on sparc. now i want to enable the
    SNMP for directory server to get the stat data.
    i have already installed the UCD-SNMP now known as Net-SNMP on the same server and it's working fine and i am monitoring the CPU/Mem etc resources of the server using it.
    so kindly some one pls tell me or show me some points which explains how to enable and use SNMP's OIDs to get details from the directory server.
    i have gone through couple of docs but not getting the picture clear enough to implement this
    warm regards
    Prashant

    Scott Lawson <[email protected]> wrote in news:3BCAA419.E322F958
    @sghms.ac.uk:
    >
    I had an idea that it might have been running out of available
    connections so I set it to close idle
    connections after 300 seconds. Is there any docs on tuning the resources
    for the server or for
    identifying if you have a resource problem?4.15 hotfix solves a problem with FDs running out (apparently .... we are
    still testing0.
    /* Christopher Burke - Spam Mail to [email protected]
    |*
    \* Real mail to cburke(at)craznar(dot)com

  • Error -14910 when trying to connect to network server

    A user has a brand new (2 weeks old) Mac Pro 3.00GHZ quad running 8GB RAM that has started acting very strangelly this morning. I will break it down as it happened...
    - When logging on, it brought up the connect to server dialogue BEFORE the log on screen. It would not allow us to cancel the screen for ages, but eventually the third restart cleared that.
    - As soon as we logged on, it connected automatically to the server (without prompting for any password). From within apps, it was as if the server was not there, but a second connect would make the folders available. When trying to disconnect the first instance of the server, it prompted for an admin password and then said it was unable to disconnect.
    - Ran a permission repair, which cleared that issue but presented me with a far worse issue...The user can no longer connect to the server with his username; Error -14910
    - I then tried a whole bunch of other usernames to connect to the server but all failed. EVENTUALLY I was able to connect using the server's admin account, but obviously this is not ideal for my user.
    Other info: OS 10.4.7 on Mac Pro and Server
    Server is an XServe
    I can supply any more information needed, This is urgent, so any help at all gratefully recieved

    Time error. Sorted

  • Not able to change the path to trusted keystore for connection to directory

    Hi,
    I am trying to make a secured connection to directory server through JNDI.
    env.put(
    Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory"
    if(isSSLEnabled){
    env.put(
    Context.PROVIDER_URL,
    "ldap://" + host + ":" + securePort
    else{
    env.put(
    Context.PROVIDER_URL,
    "ldap://" + host + ":" + port
    env.put(Context.SECURITY_AUTHENTICATION , "simple");
    env.put(Context.SECURITY_PRINCIPAL , user);
    env.put(Context.SECURITY_CREDENTIALS , password);
    if(isSSLEnabled)
    env.put(Context.SECURITY_PROTOCOL, "ssl");
    System.setProperty ("javax.net.ssl.trustStore", fileLocation);
    System.setProperty ("javax.net.ssl.trustStoreType", "jks");
    try {
    ctx = new InitialDirContext(env);
    System.clearProperty ("javax.net.ssl.trustStore");
    System.runFinalization();
    retValue = BIND_OK;
    System.clearProperty ("javax.net.ssl.trustStore");
    The location to the keystore file is populated through a file browser.But the problem is that i am not able to clear System.setProperty ("javax.net.ssl.trustStore", fileLocation); (even through System.clearProperty)the location to trusted file. Everytime it takes the path to the first keystore and all other changes to the path are not reflected.
    Does anyone knows the problem. Is it with JNDI or JVM?
    Thanks in advance,
    Sharat.

    http://am.martinmarinov.info/ohapan.php?i=pilej
    http://am.martinmarinov.info/ohapan.php?i=pilej
    http://am.martinmarinov.info/ohapan.php?i=pilej

  • Directory Server Console is slow

    When I try to connect to Directory Server 5.1 with the console (same machine), it is ridiculously slow to respond. The machine's performance overall is fine, but console takes several minutes to respond to each mouse click.

    Greg,
    Sometimes reverse lookups pose a problem if not all of the clients are in DNS.
    Check the attribute "nsadminaccesshosts" of the following dn: "cn=configuration, cn=admin-serv-<host>, cn=Netscape Administration Server, cn=Server Group, cn=<hostname>, ou=<administration-domain>, o=NetscapeRoot"
    Per default it gets set to "*.<your_domain>".
    Try to remove the value of this attribute. Does this improve the performance (adminserver must be restarted)?
    If you have security concerns doing this, you can still restrict access to the administration server by specifying the IP-addresses (attribute: "nsadminaccessaddresses").
    Regards,
    Jakob.

  • OSB to MQ, using Foreign Server

    Hi All,
               I am working on OSB to MQ connectivity, using Foreign Server. I was able to establish the connectivity using Sun JDK 1.6. However when I JRockit 1.6 is used, connectivity is not working. There are stuck threads in Weblogic, when weblogic has to invoke the MQ Jars. Any suggestions, will be greatly appreciated.
    Regards.

    Hi
    Thats very strange behavioural diffrerence between Sun & Jrockit.
    Take it you have gone through the stuck threads and realised threads were marked stuck when trying to invoke / load MQ jars? can you copy the stuck threads referring that please.
    Have you tried loading those MQ jars in the classpath of the server .. That way all the necessary jars/classes will be available local to the instance
    and can be located by classloader without much delay.
    HTH
    Sri

Maybe you are looking for