ECHAIGNE Posted December 11, 2006 Posted December 11, 2006 (edited) Hi, I try to read attributes of accounts in a Novell e-directory. How to read an attribute which contains a character minus ? example: DirXML-associations ==> Const $ServeurNDS = "MyServer" Const $PortNDS = 389 Const $AdmNDS = "cn=MyUser,o=MyContext" Const $PWDNDS = "MyPWD" Global $User="cn=MyAccount,ou=MyContext,o=MyOrganisation" $oLDAP = ObjGet("LDAP:") If IsObj($oLDAP) Then $oADsSelectContainer = $oLDAP.OpenDSObject ("LDAP://" & $ServeurNDS & ":" & $PortNDS & "/" & $User, $AdmNDS, $PWDNDS, 0) If Not @error Then If $oADsSelectContainer.sn <> "" Then Msgbox(4096, $oADsSelectContainer.sn, "DIRXML=" & $oADsSelectContainer.DirXML-associations) EndIf EndIf EndIf With this code, I have an error of compilation on $oADsSelectContainer.DirXML-associations Thanks for your answer Eric Edited December 11, 2006 by ECHAIGNE
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now