Hi,
I just configured slick upload for my project but am not able to upload files larger than about 35-40MB. It works fine for small files.
The UI behavior is as follows:
The file starts uploading at a decent rate but the rate continues to fall till about 200b/s or so. At this point uploading stops even though only about 1% of the file has been uploaded and when I check the folder where I upload files the file cant be found.
My web.config is as below:
<sectionGroup name="slickUpload">
<section name="uploadParser" type="Krystalware.SlickUpload.Configuration.NameValueConfigurationSectionHandler, Krystalware.SlickUpload" />
<section name="uploadStreamProvider" type="Krystalware.SlickUpload.Configuration.NameValueConfigurationSectionHandler, Krystalware.SlickUpload" />
<section name="statusManager" type="Krystalware.SlickUpload.Configuration.StatusManagerConfigurationSectionHandler, Krystalware.SlickUpload" />
</sectionGroup>
<slickUpload>
<uploadParser handleRequests="false" />
<uploadStreamProvider location="C:\RebatesUpload\SlickUploadFolder" existingAction="Overwrite" />
<statusManager manager="Custom" type="ZSAssociates.RebateDesigner.Web.SlickUploadStatusManager,ZSAssociates.RebateDesigner.Web" />
</slickUpload>
<httpRuntime maxRequestLength="2097151" executionTimeout="3600"/>
On checking the status of the upload in the uploadcomplete event in the code behind i get the following:
AllErrors: Nothing
ErrorMessage: Exception of type 'Krystalware.SlickUpload.UploadException' was thrown.
Reason: Disconnected {3}
State: Terminated {2}
I work on VS 3.5 SP1 and on a IIS6 environment.
Any ideas on what I might be doing wrong?