Chunked file uploader

0
0

Hi guys I’m working on a new extension for Wisej to allow uploading any sized file.  > 2GB. It splits the file into chunks and uploads them to the server using a [WebMethod] inside the custom control. To get it to work I had to convert the ArrayBuffer on the javascript side into a base64 encoded string because I couldn’t figure out how to pass a byte array.

 

Any ideas on how to use a byte array to reduce the bandwidth?

Attachment
  • You must to post comments
0
0

So I ended up reworking it again. I switch most my javascript out to wired in resumeable.js which seems to work much better.

  • Tiago (ITG)
    Thanks Mark, I’ll have a look and get back to you.
  • You must to post comments
0
0

I just thought I would share. I got this working by creating a custom httphandler. It is a lot faster then my previous attempt and I believe it is way less intensive on wisej because I believe it was sending so many events that it was using up way too much cpu.

I was getting max 10mb on my local machine and after these changes it went up to 22mb.

  • You must to post comments
0
0

this version has a couple of fixes.

Attachment
  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.