Azure上的WF服务需要在basicHttpBinding上更改/增加maxStringContentLength

时间:2012-10-19 22:18:19

标签: azure workflow

有点像这样的新手,但我花了一整天时间试图解决这个问题。我在Azure WebRole中有一个WF Service1.xamlx,其中包含web.config ServiceModel部分,包括:

<serviceHostingEnvironment multipleSiteBindingsEnabled="true" >
  <serviceActivations>
    <add relativeAddress="~/Service1.xamlx" service="Service1.xamlx" factory="System.ServiceModel.Activities.Activation.WorkflowServiceHostFactory"/>
  </serviceActivations>
</serviceHostingEnvironment> 

在我的客户端应用程序中,当我将服务引用添加到Service1.xaml时,这就是我获得的绑定(basicHttpBinding的所有默认设置):

    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IService" 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>

我需要增加绑定中的maxStringContentLength =“8192”值。我怎么做??

感谢您查看此内容以及您可以提供的任何帮助。

0 个答案:

没有答案