We are just now starting to transition to the RadAsyncUpload using a custom HTTP Handler. The reason for this is that we want to directly pass the files to a WCF service that will scan the file for viruses, encrypt, and store the files as they come in.
The problem is that when a few people are uploading files at the same time, everybody seems to get hosed and we start getting a 503 error returned to us (can't even go back to the page because we'll get that 503 error). Is there some configuration change I need to make at the WCF, IIS, or web.config level to accommodate many users uploading large files (anywhere from 1k to 200mb)?
The applications that are using the RadAsyncUpload are SharePoint 2010 webparts and application pages. Everythign seems to work fine if a user only uploads 1 file or if there is only one user of the system at any particular time.
UPDATE: Using Firebug, I was able to see that the calls to the custom handler are being aborted. I use the same 6 test files every time I test this issue. The first and second time I upload all 6 files, everything works fine. At some point though, any file I upload just stops uploading (or at least that's how it seems).
The problem is that when a few people are uploading files at the same time, everybody seems to get hosed and we start getting a 503 error returned to us (can't even go back to the page because we'll get that 503 error). Is there some configuration change I need to make at the WCF, IIS, or web.config level to accommodate many users uploading large files (anywhere from 1k to 200mb)?
The applications that are using the RadAsyncUpload are SharePoint 2010 webparts and application pages. Everythign seems to work fine if a user only uploads 1 file or if there is only one user of the system at any particular time.
UPDATE: Using Firebug, I was able to see that the calls to the custom handler are being aborted. I use the same 6 test files every time I test this issue. The first and second time I upload all 6 files, everything works fine. At some point though, any file I upload just stops uploading (or at least that's how it seems).