| | |
problem reading xml file in c#
Please support our C# advertiser: $4.95 a Month - ASP.NET Web Hosting – Click Here!
![]() |
•
•
Join Date: Apr 2004
Posts: 573
Reputation:
Solved Threads: 6
Hello,
I am trying to read this xml file. But whenever I get to the load part of it, it gives me this error: "The data at the root level is invalid. Line 1, position 1"
This is the code I am working with:
doc is the filepath of the xml document.
If anybody has any idea on how to solve this problem that would be great.
I am trying to read this xml file. But whenever I get to the load part of it, it gives me this error: "The data at the root level is invalid. Line 1, position 1"
This is the code I am working with:
publicstatic Response Message(string doc) { StringReader reader = new StringReader(doc); XmlTextReader textReader = new XmlTextReader(reader); XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(textReader); //gets stuck here return Response.Message(xmlDoc); }
doc is the filepath of the xml document.
If anybody has any idea on how to solve this problem that would be great.
try:
If that doesn't work, post the xml document you're trying to read.
C# Syntax (Toggle Plain Text)
publicstatic Response Message(string doc) { XmlTextReader textReader = new XmlTextReader(doc); XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(textReader); return Response.Message(xmlDoc); }
![]() |
Similar Threads
- Multiple Table Reading From An Xml File (VB.NET)
- unable to read wesite uploaded XML file (C#)
- How to re-organized XML file and call XML file from my software (RSS, Web Services and SOAP)
- Error reading XML file in Javascript (JavaScript / DHTML / AJAX)
- Reading stream with two xml files in (Java)
- Pass XML file contents to a hash table. (Java)
- problem reading text file to struct (C++)
Other Threads in the C# Forum
- Previous Thread: System.Reflection
- Next Thread: adding innertext to an xml node
| Thread Tools | Search this Thread |
.net access algorithm animation array bitmap box c# check checkbox client combobox control conversion csharp customactiondata cyclethruopenforms data database datagrid datagridview dataset date/time datetime datetimepicker degrees directrobot dll draganddrop drawing encryption enum excel file filename files finalyearproject form format forms function gdi+ getoutlookcontactusinfcsvfile globalization gtk hash image input install installer java list math mono mouseclick mysql operator outlook2003 panel path photoshop picturebox pixelinversion pixelminversion post print programming radians regex remoting richtextbox save server sleep snooze socket sql sql-server statistics string table tables tcp text textbox thread time timer timespan update usercontrol usercontrols users validate validation visualstudio webcam wia wpf xml





