I'm using DocumentManagementClient.GetNodesInContainer to get a list of children nodes (sub-folders and documents) for an obj (folder). I noticed if there are more than 12 children nodes, the GetNodesInContainer call returns the following XML error:
{"The maximum nametable character count quota (16384) has been exceeded while reading XML data. The nametable is a data structure used to store strings encountered during XML processing - long XML documents with non-repeating element names, attribute names and attribute values may trigger this quota. This quota may be increased by changing the MaxNameTableCharCount property on the XmlDictionaryReaderQuotas object used when creating the XML reader. Line 1, position 392."}
Has anyone come across this error? is there a better alternative to using GetNodesInContainer?