hello,

first i must say hello and that i´m quite new to kix.

we run a quite large windows 2003 active directory with our own schema extension because we need some fields for specific user settings. we have some normal attributes and some multivalue. i have now problems reading the multivalue from active directory.

i use the function "fnLDAPQuery()" from your udf library which is working perfectly for all normal attributes.

but when i want to query for one of our own then i get the following error message:

"Error in expression: this type of array not supported in expressions.!"

my query looks like this:

 Code:
DIM $aAttributes, $sADsPath, $strFilter, $aResults

$aAttributes = "special-attribute01"
$sADsPath = "LDAP://"+GetObject("LDAP://rootDSE").Get("defaultNamingContext")
$strFilter = "(&(objectClass=User)(sAMAccountName=" + @WUSERID + "))"

$aResults = fnLDAPQuery($aAttributes,$sADsPath,$strFilter)

$aResults[0,0] ?


what must i do that i can read these attributes?

thank you very much for your help!

brgds Deas