4

我有一个 WCF 服务操作,它接受一个字节数组作为其数据合同的一部分。该服务仅在内部公开(不向互联网公开),我想增加配额以允许 10MB 字节数组。

该服务托管在 IIS7 中。当我尝试发送超过默认长度的字节数组时,我收到以下异常消息:

反序列化 MyService.ServiceContracts.Data 类型的对象时出错。读取 XML 数据时已超出最大数组长度配额 (16384)。可以通过更改创建 XML 阅读器时使用的 XmlDictionaryReaderQuotas 对象的 MaxArrayLength 属性来增加此配额。第 1 行,位置 22991。

这是配置:

<system.serviceModel>
    <netTcpBinding>
        <binding name="largeBinaryBinding" maxReceivedMessageSize="10001000" 
                 maxBufferPoolSize="80008000" maxBufferSize="10001000"
                 receiveTimeout="00:01:00" openTimeout="00:01:00" 
                 closeTimeout="00:01:00" sendTimeout="00:01:00">
            <readerQuotas maxArrayLength="10000000" />
        </binding>
    </netTcpBinding>

    <services>
        <service name="MyService">
            <endpoint binding="netTcpBinding"
                      bindingConfiguration="largeBinaryBinding"
                      bindingNamespace="http://my.services.co.uk/MyService"
                      contract="Services.MyService.ServiceContracts.IMyService" />
        </service>
    </services>
</system.serviceModel>

所以我的配置允许更大的消息,但 IIS 似乎忽略了这一点 - 我如何阻止它并允许大消息通过?

4

1 回答 1

9

同样,就在我发布问题后,我发现了答案!

使用 WAS 时,需要在配置的服务名中指定服务的完整类名。因此,在我的示例中,我的服务实现类MyService位于命名空间中Services。因此,在配置中,我需要

<service name="Services.MyService">
   ...

否则 IIS 会默默地忽略您精心设计的配置!多么方便。

于 2011-11-23T14:58:32.473 回答