Upload file through WebApi fails for larger file

前端 未结 1 349
春和景丽
春和景丽 2021-01-20 03:59

I\'m trying to upload a file using WebApi. The byte[] is 1.6MB. For some reason my model is serialised to null. I suspect it\'s the filesize because it works with smaller fi

相关标签:
1条回答
  • 2021-01-20 04:41

    May be you have to change .config

    <system.web> 
        <httpRuntime maxRequestLength="2097152"/>
    </system.web>
    
    <system.webServer> 
      <security> 
          <requestFiltering> 
             <requestLimits maxAllowedContentLength="2147483648" /> 
          </requestFiltering> 
      </security>
    <system.webServer> 
    
    0 讨论(0)
提交回复
热议问题