Hello,
 
 
I am having IPlanets LDAP as server and open LDAP as client..
I have written a code to search for a DN......
but i m not able to modify/delete/add new entries to IPlanets LDAP server.....
on execting the following code
 
i m using Net::LDAP module
 
$dn = "uid=zz,ou=xx,o=yy";
$ldap->bind($manager, $password);
$ldap->modify( $dn, replace =>[ email => '[EMAIL PROTECTED]'] );
$ldap->update();
 
on executing the code i m getting
 
insufficient 'write' privlelege to the 'email' attribute of entry .......................
 
i have checked the password and the username......
i m using the same username and password( which for the Administrator)...for searching process....and i m able to do the search.....
 
 
i even tried the following code
 
..
....
...
$entry = Net::LDAP::Entry->new;
$entry->delete('email');
$entry->update($ldap);
 
but i m getting the same error...
 
can anybody help me.....
 
thanx in advance
 
Gaurav
 


Chat with friends online, try MSN Messenger: Click Here
_______________________________________________ ActivePerl mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to