I believe that I have found the problem with slide and UTF8 encodings in the
url:

Line 331 in WebdavUtils.java:
return decodeURL(fixTomcatURL(result, "UTF-8"));

Should be changed to:
return decodeURL(result);

This might be some leftovers from a fix for older versions of tomcat. But
what it does now is UTF8 encode a string that which is already UTF8 encoded.
This is normally not noticed since all requests have been double encoded,
but when it comes to the propfind method then it fails!

This solves the webfolder problem of deleting a file with national letters
that has been uploaded using webfolders. Webfolders still does not show the
correct national letters, but the users are able to access (open and delete)
the files.

Thanks
Jacob


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to