<xmlSerializer> Element
Specifies whether an additional check of progress of the XmlSerializer is done.
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 |
|---|---|
|
Contains configuration settings for the XmlSerializer and XmlSchemaImporter classes. |
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".