<xmlSerializer> Element 

Specifies whether an additional check of progress of the XmlSerializer is done.

<xmlSerializer checkDeserializerAdvance = "true"|"false" />

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute Description

checkDeserializeAdvances

Specifies whether the progress of the XmlSerializer is checked. Set the attribute to "true" or "false". The default is "true".

Child Elements

None.

Parent Elements

Element Description

<system.xml.serialization> Element

Contains configuration settings for the XmlSerializer and XmlSchemaImporter classes.

Remarks

By default, the XmlSerializer provides an additional layer of security against potential denial of service attacks when deserializing untrusted data. It does so by attempting to detect infinite loops during deserialization. If such a condition is detected, an exception is thrown with the following message: “Internal error: deserialization failed to advance over underlying stream.”

Receiving this message does not necessarily indicate that a denial of service attack is in progress. In some rare circumstances, the infinite loop detection mechanism produces a false positive and the exception is thrown for a legitimate incoming message. If you find that in your particular application legitimate messages are being rejected by this extra layer of protection, set checkDeserializeAdvances attribute to "false".

Example

The following code example sets the checkDeserializeAdvances attribute to "false".

<configuration>
  <system.xml.serialization>
    <xmlSerializer checkDeserializeAdvances="false" />
  </system.xml.serialization>
</configuration>

See Also

Reference

<system.xml.serialization> Element
XmlSerializer

Other Resources

XML and SOAP Serialization