Modify the file so that it appears as follows:
<HEAD>
<TITLE>LDAP schema</TITLE>
</HEAD>
<BODY>
<CFLDAP
NAME="EntryList"
SERVER="testldap.company.com"
ACTION="QUERY"
ATTRIBUTES="dn, subschemasubentry"
SCOPE="BASE"
FILTER="objectclass=*"
START=""
>
<CFOUTPUT QUERY="EntryList">
DN: Root DSE<BR>
subschemaSubEntry: #subschemasubentry#<BR><BR>
</CFOUTPUT>
<P><P><P>
Use that DN to get the schema attributes...
<P>
<CFLDAP NAME="EntryList2"
SERVER="testldap.company.com"
ACTION="Query"
ATTRIBUTES="dn, objectclasses, attributetypes"
SCOPE="BASE"
FILTER="objectclass=*"
START=#EntryList.subschemasubentry#
>
<CFOUTPUT QUERY="EntryList2">
DN=#dn#<BR>
objectClasses: #objectclasses#<BR><BR><BR>
attribute Types: #attributetypes#<BR><BR>
</CFOUTPUT>
</BODY>
</HTML>