Quote Originally Posted by randomdev View Post
Silverlight is working great, I'm able to split the file into chunks and upload one at a time, so I can even support resumable uploads, and reliably upload huge files (theoretically there's no limit - the file gets progressively read and written at each end, so won't run out of memory).
So your doing threaded datastreams?
Have you actually tried large files yet on RFH?

I'm assuming you're code still runs under the same limitations (memory allocations, upload datastream size) as definded in .net and the server (shared app pool) like the rest of the shared hosting envirnment..

If it does work, how does it run against the limits given to that worker process?

Shared Hosting and Dev Envirnments are very different, so would be worth checking it all works before finding out it doesn't..