http://qs321.pair.com?node_id=924465


in reply to Re^6: Net::LDAP q
in thread Net::LDAP q

So what happens under Net::LDAP. Was "1000" was actually being treated as less than "500"?

Update:: Did some testing and answered my own question. I populated a few uid fields in some sample data, then ran a few ranging queries using Net::LDAP. Seems that (under open LDAP at least), not only can you get different result via ldapsearch and Net::LDAP, but the LDAP server just silently ignores the query. No errors or other status information.

Replies are listed 'Best First'.
Re^8: Net::LDAP q
by fisher (Priest) on Sep 07, 2011 at 08:32 UTC
    So what happens under Net::LDAP. Was "1000" was actually being treated as less than "500"?

    No, not at all. The server just didn't knew how to actually _compare_ in this way. I did some research and found that, in fact, there is no predefined attributes in openldap that can be compared by 'less than' or 'greater than' comparators. You have to define your own attributes =)

    As to difference in behaviour, ldapsearch untility shows similar results if you give it the right search filter - that is,

    ldapsearch -h 192.168.9.111 -D "cn=root,dc=lomonosov,dc=parallel,dc=ru +" -w "rootpw" -b "ou=slurm,dc=lomonosov,dc=parallel,dc=ru" "(&(cn>=60 +0)(cn<=1000))"
    i.e., it shows _nothing_ =)