我有一个WCF SOAP服务,我试图将文件提交给太大的服务(128KB)。我已经浏览了互联网并发现了许多关于添加maxReceivedMessageSize,maxBufferSize和其他此类属性的建议,但无济于事。我还将maxRequestLength添加到httpRuntime,但这也不起作用。无论我做什么,我都会继续 HTTP错误413:请求实体太大。
错误
HTTP Error 413: Request Entity Too Large.
Web Config
<httpRuntime targetFramework="4.5.1" maxRequestLength="1048576"/>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="SomeBinding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" openTimeout="00:20:00"
receiveTimeout="00:20:00" closeTimeout="00:20:00" sendTimeout="00:20:00">
<readerQuotas maxDepth="200" maxStringContentLength="8388608" maxArrayLength="16384" maxBytesPerRead="2147483647" maxNameTableCharCount="16384" />
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
答案 0 :(得分:1)
即使您在绑定中设置了较大的配额,您的服务也不会使用该绑定,因为它永远不会分配到端点或设置为basicHttpBinding
的默认绑定
由于您的配置文件中没有定义明确的端点,因此可以通过省略basicHttpBinding
属性将绑定配置设置为name
的默认值,如下所示:
<binding maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647"
maxBufferSize="2147483647"
openTimeout="00:20:00"
receiveTimeout="00:20:00"
closeTimeout="00:20:00"
sendTimeout="00:20:00">
<readerQuotas maxDepth="200"
maxStringContentLength="8388608"
maxArrayLength="16384"
maxBytesPerRead="2147483647"
maxNameTableCharCount="16384" />
</binding>
如果不将其作为使用basicHttpBinding
(或将其分配给显式端点)的所有请求的默认设置,则服务将使用默认(和较小)值创建绑定。
有关默认绑定(以及端点和行为)的更多信息,请参阅A Developer's Introduction to Windows Communication Foundation 4。
答案 1 :(得分:1)
@Tim我已经在网上的几个地方看过这个,这是正确的,除了你错过了别的东西。我很困惑,因为我是WCF的新手,我的服务包装了另一个服务,这样我就可以在不改变现有系统的情况下执行新的逻辑。因此,我所做的任何更改只会应用于我正在调用的客户端。您需要将以下<services>
添加到<system.serviceModel>
,以便将这些更改应用于服务。
<services>
<service name="ANX.DEX001.WebService.EtPrintService">
<endpoint name="basicHttpBinding"
address="/EtPrintService.svc"
binding="basicHttpBinding"
contract="ANX.DEX001.WebService.IEtPrintService"
bindingConfiguration="APIPortBinding"/>
</service>
</services>