C#/ASP .Net Large File Upload Not working -


i having trouble uploading of large files in .net

i tried several references no avail. first issue encountering error 404 when uploading files, tried increasing request limits maxallowedcontentlength , maxrequestlength solved issue. no more error 404. still, have trouble uploading files more 40mb. no endpoint calls recorded in fiddler, not error or exception displayed in visual studio.

here's portion of web.config:

    <system.web>   <!-- setting maxrequestlength greater default 4096 large data may uploaded e.g. images, docs -->   <httpruntime requestpathinvalidcharacters="" requestvalidationmode="2.0" maxrequestlength="204800000" executiontimeout="3600" /> </system.web> <system.codedom>   <compilers>     <compiler language="c#;cs;csharp" extension=".cs" warninglevel="4" type="microsoft.csharp.csharpcodeprovider, system, version=4.0.0.0, culture=neutral>       <provideroption name="compilerversion" value="v4.0" />       <provideroption name="warnaserror" value="false" />     </compiler>   </compilers> </system.codedom> <system.webserver>   <security>     <requestfiltering allowdoubleescaping="true">       <requestlimits maxallowedcontentlength="2200000000" />      </requestfiltering>   </security> </system.webserver> <system.servicemodel>   <servicehostingenvironment aspnetcompatibilityenabled="true" multiplesitebindingsenabled="true" />   <behaviors>     <servicebehaviors>       <behavior>         <datacontractserializer maxitemsinobjectgraph="6553600" />       </behavior>     </servicebehaviors>   </behaviors>   <bindings>     <webhttpbinding>       <binding maxreceivedmessagesize="6553600" />     </webhttpbinding>   </bindings> </system.servicemodel> 

any appreciated. thanks


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -