我需要更改我的web.config
文件並在 我的web.config
中添加MaxReceivedMessageSize
屬性 - 但是哪裏?將MaxReceivedMessageSize屬性放在WCF服務的web.config文件中的位置?
傳入消息的最大消息大小配額(65536)已被超出。要增加配額,請在適當的綁定元素上使用MaxReceivedMessageSize屬性。
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="false"><assemblies><add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /></assemblies></compilation>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
通常,它在綁定元素上設置。雖然你的web.config顯示沒有任何WCF服務的跡象 – 2012-04-01 18:34:41
@DmitriyReznik:最有可能的一個.NET 4 WCF服務,帶有方便的「默認」端點 – 2012-04-01 18:39:50