Anyone have any experience with this? I am currently setting this up at my work. I have set up the SVN server and Apache 2.2.3 on CentOS. SVN Serves fines just using basic authentication. Now I am trying to hook into our MS Active Directory and have been very successful at finding configurations that don't seem to work.
 
As far as I can tell, I am not even contacting the AD server. There is no outbound traffic and notthing in the apache error logs. below is my config.
 
<Location /subversion>
  # Load SVN Dav
  DAV svn
  # set the path to the repo
  SVNPath /var/svn/repo
  AuthBasicProvider ldap
  AuthType Basic
  AuthzLDAPAuthoritative off
  AuthName "My Subversion Server"
  AuthLDAPURL ldap://ldapserver.company.com:389/DC=company,DC=com>sAMAccountName?sub?(objectClass=*)
  AuthLDAPBindDN "CN=binduser,CN=usergroup,DC=company,DC=com"
  AuthLDAPBindPassword bindpassword
  require valid-user
</Location>
 
I haven't made any changes to the httpd.conf (other than making sure mod_authnz_ldap is installed and loaded).
 
This is completely out of my league.
 
Thanks in advance for any help.
 
~Lee