servicestack - 请求正文太大

标签 servicestack iis-express

当我尝试将 80mb 文件从 postman 上传到我在 IISExpress 上的 Visual Studio 2019 中运行的本地端点时,我收到以下错误:

The request filtering module is configured to deny a request that exceeds the request content length.


所以我将它添加到了项目的 applicationhost.config 中:
<system.web>
      <httpRuntime maxRequestLength="1050000" /> 
    </system.web>
    <system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="1073741824"/>
            </requestFiltering>
        </security>
当我发出 API 请求时,这会阻止错误的发生,但现在我只是得到一个 ServiceStack 生成的“快照”页面,告诉我请求花费了多长时间和日期,但我的实际端点从未被命中。
在我的日志中,我可以看到 ServiceStack 抛出此异常:

2020-07-20 01:57:56.0497||ERROR|ServiceStackHost|Request body too large. Microsoft.AspNetCore.Server.IIS.BadHttpRequestException: Request body too large. at Microsoft.AspNetCore.Server.IIS.BadHttpRequestException.Throw(RequestRejectionReason reason) at Microsoft.AspNetCore.Server.IIS.Core.IISHttpContext.InitializeRequestIO() at Microsoft.AspNetCore.Server.IIS.Core.IISHttpContext.ReadAsync(Memory1 memory, CancellationToken cancellationToken) at Microsoft.AspNetCore.Server.IIS.Core.HttpRequestStream.ReadAsyncInternal(Memory1 buffer, CancellationToken cancellationToken) at Microsoft.AspNetCore.WebUtilities.BufferedReadStream.EnsureBufferedAsync(Int32 minCount, CancellationToken cancellationToken) at Microsoft.AspNetCore.WebUtilities.MultipartReaderStream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) at Microsoft.AspNetCore.WebUtilities.StreamHelperExtensions.DrainAsync(Stream stream, ArrayPool1 bytePool, Nullable1 limit, CancellationToken cancellationToken) at Microsoft.AspNetCore.WebUtilities.MultipartReader.ReadNextSectionAsync(CancellationToken cancellationToken) at Microsoft.AspNetCore.Http.Features.FormFeature.InnerReadFormAsync(CancellationToken cancellationToken) at Microsoft.AspNetCore.Http.Features.FormFeature.ReadForm() at Microsoft.AspNetCore.Http.DefaultHttpRequest.get_Form() at ServiceStack.Host.NetCore.NetCoreRequest.get_FormData() in C:\BuildAgent\work\3481147c480f4a2f\src\ServiceStack\Host\NetCore\NetCoreRequest.cs:line 167 at ServiceStack.HttpRequestExtensions.GetFlattenedRequestParams(IRequest request) in C:\BuildAgent\work\3481147c480f4a2f\src\ServiceStack\HttpRequestExtensions.cs:line 555 at ServiceStack.Host.RestHandler.CreateRequestAsync(IRequest httpReq, IRestPath restPath) in C:\BuildAgent\work\3481147c480f4a2f\src\ServiceStack\Host\RestHandler.cs:line 132 at ServiceStack.Host.RestHandler.ProcessRequestAsync(IRequest req, IResponse httpRes, String operationName) in C:\BuildAgent\work\3481147c480f4a2f\src\ServiceStack\Host\RestHandler.cs:line 89|url: |action:


所以 body 长度仍然需要在某处设置,但我看的每个地方都指向我已经使用过的配置。
是否需要额外设置或者这是一个 ServiceStack 问题?

最佳答案

我在启动时缺少这个选项:


services.Configure<IISServerOptions>(options =>
{
    options.MaxRequestBodySize = int.MaxValue;
});

services.Configure<KestrelServerOptions>(options =>
{
    options.Limits.MaxRequestBodySize = int.MaxValue; // if don't set default value is: 30 MB
});

关于servicestack - 请求正文太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62987343/

相关文章:

c# - 如何使用 ServiceStack CacheClient 和 Redis 来递增或创建计数器

.net - redis在用户注册时如何处理并发写请求

visual-studio - 在不启动浏览器或调试器的情况下从 Visual Studio 启动 IIS express

asp.net - IIS Express with VS2010 SP1 不断重建网站

asp.net - 无法从 VS2015 运行 IIS Express

c# - 创建虚拟目录失败,错误 : redirection. 配置

visual-studio-2010 - IIS Express或Cassini

entity-framework - 如何在 ServiceStack Core 中注册 DbContext EF Core?

csv - ServiceStack CSV 序列化程序在序列化日期周围放置额外的引号

error-handling - 抛出HttpError时ServiceStack不会填充响应DTO