Jump to content

Read a attribute with a comma


ECHAIGNE
 Share

Recommended Posts

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 by ECHAIGNE
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...