Add LDAP entry to Active Directory via ext/ldap - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:11:33Z http://stackoverflow.com/feeds/question/368844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/368844/add-ldap-entry-to-active-directory-via-ext-ldap 1 Add LDAP entry to Active Directory via ext/ldap Stefan Gehrig 2008-12-15T16:05:17Z 2009-03-10T02:47:28Z <p>Using ext/ldap I'm trying to add entries to an Active Directory. As long as I only use one single structural objectClass everything works as expected, but as soon as I try to add an entry with a second auxiliary objectClass, the server reports an error:</p> <blockquote> <p>Server is unwilling to perform; 00002040: SvcErr: DSID-030F0AA0, problem 5003 (WILL_NOT_PERFORM), data 0</p> </blockquote> <p>The following code works:</p> <pre><code>ldap_add($ldap, 'OU=Test,OU=Test,DC=domain,DC=example,DC=local', array( 'ou' =&gt; 'Test', 'objectClass' =&gt; 'organizationalUnit', 'l' =&gt; 'location' )); </code></pre> <p>This doesn't:</p> <pre><code>ldap_add($ldap, 'OU=Test,OU=Test,DC=domain,DC=example,DC=local', array( 'ou' =&gt; 'Test', 'associatedDomain' =&gt; 'domain', 'objectClass' =&gt; array('organizationalUnit', 'domainRelatedObject'), 'l' =&gt; 'location' )); </code></pre> <p>The same happens if I try to add an auxiliary objectClass to an existing entry:</p> <pre><code>ldap_mod_add($ldap, 'OU=Test,OU=Test,DC=domain,DC=example,DC=local', array( 'associatedDomain' =&gt; 'domain', 'objectClass' =&gt; 'domainRelatedObject' )); </code></pre> <p>The corresponding error message is essentially the same</p> <blockquote> <p>Server is unwilling to perform; 00002040: SvcErr: DSID-030508F8, problem 5003 (WILL_NOT_PERFORM), data 0</p> </blockquote> <p>As all other updating and adding operations work, I think the problem must be related to the objectClass attribute. </p> <p>As I've not enough experience with Active Directories (I'm used to OpenLDAP): Are there any known issues with objectClasses in Active Directory? Am I missing something here? Are there any restrictions that disallow adding e.g. <code>domainRelatedObject</code> to an <code>organizationalUnit</code>? What the heck 's going on here ;-)?</p> <p><em>Just in case you're wondering: the <code>domainRelatedObject</code> is present in the Active Directory schema.</em></p> http://stackoverflow.com/questions/368844/add-ldap-entry-to-active-directory-via-ext-ldap/369167#369167 0 Answer by Martin v. Löwis for Add LDAP entry to Active Directory via ext/ldap Martin v. Löwis 2008-12-15T17:47:21Z 2008-12-15T17:47:21Z <p>You may not have permission to set the objectClass attribute. See whether you can attach the auxiliary class after creation, through <a href="http://technet.microsoft.com/en-us/library/cc773354.aspx" rel="nofollow">ADSI Edit</a>. If you can't, fix the permissions first (check the Properties tab in the Advanced view of Security settings)</p> <p>I could attach this specific class right now, onto a organizationalUnit object, as a domain admin; so in principle, this is possible.</p> http://stackoverflow.com/questions/368844/add-ldap-entry-to-active-directory-via-ext-ldap/369803#369803 2 Answer by Martin v. Löwis for Add LDAP entry to Active Directory via ext/ldap Martin v. Löwis 2008-12-15T21:41:15Z 2008-12-15T21:41:15Z <p>I just found that, in order to add dynamic (per-instance) aux classes, the <a href="http://msdn.microsoft.com/en-us/library/ms676290.aspx" rel="nofollow">forest functional level of the domain must be 2003</a>.</p>