最大数组长度配额

Posted

技术标签:

【中文标题】最大数组长度配额【英文标题】:Maximum array length quota 【发布时间】:2010-10-02 15:46:54 【问题描述】:

我正在编写一个小型 WCF/WPF 应用程序来调整图像大小,但是当我尝试从客户端向我的服务发送大小为 28K 的图像时,WCF 让我很伤心。当我发送较小的图像时,该服务运行良好。我立即认为这是一个配置问题,我在网上搜索了有关绑定配置中 MaxArrayLength 属性的帖子。我已将客户端和服务器上这些设置的限制提高到最大 2147483647,但我仍然收到以下错误:

格式化程序在尝试反序列化消息时抛出异常:尝试反序列化时出错 参数http://mywebsite.com/services/servicecontracts/2009/01:OriginalImage。 InnerException 消息是“反序列化 System.Drawing.Image 类型的对象时出错。 读取 XML 数据时已超出 (16384)。可以通过更改创建 XML 阅读器时使用的 XmlDictionaryReaderQuotas 对象的 MaxArrayLength 属性来增加此配额。有关详细信息,请参阅 InnerException。

我已将客户端和服务器配置设为相同,它们如下所示: 服务器:

<system.serviceModel>
    <bindings>
        <netTcpBinding>
            <binding name="NetTcpBinding_ImageResizerServiceContract" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
                hostNameComparisonMode="StrongWildcard" listenBacklog="10"
                maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="10"
                maxReceivedMessageSize="2147483647">
                <readerQuotas maxDepth="32"
                              maxStringContentLength="2147483647"
                              maxArrayLength="2147483647"
                              maxBytesPerRead="2147483647"
                              maxNameTableCharCount="2147483647" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
                <security mode="Transport">
                    <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
                    <message clientCredentialType="Windows" />
                </security>
            </binding>
        </netTcpBinding>
    </bindings>
    <behaviors>
        <serviceBehaviors>
            <behavior name="ServiceBehavior">
                <serviceMetadata httpGetEnabled="true" />
                <serviceDebug includeExceptionDetailInFaults="false" />
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <services>
        <service name="LogoResizer.WCF.ServiceTypes.ImageResizerService" behaviorConfiguration="ServiceBehavior">
            <host>
                <baseAddresses>
                    <add baseAddress="http://localhost:900/mex/"/>
                    <add baseAddress="net.tcp://localhost:9000/" />
                </baseAddresses>
            </host>
            <endpoint binding="netTcpBinding" contract="LogoResizer.WCF.ServiceContracts.IImageResizerService" />
            <endpoint  address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        </service>
    </services>
</system.serviceModel>

我的客户端配置如下:

 <system.serviceModel>
    <bindings>
        <netTcpBinding>
            <binding name="NetTcpBinding_ImageResizerServiceContract" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
                hostNameComparisonMode="StrongWildcard" listenBacklog="10"
                maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="10"
                maxReceivedMessageSize="2147483647">
                <readerQuotas maxDepth="32" 
                              maxStringContentLength="2147483647"
                              maxArrayLength="2147483647" 
                              maxBytesPerRead="2147483647" 
                              maxNameTableCharCount="2147483647" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
                <security mode="Transport">
                    <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
                    <message clientCredentialType="Windows" />
                </security>
            </binding>
        </netTcpBinding>
    </bindings>
    <client>
        <endpoint address="net.tcp://localhost:9000/" binding="netTcpBinding"
            bindingConfiguration="NetTcpBinding_ImageResizerServiceContract"
            contract="ImageResizerService.ImageResizerServiceContract"
            name="NetTcpBinding_ImageResizerServiceContract">
            <identity>
                <userPrincipalName value="me@domain.com" />
            </identity>
        </endpoint>
    </client>
</system.serviceModel>

似乎无论我将这些值设置为什么,我仍然会收到一条错误消息,说 wcf 无法序列化我的文件,因为它大于 16384。有什么想法吗?

更新:为了我的隐私,userPrincipalName 标签中的电子邮件地址已被更改

【问题讨论】:

考虑将您自己的答案标记为正确。 :) ImageResizerService 是什么?任何示例代码? 【参考方案1】:

我的错误 - 我忘记在我的服务器端配置中将绑定配置应用到我的端点。服务器配置应为:

<system.serviceModel>
    <bindings>
        <netTcpBinding>
            <binding name="NetTcpBinding_ImageResizerServiceContract" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
                hostNameComparisonMode="StrongWildcard" listenBacklog="10"
                maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="10"
                maxReceivedMessageSize="2147483647">
                <readerQuotas maxDepth="2147483647"
                              maxStringContentLength="2147483647"
                              maxArrayLength="2147483647"
                              maxBytesPerRead="2147483647"
                              maxNameTableCharCount="2147483647" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
                <security mode="Transport">
                    <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
                    <message clientCredentialType="Windows" />
                </security>
            </binding>

        </netTcpBinding>
    </bindings>
    <behaviors>
        <serviceBehaviors>
            <behavior name="ServiceBehavior">
                <serviceMetadata httpGetEnabled="true" />
                <serviceDebug includeExceptionDetailInFaults="false" />
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <services>
        <service name="LogoResizer.WCF.ServiceTypes.ImageResizerService" behaviorConfiguration="ServiceBehavior">
            <host>
                <baseAddresses>
                    <add baseAddress="http://localhost:900/mex/"/>
                    <add baseAddress="net.tcp://localhost:9000/" />
                </baseAddresses>
            </host>
            <endpoint bindingConfiguration="NetTcpBinding_ImageResizerServiceContract" binding="netTcpBinding" contract="LogoResizer.WCF.ServiceContracts.IImageResizerService" />
            <endpoint  address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        </service>
    </services>
</system.serviceModel>

注意 bindingConfiguration="NetTcpBinding_ImageResizerServiceContract" 已添加到 netTcp 端点。我的应用程序现在可以处理更大的图像。甜蜜。

【讨论】:

我只是在桌子上连续敲打了大约 4 个小时,试图解决这个确切的问题 - 同样的问题,绑定没有正确映射。谢谢! @Dav Evans 我也有同样的问题。但是我正在将大字节数组从 windows phone 8 传输到 WCF 服务。我听说 wp8 只支持basicHttpBinding。那么您对此有什么解决方案吗? 我在 Windows Xp 和 Win7 上遇到了同样的问题。使用上面提供的解决方案,这在 Win7 上得到了解决,但在 Windows XP 上问题仍然存在。蚂蚁线索?【参考方案2】:

请在绑定中添加&lt;readerQuotas&gt;

这是上传和下载字节[]时的主要问题,它解决了我的问题。

<basicHttpBinding>
    <binding name="ServicesBinding" transferMode="Streamed" maxBufferSize="200000000"
        maxReceivedMessageSize="200000000" messageEncoding="Text"  
        receiveTimeout="00:10:00">
        <readerQuotas maxDepth="2147483647"
            maxStringContentLength="2147483647"
            maxArrayLength="2147483647"
            maxBytesPerRead="2147483647"
            maxNameTableCharCount="2147483647" />
    </binding>
</basicHttpBinding>

【讨论】:

【参考方案3】:

我使用了 Microsoft SDK SvcConfigEditor。如果你使用 Visual Studio(它有自己的版本),你就有这个。它也是免费下载的。

在您的硬盘上(检查 Program Files 和 Program Files (x86)):

C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 工具\SvcConfigEditor.exe

C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\NETFX 4.0 工具\SvcConfigEditor.exe

如果您安装了多个 Microsoft SDK,您使用的版本将取决于您正在开发的 .NET 版本。该工具会抛出错误,让您知道您尝试打开错误版本下的 .dll 文件。

要使用该工具,请指向您的服务的 .dll 文件,然后让该工具完成繁重的工作。如果您有服务与服务(代理服务)通信,这将特别有用。另外,请记住,您可能需要为客户端(在应用程序中)和服务器配置(在 Web 服务中)进行配置设置。

我缺少服务器端端点上的配置。我必须做两件事:

    在我的服务器端配置上放置一个端点,使用 SvcConfigEditor 进行配置 记得在 SvcConfigEditor 工具中设置 MaxArrayLength

另外,ASP.NET 对这个值很挑剔,所以您可以尝试简化配置绑定并将其关闭:

  <serviceHostingEnvironment multipleSiteBindingsEnabled="false" />

【讨论】:

【参考方案4】:

它工作正常,以前在浏览 wcf 服务时显示 net.tcp://myservice.com/Ac_Service.svc/mex 的引用,但现在可以了 http://myservice.com/Ac_Service.svc?wsdl

它将来也能正常工作吗?没有任何问题。

【讨论】:

以上是关于最大数组长度配额的主要内容,如果未能解决你的问题,请参考以下文章

WCF 服务已超出最大数组长度配额 (16384)

Java数组最大长度

JS 数组中元素的长度最大是多少?能设置吗?

给定一个任意长度的java数组,如何算出数组内的数能组合出来的最大整数?

给定一个数组和一个总和,找到小于总和的最大长度连续子数组

O(N)求数组中小于等于K的最大子数组长度