增加Azure Api应用程序

时间:2015-07-10 11:17:10

标签: c# api azure file-upload azure-api-apps

我创建了一个Azure Api App,我将使用它来上传文件。这些文件将是> 4mb因此需要增加最大请求长度。我已将以下内容添加到Web.config:

 <system.web>
    <httpRuntime executionTimeout="7200" targetFramework="4.5" maxRequestLength="2097152" />
  </system.web>

我还补充说:

<system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2097152000" />
      </requestFiltering>
    </security>
  </system.webServer>

然而我仍然得到例外Maximum request length exceeded.。我错过了什么吗?还有什么我可以尝试的吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

不幸的是,这还不可能。除了API App的限制之外,Gateway也是一个限制,它也是一个ASP.NET应用程序。您可以更改API应用程序,但无法更改网关。

我知道团队正在考虑为此提供解决方案,但此时我还没有ETA可以分享。