Dan beauchemin wrote: > <cfldap action="QUERY" > name="auth2" > attributes="samaccountname" > start="CN=Students,OU=_Groups,OU=_Users,DC=xx,DC=xx" > filter="samaccountname=dbeauchemin"
You are only returning the 'samAccountName' attribute which is just the account name of the Group itself. You either need to query the qroup record (as you are) and examine its 'member' attribute to see if contains the desired user or query the user record and examine its 'memberOf' attribute to see if it contains the desired group. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:300110 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

