| | |
problem reading xml file in c#
Please support our C# advertiser: Intel Parallel Studio Home
![]() |
•
•
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 array barchart bitmap box broadcast c# check checkbox client combobox control conversion csharp custom customactiondata database datagrid datagridview dataset datastructure date/time datetime datetimepicker degrees development dll draganddrop drawing encryption enum event excel file filename files form format forms function gdi+ gis gtk hash image index input install java label list listbox mandelbrot math mouseclick mysql operator outlook2003 path photoshop picturebox pixelinversion pixelminversion post programming radians regex remoting richtextbox safari server sleep snooze socket sql statistics stream string table tables tcp text textbox thread time timer update usercontrol usercontrols validation visualstudio webbrowser webcam wia windows winforms wpf xml





