技术人员——我收到了一条非常流行的消息:“已超出传入消息的最大消息大小配额 (65536)。要增加配额,请在适当的绑定上使用 MaxReceivedMessageSize 属性”。这里没有什么新东西——我需要按照消息中的内容去做。我的麻烦是我不确定在服务 web.config 文件中的哪个位置进行设置。
这是我第一次使用声明式工作流服务,所以请和我一起呆在那里。看起来生成的 web.config 文件比为其他类型的 wcf 服务生成的文件要轻一些。这是开箱即用的默认设置:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</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>
</configuration>
当我运行 svcutil.exe 来为此生成代理类时,生成的内容如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_TelaPointSMService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288"
maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192"
maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:18781/TelaPointSMService.xamlx"
binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_TelaPointSMService"
contract="TelaPointSMService" name="BasicHttpBinding_TelaPointSMService" />
</client>
</system.serviceModel>
</configuration>
因此,在工作流服务的 web.config 文件中,我要声明什么/如何声明以确保该服务可以处理大于默认设置的消息?我认识到客户端绑定中的设置也必须更改——但是在哪里进行更改是很清楚的。