Как настроить размер буфера и максимальный размер сообщения в ASP.NET Web API - PullRequest
9 голосов
/ 26 февраля 2012

Раньше у нас были эти свойства в конфигурации веб-API WCF.

            MaxBufferSize = int.MaxValue,
            MaxReceivedMessageSize = int.MaxValue,

Ответы [ 4 ]

17 голосов
/ 26 февраля 2012

Если вы являетесь хостингом, это часть класса HttpSelfHostConfiguration: Документация MSDN класса HttpSelfHostConfiguration

Это будет использоваться следующим образом:

var config = new HttpSelfHostConfiguration(baseAddress);
config.MaxReceivedMessageSize = int.MaxValue;
config.MaxBufferSize = int.MaxValue;
15 голосов
/ 01 марта 2012

Возможно, вы захотите взглянуть на раздел httpRuntime в web.config вашего приложения ASP.NET. Они не названы одинаково, но может быть аналог того, что вы пытаетесь сделать. Например:

<configuration>
  <system.web>
    <httpRuntime maxRequestLength="16384" requestLengthDiskThreshold="16384"/>
  </system.web>
</configuration>

Примечание: Int32.MaxValue равно 2 147 483 647

4 голосов
/ 07 марта 2012

сначала я бы сделал эту конфигурацию в WCF App.config

<endpoint address ="" binding="basicHttpBinding" bindingConfiguration="basicHttp" contract="AddSubService.IService1">
      <!-- 
          Upon deployment, the following identity element should be removed or replaced to reflect the 
          identity under which the deployed service runs.  If removed, WCF will infer an appropriate identity 
          automatically.
      -->
      <identity>
        <dns value="localhost"/>
      </identity>
    </endpoint>

    <!-- Metadata Endpoints -->
    <!-- The Metadata Exchange endpoint is used by the service to describe itself to clients. -->
    <!-- This endpoint does not use a secure binding and should be secured or removed before deployment -->
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>

</services>

<bindings>
  <basicHttpBinding>
    <binding name="basicHttp" allowCookies="true"
             maxReceivedMessageSize="20000000"
             maxBufferSize="20000000"
             maxBufferPoolSize="20000000">
      <readerQuotas maxDepth="32"
           maxArrayLength="200000000"
           maxStringContentLength="200000000"/>
    </binding>
  </basicHttpBinding>
</bindings>

Затем попробуйте обновить ссылку на стороне ASP.NET, которая вызывает WCF в web.config, чтобы убедиться, что конечная точкаизменился на тот же.

1 голос
/ 15 ноября 2016

Я решаю эту проблему, создавая динамическое связывание, прежде чем вот так

BasicHttpBinding bind = new BasicHttpBinding();
bind.OpenTimeout = bind.CloseTimeout = bind.SendTimeout = bind.ReceiveTimeout = new TimeSpan(0, 30, 0);
bind.MaxBufferSize = int.MaxValue;
bind.MaxReceivedMessageSize = int.MaxValue;
...