Tagged Questions
The xdocument tag has no wiki summary.
61
votes
4answers
14k views
XDocument or XMLDocument
I am now learning XMLDocument but I've just ran into XDocument and when I try to search the difference or benefits of them I can't find something useful, could you please tell me why you would use one ...
52
votes
4answers
14k views
Populate XDocument from String
I'm working on a little something and I am trying to figure out whether I can load an XDocument from a string. XDocument.Load() seems to take the string passed to it as a path to a physical XML file.
...
24
votes
5answers
27k views
Query an XDocument for elements by name at any depth
I have an XDocument object. I want to query for elements with a particular name at any depth using LINQ. When I use Descendants("element_name"), I only get elements that are direct children of the ...
18
votes
3answers
4k views
How to print <?xml version=“1.0”?> using XDocument
Is there any way to have an XDocument print the xml version when using the ToString method? Have it output something like this:
<?xml version="1.0"?>
<!DOCTYPE ELMResponse [
]>
...
11
votes
1answer
4k views
How do I add multiple Namespace declarations to an XDocument?
I'm using an XDocument to build an Xml document in a known structure. The structure I am trying to build is as follows:
<request xmlns:ns4="http://www.example.com/a" ...
10
votes
1answer
5k views
XDocument.Descendants() not returning any elements
I'm trying to bind a Silverlight DataGrid to the results of a WCF service call. I was not seeing the data displayed in the grid, so when I ran through the debugger, I notice that ...
8
votes
2answers
2k views
How to query an XDocument with LINQ when elements have a colon in their name?
I am trying to use LINQ to XML in an with the XDocument object. How do you query the result element in the example below?
<serv:header>
<serv:response>
...
7
votes
3answers
54 views
Why is my XDocument saving the declaration when I don't want it to?
I have the following code:
class Program
{
static void Main(string[] args)
{
using (var stream = File.Create(@"C:\test.xml"))
{
var xml =
new ...
7
votes
2answers
288 views
why does the Xdocument give me a utf16 declaration?
i'm creating a XDocument like this:
XDocument doc = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"));
when i save the document like this (doc.Save(@"c:\tijd\file2.xml");) , i get this:
...
7
votes
3answers
4k views
Xdocument does not print declaration
I try to use the domainpeople.com API and to do I need to use XML.
Currently I have an error saying "apiProtocol is not found" I guess then that my Xml document is malformed.
The Current xml sent is ...
7
votes
2answers
1k views
XDocument can't load xml with version 1.1 in C# LINQ?
XDocument.Load throws exception, when using XML file name of xml with version 1.1 instead of 1.0
Any clean solutions to resolve the error (No regex) and load the document?
7
votes
3answers
1k views
Is there an easy way to compare if 2 XDocuments are equal ignoring element/attribute order?
Unit testing my serialization code I found one failed because I had attributes listed in a different order (I'm just comparing the XDocument.ToString() values) and while I could fix that, it really ...
7
votes
2answers
4k views
6
votes
1answer
440 views
Linq-to-XML XElement.Remove() leaves unwanted whitespace
I have an XDocument that I create from a byte array (received over tcp/ip).
I then search for specific xml nodes (XElements) and after retrieving the value 'pop' it off of the Xdocument by calling ...
6
votes
2answers
2k views
how to use XPath with XDocument?
There is a similar question, but seems that solution didnt work out in my case
Wierdness with XDocument, XPath and namespaces
Here is the XML i am working with
<?xml version="1.0" ...
6
votes
1answer
6k views
XML file creation Using XDocument in C#
i've a list (List< string>) "sampleList" which contains
Data1
Data2
Data3...
How to create an XML file using XDocument by iterating the items in the list in c sharp.
The file structure is ...
5
votes
1answer
132 views
XmlTextReader vs. XDocument
I'm in the position to parse XML in .NET. Now I have the choice between at least XmlTextReader and XDocument. Are there any comparisons between those two (or any other XML parsers contained in the ...
5
votes
2answers
427 views
Remove whitespace in self closing tags when writing xml document
When writing out an xml document I need to write all self closing tags without any whitespace, for example:
<foo/>
instead of:
<foo />
The reason for this is that a vendor system ...
5
votes
1answer
98 views
Is it possible to pass an XDocument as a parameter to an action in ASP.NET MVC?
I am wondering if it is possible to write a controller action in ASP.NET MVC that takes as a parameter an XDocument. This would of course just mean that the form post would send a string of XML.
Is ...
5
votes
3answers
219 views
sorting entire xdocument based on subnodes
I have an xml of the following format:
<?xml version="1.0" encoding="utf-8"?>
<contactGrp name="People">
<contactGrp name="Developers">
<customer name="Mike" ...
5
votes
2answers
1k views
How can i sort an XDocument by attribute
I have a Xml
<Users>
<User Name="Z"/>
<User Name="D"/>
<User Name="A"/>
</User>
I want to sort that by Name. I load that xml using XDocument. How can i view that ...
5
votes
3answers
1k views
How do I have to change this XML string so that XDocument.Parse reads it in?
In the following code, I serialize an object into an XML string.
But when I try to read this XML string into an XDocument with XDocument.Parse, it gives me this error:
Invalid data at root level.
...
5
votes
2answers
2k views
How do I add a document type to an XDocument?
I have an existing XDocument object that I would like to add an XML doctype to. For example:
XDocument doc = XDocument.Parse("<a>test</a>");
I can create an XDocumentType using:
...
5
votes
3answers
2k views
Validating XML with XSD
I'm running into real difficulties validating XML with XSD. I should prefix all of this and state up front, I'm new to XSD and validation, so I'm not sure if it's a code issue or an XML issue. I've ...
5
votes
6answers
2k views
How does one test a file to see if it's a valid XML file before loading it with XDocument.Load()?
I'm loading an XML document in my C# application with the following:
XDocument xd1 = new XDocument();
xd1 = XDocument.Load(myfile);
but before that, I do test to make sure the file exists with:
...
4
votes
3answers
740 views
XDocument and Linq returns null if the element has xmlns attribute
Newbie with XDocuments and Linq, please suggest a solution to retrieve the data from a particular tag in the xml string:
If I have a XML string from webservice response (I formatted xml for ease):
...
4
votes
3answers
322 views
XDocument : is it possible to force the load of a malformed XML file?
I have a malformed XML file. The root tag is not closed by a tag. The final tag is missing.
When I try to load my malformed XML file in C#
StreamReader sr = new StreamReader(path);
batchFile = ...
4
votes
1answer
1k views
Parsing XML String in C#
I have looked over other posts here on the same subject and searched Google but I am extremely new to C# NET and at a loss. I am trying to parse this XML...
<whmcsapi version="4.1.2">
...
4
votes
2answers
1k views
Force XDocument to write to String with UTF-8 encoding
I want to be able to write XML to a String with the declaration and with UTF-8 encoding. This seems mighty tricky to accomplish.
I have read around a bit and tried some of the popular answers for ...
4
votes
1answer
495 views
StyleCop happy creation of Xml using XDocument / XElement / XAttribute
I like to create xml using the following formatting:
XDocument xml = new XDocument(
new XElement("Root",
new XElement("A",
new XAttribute("X", xValue),
new XAttribute("Y", ...
4
votes
2answers
266 views
How can I easily get a TextReader from an XDocument?
Given an XDocument instance, how can I easily get a TextReader that represents that instance?
The best I've been able to come up with is something like this (where xml is an XDocument instance):
var ...
4
votes
4answers
415 views
replacing xml tag with html value
I'm working with c# .Net
I have a question,
I'm loading Xml file with XDocument.xDoc.Load(file), but it fails because in my content I also have xml tags:
Example: ...
4
votes
1answer
1k views
how to load a XDocument when the xml is in a string variable?
How do I load an XDocument when the xml is in a string variable?
4
votes
2answers
2k views
XDocument/Linq concatenate attribute values as comma separated list
If I have the following xml:
XDocument xDocument = new XDocument(
new XElement("RootElement",
new XElement("ChildElement",
new ...
4
votes
3answers
20k views
How to Get XML Node from XDocument
How to Get an XML Element from XDocument using LINQ ?
Suppose I have an XDocument Named XMLDoc which is shown below:
<Contacts>
<Node>
<ID>123</ID>
...
3
votes
1answer
122 views
Losing newlines with XDocument
I'm populating a TreeView with nodes based on an XML document. However, it seems that when I go to put an attribute's value into a textbox, it loses it's newlines/carriage returns/tabs.
I start by ...
3
votes
3answers
131 views
How to linq to xml
<?xml version="1.0" encoding="UTF-8" ?>
<Accounts>
<Account id="usama" password="3210" lastUpdated="6/16/2011 11:21:59 AM" nextUpdate="6/16/2011 11:36:59 AM">
<SubAccount ...
3
votes
3answers
2k views
XDocument: saving XML to file without BOM
I'm generating an utf-8 XML file using XDocument.
XDocument xml_document = new XDocument(
new XDeclaration("1.0", "utf-8", null),
new XElement(ROOT_NAME, ...
3
votes
2answers
150 views
Is there a way to create an immutable (read-only) XDocument?
I have an API that returns XElement-s, and I want the document behind those XElement-s to be immutable (read-only). I need it for:
1) Not to give devs an ability to change it accidentally :)
2) ...
3
votes
2answers
237 views
Why are all of my line-breaks changing from “/r/n” to “/n/” and how can I stop with from happening?
I am saving my files as xml documents, using XDocument.Save(path), and after saving and loading a document all of the line breaks have changed from "/r/n" to "/n/". Why is this happening and how can I ...
3
votes
1answer
842 views
.NET: XDocument missing XDeclaration?
When I write out this to the console, the output is missing the XDeclaration content. What gives?
var map = new XDocument(
new XDeclaration("1.0", "UTF-8", null),
new ...
3
votes
2answers
997 views
Manually iterating over a selection of XML elements (C#, XDocument)
What is the “best practice” way of manually iterating (i.e., one at a time with a “next” button) over a set of XElements in my XDocument? Say I select the set of elements I want thusly:
var elems ...
3
votes
2answers
6k views
Find Elements by Attribute using XDocument
This query seems to be valid, but I have 0 results.
IEnumerable<XElement> users =
(from el in XMLDoc.Elements("Users")
where (string)el.Attribute("GUID") == ...
3
votes
2answers
868 views
Is there a way to use a dictionary or xml in the Application Settings?
I have to store a complex type in the application settings. I thought that storing it as XML would work best.
The problem is I don't know how store XML. I prefer to store it as a managed XML rather ...
3
votes
2answers
570 views
XDocument change all attribute names
I have an XDocument that looks similar to
<root>
<a>
<b foo="1" bar="2" />
<b foo="3" bar="4" />
<b foo="5" bar="6" />
...
3
votes
1answer
789 views
return xdocument from wcf service
How can i return xdocument from wcf service??? what i need to do to let wxf service's method return a object of xdocument?
3
votes
1answer
822 views
Validate a XDocument against schema without the ValidationEventHandler (for use in a HTTP handler)
(I am new to Schema validation)
Regarding the following method,
System.Xml.Schema.Extensions.Validate(
ByVal source As System.Xml.Linq.XDocument,
ByVal schemas As ...
3
votes
2answers
933 views
Using XDocument to write raw XML
I'm trying to create a spreadsheet in XML Spreadsheet 2003 format (so Excel can read it). I'm writing out the document using the XDocument class, and I need to get a newline in the body of one of the ...
3
votes
2answers
397 views
Can I assign a BaseUri to an XDocument?
When I load an XML document from disk into an XDocument, that XDocument has a ready-only property BaseUri that contains the original XML document's location on disk. In other words,
XDocument doc = ...
3
votes
1answer
2k views
How to correctly open a FileStream for usage with an XDocument
I want to append some nodes to an xml document using Linq2XML. The file in question is being used by other processes and they should be able to read the file while I update it. So I came up with this ...