Webdav GUI tools like MacOS Finder and Windows Explorer require the WebDAV server to implement file locking. This seems not to be done for the Tryton WebDAV.
Therefore Mac OS Finder (and iCal) only allow read access while Windows Explorer refuses to connect.
Is there a reason for this? Could it be changed?
as you suggested. The result is, that Mac OS Finder mounts the share as read/write. So far so good.
BUT: when one tries to write to one of the directories it fails. there is two cases I have tried:
-Opening an existing text file, edit it and write the file back.
-Copying a new file to one folder.
both things fail. In the latter case, the thread doing this file operation locks up. I.e. the trytond is still responding (also to webdav requests) but it has to be killed with SIGKILL if you want to stop it. On the client side (Finder) the copy operation never finishes until the server is killed.
Rewriting a file fails with the following output:
----------
::ffff:10.0.2.2 - - [27/Aug/2010 17:12:50] "PROPFIND /testdb/Einkauf/000001-6/._Readme.txt HTTP/1.1" 404 -
::ffff:10.0.2.2 - - [27/Aug/2010 17:12:50] "PROPFIND /testdb/Einkauf/ HTTP/1.1" 207 -
::ffff:10.0.2.2 - - [27/Aug/2010 17:12:50] "GET /testdb/Einkauf/000001-6/Readme.txt HTTP/1.1" 200 -
. #### here is where I opened the file ####
.
. #### a lot of other stuff inbetween #####
.
.
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:20] "MKCOL /.TemporaryItems HTTP/1.1" 401 -
[Fri Aug 27 17:13:20 2010] INFO:database:connect to ".TemporaryItems"
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:20] code 401, message Authorization Required
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:20] "MKCOL /.TemporaryItems HTTP/1.1" 401 -
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:21] "PROPFIND /testdb/Einkauf/000001-6/(TextEdit-Dokument%20sichern) HTTP/1.1" 404 -
[Fri Aug 27 17:13:21 2010] ERROR:webdav:Exception:
Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/trytond-1.6.1-py2.6.egg/trytond/protocols/webdav.py", line 315, in mkcol
cache=CACHE)
File "/usr/local/lib/python2.6/dist-packages/trytond-1.6.1-py2.6.egg/trytond/webdav/webdav.py", line 549, in mkcol
raise DAV_Forbidden
DAV_Forbidden: (403, '')
-------------------------------------
as you suggested. The result is, that Mac OS Finder mounts the share as read/write. So far so good.
BUT: when one tries to write to one of the directories it fails. there is two cases I have tried:
-Opening an existing text file, edit it and write the file back.
-Copying a new file to one folder.
both things fail. In the latter case, the thread doing this file operation locks up. I.e. the trytond is still responding (also to webdav requests) but it has to be killed with SIGKILL if you want to stop it. On the client side (Finder) the copy operation never finishes until the server is killed.
Rewriting a file fails with the following output:
----------
::ffff:10.0.2.2 - - [27/Aug/2010 17:12:50] "PROPFIND /testdb/Einkauf/000001-6/._Readme.txt HTTP/1.1" 404 -
::ffff:10.0.2.2 - - [27/Aug/2010 17:12:50] "PROPFIND /testdb/Einkauf/ HTTP/1.1" 207 -
::ffff:10.0.2.2 - - [27/Aug/2010 17:12:50] "GET /testdb/Einkauf/000001-6/Readme.txt HTTP/1.1" 200 -
. #### here is where I opened the file ####
.
. #### a lot of other stuff inbetween #####
.
.
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:20] "MKCOL /.TemporaryItems HTTP/1.1" 401 -
[Fri Aug 27 17:13:20 2010] INFO:database:connect to ".TemporaryItems"
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:20] code 401, message Authorization Required
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:20] "MKCOL /.TemporaryItems HTTP/1.1" 401 -
::ffff:10.0.2.2 - - [27/Aug/2010 17:13:21] "PROPFIND /testdb/Einkauf/000001-6/(TextEdit-Dokument%20sichern) HTTP/1.1" 404 -
[Fri Aug 27 17:13:21 2010] ERROR:webdav:Exception:
Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/trytond-1.6.1-py2.6.egg/trytond/protocols/webdav.py", line 315, in mkcol
cache=CACHE)
File "/usr/local/lib/python2.6/dist-packages/trytond-1.6.1-py2.6.egg/trytond/webdav/webdav.py", line 549, in mkcol
raise DAV_Forbidden
DAV_Forbidden: (403, '')
-------------------------------------
Hi again,
another thing (probably unrelated) I noticed when using webdav with ssl was the following:
----------------------------------------
Exception happened during processing of request from ('::ffff:10.0.2.2', 62479, 0, 0)
Traceback (most recent call last):
File "/usr/lib/python2.6/SocketServer.py", line 558, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.6/SocketServer.py", line 320, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.6/SocketServer.py", line 615, in __init__
self.handle()
File "/usr/lib/pymodules/python2.6/DAV/AuthServer.py", line 215, in handle
AuthRequestHandler.handle(self)
File "/usr/lib/pymodules/python2.6/DAV/AuthServer.py", line 80, in handle
self.raw_requestline = self.rfile.readline()
File "/usr/lib/python2.6/socket.py", line 406, in readline
data = self._sock.recv(self._rbufsize)
Error: [('SSL routines', 'SSL23_READ', 'ssl handshake failure')]
----------------------------------------
it appears in quite frequently (on the console, not in the log file). When switching off SSL it is gone. The other errors described before remain.
I found that I was a little bit too impatient with the lockup during copy. After some minutes without killing the server, the copy is aborted and I get the following on the console:
^C----------------------------------------
Exception happened during processing of request from ('::ffff:10.0.2.2', 62599, 0, 0)
Traceback (most recent call last):
File "/usr/lib/python2.6/SocketServer.py", line 558, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.6/SocketServer.py", line 320, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.6/SocketServer.py", line 615, in __init__
self.handle()
File "/usr/lib/pymodules/python2.6/DAV/AuthServer.py", line 215, in handle
AuthRequestHandler.handle(self)
File "/usr/lib/pymodules/python2.6/DAV/AuthServer.py", line 134, in handle
method()
File "/usr/lib/pymodules/python2.6/DAV/WebDAVServer.py", line 418, in do_PUT
body=self.rfile.read(atoi(l))
File "/usr/lib/python2.6/socket.py", line 353, in read
data = self._sock.recv(left)
SysCallError: (-1, 'Unexpected EOF')
----------------------------------------
[Fri Aug 27 17:22:47 2010] INFO:server:stopped
- it seems that the client try to make ssl connection. Did you activate it?
- you try to fetch pdf report but Ooo failed to start (it is required to convert odt into pdf)
- the client try to write to the root "/" but it is readonly in Tryton. Did you try to mount the database name repository instead of "/"?
Yes it is activated. I also tried without. No change.
> - you try to fetch pdf report but Ooo failed to start (it is
> required to convert odt into pdf)
This is a problem that occurs, when I start trytond on the console to
get a detailed log. Not sure why. But it is not a related problem. The
behaviour remains the same when started using an init script, where Oo
works.
> - the client try to write to the root "/" but it is readonly in
> Tryton. Did you try to mount the database name repository instead of
> "/"?
I also tried mounting the database name. No change.