[Home] [Help]
676: l_entry := dbms_ldap.first_entry(ldapSession, l_message);
677:
678: while l_entry is not null loop
679: l_dn := dbms_ldap.get_dn(ldapSession, l_entry);
680: l_result1 := dbms_ldap_utl.normalize_dn_with_case(l_dn, 1, l_dn_norm);
681: l_result2 := dbms_ldap_utl.normalize_dn_with_case(orclAppName, 1, l_orclAppName_norm);
682: if ((l_dn_norm = l_orclAppName_norm) AND (l_result1 = DBMS_LDAP_UTL.SUCCESS) AND (l_result2 = DBMS_LDAP_UTL.SUCCESS)) then
683: success := 1;
684: end if;
677:
678: while l_entry is not null loop
679: l_dn := dbms_ldap.get_dn(ldapSession, l_entry);
680: l_result1 := dbms_ldap_utl.normalize_dn_with_case(l_dn, 1, l_dn_norm);
681: l_result2 := dbms_ldap_utl.normalize_dn_with_case(orclAppName, 1, l_orclAppName_norm);
682: if ((l_dn_norm = l_orclAppName_norm) AND (l_result1 = DBMS_LDAP_UTL.SUCCESS) AND (l_result2 = DBMS_LDAP_UTL.SUCCESS)) then
683: success := 1;
684: end if;
685: l_entry := dbms_ldap.next_entry(ldapSession, l_entry);
678: while l_entry is not null loop
679: l_dn := dbms_ldap.get_dn(ldapSession, l_entry);
680: l_result1 := dbms_ldap_utl.normalize_dn_with_case(l_dn, 1, l_dn_norm);
681: l_result2 := dbms_ldap_utl.normalize_dn_with_case(orclAppName, 1, l_orclAppName_norm);
682: if ((l_dn_norm = l_orclAppName_norm) AND (l_result1 = DBMS_LDAP_UTL.SUCCESS) AND (l_result2 = DBMS_LDAP_UTL.SUCCESS)) then
683: success := 1;
684: end if;
685: l_entry := dbms_ldap.next_entry(ldapSession, l_entry);
686: end loop;