Blog content
Active categories:
- Tip (3)
- GPS (1)
- OpenStreetMap (1)
- OATH (1)
- Windows (1)
By date:
(No recent posts)
Blog calendar
| Mo | Tu | We | Th | Fr | Sa | Su |
|---|---|---|---|---|---|---|
| << Jan | Mar >> | |||||
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | ||||
2007-06-17 | Getting WebDAV to work in Windows Vista
I've already mentioned that WebDAV is broken in Windows Vista. When the Vista user interface asks you to enter a user name and password for a WebDAV resource it inevitably prepends the hostname to the entered username and tries to log on with that one.
The workaround is to use the command line to map a network drive to your WebDAV folder as follows:
C:\>net use * http://dav.myserver.com/ Enter the user name for 'dav.myserver.com': martin Enter the password for dav.myserver.com: **** Drive W: is now connected to http://dav.myserver.com/. The command completed successfully.
The network drive can be disconnected via GUI or via command line as follows:
C:\>net use /delete W: W: was deleted successfully.
Don't forget to check the output of "net use /?" for inspiration as to what else you can do. :-)
Update (2009-01-18):
I decided WebDAV is too useful to give it up just yet, so I found another workaround on the server side (Apache in my case). Even with Vista SP1 stubbornly keeps prepending the hostname to the entered username, which may show up in your server logs like this:
[error] Digest: user 'dav.myserver.com\\martin' in realm 'dav.myserver.com WebDAV' not found: /
Adding a user called dav.myserver.com\\martin, as the log suggest, didn't cut it in my case but adding one called dav.myserver.com\martin (note the single backslash) did. I am now able to use Vista's Add Network location wizard to access my WebDAV location.
2007-08-29 at 16:39
I am still getting an error when the webdav works perfect on win xp
C:\Windows\system32>net use * "http://myserver.com/"
System error 67 has occurred.
The network name cannot be found.
:(
2007-08-30 at 15:10
I had that too the other day but rebooting solved it for me. Vista has a lo-o-ot of issues with network shares and drive letters.
On the other hand, I could never get anything mounted with the net use syntax on XP. If I knew of a good stand-alone WebDAV application I would use it. *sigh*