Hello all,
I am trying to use Net::LDAP to move computer objects to a different OU in Win
2003 Active Directory. My attempts to use the moddn() method always return the
error:
ERROR: 00000057: LdapErr: DSID-0C090987, comment: Error in attribute conversion
operation, data 0, vece
I call moddn() like so:
my $message = $ldap->moddn( $entry->dn(), newrdn => $entry->dn(), deleteoldrdn
=> 1, newsuperior => $newDN );
I don't change the rdn of the object, I just want to move it to a different OU.
Is moddn() the correct method to use for this opperation? Or is there a
function/method in Net::LDAP like the MoveHere method available through Windows
OLE? Thanks.
AG