I implemented custom HttpHandler (AsyncUploadHandler) to use with RadAsyncUpload control. This works fine.
I see that when uploading a file, content is split into 2MB chunks and sent to server, or to be more precise to this handler I created. In the custom handler it's only possible to override Process method which is fired when all the chunks are downloaded.
Regarding this scenario I have a few questions:
1. Is there some way to catch event when every chunk is received on the server?
2. I set TemporaryFileExpiration to 5 minutes, but I noticed that sometime files are not deleted from the temp folder. Any idea where to search for the problem? I never manually save the file to any location.
3. How is the upload progress calculated? I noticed the ProgressHandlerUrl, but didn't find any documentation, or example on how to use it. Is it possible to have some custom progress handler?
Thanks!
Marko
I see that when uploading a file, content is split into 2MB chunks and sent to server, or to be more precise to this handler I created. In the custom handler it's only possible to override Process method which is fired when all the chunks are downloaded.
Regarding this scenario I have a few questions:
1. Is there some way to catch event when every chunk is received on the server?
2. I set TemporaryFileExpiration to 5 minutes, but I noticed that sometime files are not deleted from the temp folder. Any idea where to search for the problem? I never manually save the file to any location.
3. How is the upload progress calculated? I noticed the ProgressHandlerUrl, but didn't find any documentation, or example on how to use it. Is it possible to have some custom progress handler?
Thanks!
Marko