Skip to main content

Omit schema from XML returned with QlmLicense.DownloadProducts

Comments

1 comment

  • Official comment
    Soraco Technologies

    Hi Jaime

    There's no way to download the products xml without the schema.

    You just need to read the schema and then the actual data.

    Example (assuming dataSet is the data returned by DownloadProducts):

    DataSet ds = new DataSet("NewDataSet");
    XmlReader reader = new XmlTextReader(dataSet, XmlNodeType.Element, null);
    ds.ReadXmlSchema(reader);
    ds.ReadXml(reader);

Please sign in to leave a comment.

Powered by Artica