Fast Reports won't read more complex XML files?

I have been trying to test how well Fast Reports works with XML data sources and it seems to fail on non-trivial situations.

One example is the data at http://www.xml-benchmark.org I get an error about nested tables. Is this by design or is there hope of this being changed?

Comments

  • edited 3:54AM
    Hello,

    FastReport does not perform any additional processing while reading xml files. The xml file is loaded into a DataSet by the following code:
          if (!String.IsNullOrEmpty(XsdFile))
            dataset.ReadXmlSchema(XsdFile);
          dataset.ReadXml(XmlFile);
    

Leave a Comment