Dav: back to old path in Destination header behavior

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1684 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-05-16 09:43:41 +00:00
parent a0f075c632
commit fa536e0824
1 changed files with 4 additions and 5 deletions

View File

@ -1697,7 +1697,7 @@ public class DavExchangeSession extends ExchangeSession {
@Override
public void moveItem(String sourcePath, String targetPath) throws IOException {
MoveMethod method = new MoveMethod(URIUtil.encodePath(getFolderPath(sourcePath)),
getEscapedUrlFromPath(URIUtil.encodePath(getFolderPath(targetPath))), false);
URIUtil.encodePath(getFolderPath(targetPath)), false);
try {
int statusCode = httpClient.executeMethod(method);
if (statusCode == HttpStatus.SC_PRECONDITION_FAILED) {
@ -2537,9 +2537,9 @@ public class DavExchangeSession extends ExchangeSession {
return baos.toByteArray();
}
protected String getEscapedUrlFromPath(String escapdePath) throws URIException {
protected String getEscapedUrlFromPath(String escapedPath) throws URIException {
URI uri = new URI(httpClient.getHostConfiguration().getHostURL(), true);
uri.setEscapedPath(escapdePath);
uri.setEscapedPath(escapedPath);
return uri.getEscapedURI();
}
@ -2611,8 +2611,7 @@ public class DavExchangeSession extends ExchangeSession {
protected void copyMessage(String sourceUrl, String targetFolder) throws IOException {
String targetPath = URIUtil.encodePath(getFolderPath(targetFolder)) + '/' + UUID.randomUUID().toString();
String targetUri = getEscapedUrlFromPath(targetPath);
CopyMethod method = new CopyMethod(URIUtil.encodePath(sourceUrl), targetUri, false);
CopyMethod method = new CopyMethod(URIUtil.encodePath(sourceUrl), targetPath, false);
// allow rename if a message with the same name exists
method.addRequestHeader("Allow-Rename", "t");
try {