You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Johan Ymerson <jo...@transmode.se> on 2009/04/15 14:13:06 UTC

Subversion and Windows XP WebDAV mini redirector problem

Hi,

I have tried to set up Subversion with Apache to supply WebDAV access for Windows XP clients.
We need to use the Windows XP mini redirector driver to map a network drive to the Subversion repository, like:
net use v: http://server/repo

I know there are problems with authentication against apache, but I have worked around that by using Kerberos (this is in a AD domain):
<Location /Common>
      DAV svn
      SVNPath /var/svn/Common
      SVNIndexXSLT "/index.xsl"
      SVNPathAuthz off

      AuthName "transmode.se"
      AuthType Kerberos
      Krb5Keytab /etc/apache2/krb5.svn.keytab
      KrbAuthRealms TRANSMODE.SE
      KrbMethodNegotiate on
      KrbSaveCredentials off
      KrbVerifyKDC on
      KrbServiceName HTTP/svn.transmode.se
      KrbLocalUserMapping on
      AuthDBMGroupFile /etc/apache2/group.cache

      Require valid-user
</Location>

This works great with the ordinary DAV driver (DAV on), I can map the WebDAV directory as a drive with the above command.
But when using Subversion (DAV svn), it fails with the following error:
c:\>net use v: http://server/Common
System error 67 has occured.

The network name cannot be found
c:\>

I get no error messages in the server.

All problems I have seen reported about the Windows XP mini redirector is about the authentication, but in this case the authentication works, and also the normal file system backed DAV module works.

Does anyone know what could be the problem, or how to debug this?

/Johan Ymerson

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1727701

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].