使用 WCF 服务返回字节数组时出现以下错误
“读取 XML 数据时超出了最大数组长度配额 (16384)。可以通过更改创建 XML 读取器时使用的 XmlDictionaryReaderQuotas 对象的 MaxArrayLength 属性来增加此配额。第 1 行,位置 23626。”
我什至试图增加
<wsHttpBinding>
<binding name="EnrollmentSoapBinding" maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647">
<readerQuotas maxArrayLength="2147483647" maxStringContentLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</wsHttpBinding>
还,
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
仍然没有运气。还有其他想法吗?