Why do I get the error "The URI scheme is not valid"?
This error occurs often when you try to read raw xml into a DataSet with the ReadXml function. Please remember that the ReadXml function accepts a filename and not raw xml data from a string. If you need to load raw xml from a string you will need to use the function like this:
Used Classes:
DataSet
Code:
ds.ReadXml(new StringReader(strMyString));