Obtengo la siguiente excepción al intentar pasar un DTO sobre los servicios de WCF.WCF Maximum Read Depth Exception
System.Xml.XmlException: The maximum read depth (32) has been exceeded because XML data being read has more levels of nesting than is allowed by the quota. This quota may be increased by changing the MaxDepth property on the XmlDictionaryReaderQuotas object used when creating the XML reader. Line 1, position 5230.
at System.Xml.XmlExceptionHelper.ThrowXmlException
miradas vinculantes El app.config como este comportamiento en servicio
<binding name="WSHttpBinding_IProjectWcfService" closeTimeout="00:10:00"
openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="10240000" messageEncoding="Text"
textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
<readerQuotas maxDepth="200" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None" realm="">
<extendedProtectionPolicy policyEnforcement="Never" />
</transport>
<message clientCredentialType="UserName" negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
Web.config:
Y el DTO se ve así:
[Serializable]
[DataContract(IsReference=true)]
public class MyDto
{
Cualquier ayuda sería apreciada ya que soy tirando de mi pelo con eso.
¿Ha cambiado la configuración en el cliente y el servidor? Tengo la impresión de que tenía que hacer coincidir este cambio en ambos antes. –
Bastante inusual para tener una anidación tan profunda. Puede tener una referencia circular. Estoy pensando que necesitamos ver más de ese DTO; cambiar la anidación máxima puede ser solo una solución de tirita. – Aaronaught
He resuelto mi problema como expliqué aquí: http://stackoverflow.com/questions/5537794/error-while-deserializing-the-object-in-wcf – Adi