To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=29152





------- Additional comments from topquark_...@openoffice.org Tue Sep 29 
22:08:20 +0000 2009 -------
I'm using OpenOffice from Ubuntu Jaunty, which incorporates these patches.

I'm attempting to edit files in Atlassian Confluence via DAV, but Confluence
requires a file to be LOCKed before the file can be updated with a PUT request.
 This code, however, appears to unlock the file just before writing, then lock
it again just after writing.

Is there a reason for this behavior?  Can it be adjusted to leave the file
LOCKed while performing the PUT?

These are the requests seen from OO when editing a file via DAV on an Apache 2.2
server:
<Ask OO to open the file>
"PROPFIND /test/test.doc HTTP/1.1" 207 543 "-" "-"
"LOCK /test/test.doc HTTP/1.1" 200 402 "-" "-"
"GET /test/test.doc HTTP/1.1" 200 11264 "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 482 "-" "-"
<Make some changes and ask OO to save the file>
"UNLOCK /test/test.doc HTTP/1.1" 204 - "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 543 "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 500 "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 482 "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 1177 "-" "-"
"GET /test/test.doc HTTP/1.1" 200 11264 "-" "-"
"PUT /test/test.doc HTTP/1.1" 204 - "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 482 "-" "-"
"PROPFIND /test/test.doc HTTP/1.1" 207 543 "-" "-"
"LOCK /test/test.doc HTTP/1.1" 200 402 "-" "-"
"GET /test/test.doc HTTP/1.1" 200 10240 "-" "-"
<Close the file>
"UNLOCK /test/test.doc HTTP/1.1" 204 - "-" "-"

Note that the file is UNLOCKed before doing the PUT, then LOCKed again 
afterward.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@ucb.openoffice.org
For additional commands, e-mail: issues-h...@ucb.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to