如果有人可以帮我弄清楚为什么在拨打我的WCF服务时出现以下错误,我将永远感激。
传入邮件的最大邮件大小限额(65536) 超标。要增加配额,请使用MaxReceivedMessageSize 适当的绑定元素上的属性。
我尝试修改服务和客户端上的配置文件,并确保服务名称包含命名空间。我似乎无法取得任何进展。
这是我的服务配置设置:
<services>
<service name="CCC.CA-CP & Sightlines Campus Carbon Calculator">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="Binding2" contract="CCC.ICCCService" behaviorConfiguration="WebBehavior2" />
</service>
</services>
<bindings>
<basicHttpBinding>
<binding name="Binding2" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647"
maxBufferPoolSize="52428800" maxReceivedMessageSize="2147483647" messageEncoding="Text"
textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="16384"
maxBytesPerRead="20000" maxNameTableCharCount="16384" ></readerQuotas>
</binding>
</basicHttpBinding>
</bindings>
..
<dataContractSerializer maxItemsInObjectGraph="12097151" />
...
<requestLimits maxAllowedContentLength="157286400" />
...
<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="2147483647"...
我还使用相同的绑定值设置客户端配置。
这是服务合同:
namespace CCC
{
[ServiceContract(Name = "CA-CP & Sightlines Campus Carbon Calculator", Namespace = "http://www.sightlines.com/CCC/01")]
public interface ICCCService
{
....
}
提前感谢您提供任何帮助!
答案 0 :(得分:0)
服务标签的name属性没有类实现的名称。它在服务接口的“ServiceContract”属性中具有名称。感谢Vinay Kumar提出的建议。