Re: Perl Net::LDAP::Entry

2010-04-12 Thread Gert Buettner
You have to address the operationalAttributes explicit by their names, and all the user-Attribute by '*': Try: $mesg = $ldap->search( ... , attrs => [ '*', 'createTimestamp', 'creatorsName', 'modifiersName', 'modifyTimestamp' ] );

Re: Perl Net::LDAP::Entry

2010-04-12 Thread Chris Ridd
On 12 Apr 2010, at 06:21, William King wrote: > Is there a way to get the internal attributes? such as for an > inetOrgPerson entry I would want access to: > > createTimestamp > creatorsName > modifiersName > modifyTimestamp > > These are available when using phpldapadmin and selecting internal

Perl Net::LDAP::Entry

2010-04-12 Thread William King
Is there a way to get the internal attributes? such as for an inetOrgPerson entry I would want access to: createTimestamp creatorsName modifiersName modifyTimestamp These are available when using phpldapadmin and selecting internal attributes. Is it possible to expose these in perl? -William Kin