Parse single XML node in Windows Phone
-
How to parse single xml node in Windows Phone, I have described my web service result in code: void abcd_Completed(object sender, ServiceReference1.abcdCompletedEventArgs e) { Xdocument doc = XDocument.Parse(e.Result); } my e.Result is <root>1234</root> if I run this code in emulator, I am getting the result but in device it returns error like this: "Data at Root level is invalid" how to solve this..I am stuck here.Thanks!!
-
Answer:
Data at Root level is invalid most likely means, that xml file has invalid structure. Note, that each xml file must start with header node: <?xml version="1.0"?> If your xml file doesn't have this header, XDocument.Parse method would not parse this file, as an xml. Also, here's an http://msdn.microsoft.com/en-us/library/bb345532.aspx at MSDN. See, how the xml file should look like. Now, your whole file looks like this: <root>1234</root> It's not an XML file. XML file should look like this: <?xml version="1.0" encoding="UTF-8"?> <root>1234</root> Then you can access the root value: string root = doc.Descendants("root").FirstOrDefault().Value;
Viraj Shah at Stack Overflow Visit the source
Other answers
If you need to parse a XML node you should use http://msdn.microsoft.com/en-us/library/system.xml.linq.xelement.parse.aspx instead of the http://msdn.microsoft.com/en-us/library/system.xml.linq.xdocument.parse.aspx But your case is the invalid close tag in your XML code, the <root> node has not been closed because the second <root> is the next open tag, you should change it to </root> Correct XML is: <root>1234</root>
Viacheslav Smityukh
Related Q & A:
- How to do HttpWebRequests from a Windows Phone 7?Best solution by stackoverflow.com
- How to add rows to gridview dynamically in windows phone?Best solution by Stack Overflow
- How to export a .p12 file on Windows phone?Best solution by docs.build.phonegap.com
- How to get XML node value in XSLT?Best solution by Stack Overflow
- how to parse a xml file using jquery and phonegap?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.