XML Invalid Root Data
From Birnam Designs Wiki
I was trying to load an XML document with C# in ASP.NET and got this error:
The data at the root level is invalid. Line 1, position 1.
It turned out to be a simple mistake. I was trying to load with XmlDocument.LoadXml(pathtofile). Instead I should have used XmlDocument.Load(pathtofile).