views:

34

answers:

0

Hello Stack Overflow,

How does one copy the file to a webdav share? We are currently using FSCopyObjectAsync to copy files to local file system or SMB, however it quits almost immediately when copying to a mounted WebDav share. To verify the behaviour I've run rsync and the transfer was completed in about 1-2 seconds reporting the progress of 10 mb/s upload, after that rsync just hanged. During that time the data is being transferred according to server logs but there's no way to observe the progress.

Questions...how do I monitor this kind of uploads and (due to natural born curiosity) why would MacOS X copy/buffer the uploaded file before actually uploading it?

Thanks a million!

PS: Finally I ended up using FTP using a bunch of CFxxxxx functions. It was surprisingly easy and fast to wrap up and get over with as well :)