Reputation: 2554
We implemented our own WebDAV server. Some users having Office (Word, Excel) open documents read-only. On problem computers queries are next:
Normal queries (on healthy computers) are: OPTIONS, HEAD, LOCK, GET... So, Word do not attempts to LOCK document, and opens it readonly.
We have already tried:
HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Internet\OpenDocumentsReadWriteWhileBrowsing
to 1 as said here.HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel
to 2, and HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Internet\BasicAuthLevel
to 2 as said here.HKEY_CURRENT_USER\Software\Microsoft\Office\<version>\Common\Internet\Server Cache
as said here.Have any clue? Why is Office not trying to LOCK the document?
Upvotes: 4
Views: 6162
Reputation: 2554
The problem was in interaction of MS Office and proxy-server. When we started fiddler (instead of WireShark), that creates local proxy for catching traffic, the WebDAV begun to work correctly.
Upvotes: 0
Reputation: 99523
You are at least missing the DAV header. Include this in the OPTIONS response:
DAV: 1,2
Upvotes: 4