You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if that is the right place to ask, so if I'm wrong please tell me where I can ask my question :)
I currently try to build a WebDAV / ownlcoud client to upload some files. Because some files are large I figured that I need to use so called "chunking". However I could not find a real good tutorial / instruction how to implement such chunking. I found this page: spec: big-file-chunking but it does not really help.
So let me explain what I did so far and what questions I have:
I check for the filesize and if it is large than same predefined value I will chunk the data. I use PUT to upload each chunk and the chunks have the following name: <path/filename>-chunking-<transferid>-<chunkcount>-<index> like mentioned in the specs linked above.
I don't know if that is the right place to ask, so if I'm wrong please tell me where I can ask my question :)
I currently try to build a WebDAV / ownlcoud client to upload some files. Because some files are large I figured that I need to use so called "chunking". However I could not find a real good tutorial / instruction how to implement such chunking. I found this page: spec: big-file-chunking but it does not really help.
So let me explain what I did so far and what questions I have:
I check for the filesize and if it is large than same predefined value I will chunk the data. I use PUT to upload each chunk and the chunks have the following name:
<path/filename>-chunking-<transferid>-<chunkcount>-<index>
like mentioned in the specs linked above.I also set the following header types:
Each request is creates an empty file named like the chunk on my owncloud and each response of these PUTs request return 201 oder 204.
I also see that each response has their own ETag, but I read that this is not normal but I couldn't find out why this is.
Do you have any idea what I am doing wrong?
PS: I am running the latest owncloud version.
The text was updated successfully, but these errors were encountered: