We have a 2.0 framework app running on windows CE device with only 3.5 installed. We are getting a NotSupportedException exception when trying to run DataSet.ReadXml. Looking for ideas on how to fix this.
OpenVersionFile() ms is a MemoryStream with the data of the file
byte[] arrTemp = System.Text.ASCIIEncoding.Convert(System.Text.Encoding.ASCII,System.Text.Encoding.ASCII,ms.ToArray());
System.IO.MemoryStream memStream = new System.IO.MemoryStream(arrTemp,0,arrTemp.Length,false,false);
System.Xml.XmlTextReader xmlTR = new XmlTextReader(memStream);
dsVersion.ReadXml(xmlTR);
Here is the exception:
at System.Xml.Schema.XmlSchema.Read()
at System.Data.DataSet.ReadXSDSchema()
at System.Data.DataSet.ReadXml()
at System.Data.DataSet.ReadXml()
at GreyRT.Translate.OpenVersionFile()
DataSet.ReadXmlmethod – Rahul Jul 26 '11 at 16:36