You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
access a file that public share with LibreOffice "Open Remote" function
Expected behaviour
LibreOffice should open the file and should be able to save it back
Actual behaviour
LibreOffice shows an error message
and only opens the file read-only
Also new files cannot be saved by LibreOffice
The reason is that LibreOffice thinks that Locking is possible but LOCK requests get a 403 response
LibreOffice assumes that locks are possible because it made a supportedlock discovery and got a positive response:
Since server lock support is optional, a client trying to lock a
resource on a server can either try the lock and hope for the best,
or perform some form of discovery to determine what lock capabilities
the server supports. This is known as lock capability discovery. A
client can determine what lock types the server supports by
retrieving the DAV:supportedlock property.
Any DAV-compliant resource that supports the LOCK method MUST support
the DAV:supportedlock property.
The text was updated successfully, but these errors were encountered:
Possibly related issues are #34268 (Hide lock token in public webdav responses), #34270 ([stable10] Hide lock token in public webdav responses), #13828 (webDav locking is not working), #33951 ([stable10] Webdav locking frontend), and #32250 (Feature/webdav locking frontend).
Considering that using public webdav endpoint with a third party client is a rare use case, let's move to backlog to fix separately.
The fix should be to remove "supportedlock" from the response. Not sure how easy it is because Sabre seems to assume that locking is fully supported as soon as the Sabre LockPlugin is there. Might need a custom LockPlugin then.
Steps to reproduce
Expected behaviour
LibreOffice should open the file and should be able to save it back
Actual behaviour
LibreOffice shows an error message
and only opens the file read-only
Also new files cannot be saved by LibreOffice
The reason is that LibreOffice thinks that Locking is possible but LOCK requests get a 403 response
LibreOffice assumes that locks are possible because it made a
supportedlock
discovery and got a positive response:https://tools.ietf.org/html/rfc4918#section-6.7
The text was updated successfully, but these errors were encountered: