"500 Internal Server. The maximum array length quota (######) has been exceeded while reading XML data."
This can be modified by your Database Administrator (DBA), or someone with access to make changes directly on the server. If that describes you, here are the instructions to modify this value:
- Locate your
web.config
file (located in the root folder) - Search for the string
HifisReportService
- Find the endpoint element for
HifisReportService
. It should look something like this:
<endpoint address="http://HIFIS_DOMAIN_ADDRESS/HIFIS.DOMAIN.BusinessServices.HifisReportService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_Standard" contract="HifisReportServiceReference.IHifisReportService" name="WSHttpBinding_IHifisReportService">
- Identify the
bindingConfiguration
being used (for example:bindingConfiguration="WSHttpBinding_Standard"
) - Search for the binding element identified in step 4 (for example:
WSHttpBinding_Standard
). It should look something like this:
<binding name="WSHttpBinding_Standard" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:05:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="10485760" maxReceivedMessageSize="10485760" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
- Within the binding element identified in step 5, locate the
readerQuotas
object. It should look something like this:
<readerQuotas maxDepth="32" maxStringContentLength="4194304" maxArrayLength="101943040" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
- Increase the
maxStringContentLength
and/or themaxArrayLength
property to the desired values - Repeat steps 1-7 for the file located at
Domain\web.config