-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

for ldap3:
<cfldap action="QUERY"
        name="entrytest1"
        attributes="dn, subschemasubentry"
        start=""
        scope="BASE"
        startrow="1"
        filter="objectclasss=*"
        server="xxx.xxx.xxx.xxx">
        
<cfoutput query="entrytest1">
        DN: Root DSE<br>
        subschemaSubEntry: #subschemasubentry#<BR><BR>
</cfoutput>

if your ldap version is < 3, try name,value as the attibute list:
<cfldap action="QUERY"
        name="entrytest2"
        attributes="name, value"
        scope="subtree"
        startrow="1"
        server="172.16.0.105">
        
<cfoutput query="entrytest2">
        DN: #name#  VALUE: #value<br>
</cfoutput>
HTH
Mike

- -----Original Message-----
From:   Dave Hannum [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 31, 2000 6:29 AM
To:     CF-Talk
Subject:        OT:  LDAP

Is there any way to dump the column names from an LDAP table?  For
some
unknown reason, the person who set up our LDAP used an unconventional
naming
scheme, and I don't know what all is in there.

Thanks,
Dave


- ----------------------------------------------------------------------
- --------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or
send a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]

-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com>

iQA/AwUBOf7wgXYFmKomMlANEQL/LQCfSxibFSumqiVlzLfFQXVBFRSthD0An3q/
jrRJ8qsZQDMskspOKm4TJDch
=8AXa
-----END PGP SIGNATURE-----
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to