Tagged Questions
The xmldocument 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 ...
19
votes
6answers
14k views
How would you compare two XML Documents?
As part of the base class for some extensive unit testing, I am writing a helper function which recursively compares the nodes of one XmlDocument object to another in C# (.NET). Some requirements of ...
19
votes
7answers
12k views
How to prevent blank xmlns attributes in output from .NET's XmlDocument?
When generating XML from XmlDocument in .NET, a blank xmlns attribute appears the first time an element without an associated namespace is inserted; how can this be prevented?
Example:
XmlDocument ...
17
votes
4answers
9k views
How to create a XmlDocument using XmlWriter in .NET?
Many .NET functions use XmlWriter to output/generate xml. Outputting to a file/string/memory is a very operation:
XmlWriter xw = XmlWriter.Create(PutYourStreamFileWriterEtcHere);
...
13
votes
4answers
62k views
C#: Read XML Attribute using XmlDocument
How can I read an XML attribute using C#'s XmlDocument?
I have an XML file which looks somewhat like this:
<?xml version="1.0" encoding="utf-8" ?>
<MyConfiguration ...
7
votes
2answers
13k views
Creating an XML document using namespaces in Java
I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal favourite tool so was hoping someone may be able to help me ...
7
votes
5answers
11k views
Removing nodes from an XmlDocument
The following code should find the appropriate project tag and remove it from the XmlDocument, however when I test it, it says:
The node to be removed is not a child of this node.
Does anyone know ...
6
votes
2answers
223 views
Why does XmlDocument.LoadXml throw System.Net.WebException?
Why does System.Xml.XmlDocument.LoadXml method throw System.Net.WebException ?
This is really mind boggling crazy, if MSDN was right, LoadXml should at most give me a System.Xml.XmlException.
Yet I ...
6
votes
2answers
309 views
Documenting overloaded methods with the same XML comments
Say I have this constructor:
/// <summary>
/// Example comment.
/// </summary>
public SftpConnection(string host, string username,
string password, int port) {...}
which has these ...
6
votes
3answers
728 views
How to remove all comment tags from XmlDocument
How would i go about to remove all comment tags from a XmlDocument instance?
Is there a better way than retrieving a XmlNodeList and iterate over those?
XmlNodeList list = ...
6
votes
5answers
5k views
XmlDocument.Load Vs XmlDocument.LoadXml
I just came across with a problem using XmlDocument.LoadXml.
The application was crashing with the following error:
"Data at the root level is invalid. Line 1, position 1"
After inspecting the XML ...
6
votes
6answers
7k views
Reading XML with an “&” into C# XMLDocument Object
I have inherited a poorly written web application that seems to have errors when it tries to read in an xml document stored in the database that has an "&" in it. For example there will be a tag ...
5
votes
5answers
132 views
Sort XML Nodes by Alpha.Numeric using C#
Say I have an XmlDocument that I generate that has InnerXml that looks like this:
<ORM_O01>
<MSH>
<MSH.9>
<MSG.2>O01</MSG.2>
</MSH.9>
...
5
votes
2answers
131 views
XmlDocument.Load fails, LoadXml works:
In answering this question, I came across a situation that I don't understand. The OP was trying to load XML from the following location: http://www.google.com/ig/api?weather=12414&hl=it
The ...
5
votes
3answers
152 views
Deleting XML using a selected Xpath and a for loop
I currently have the following code:
XPathNodeIterator theNodes = theNav.Select(theXPath.ToString());
while (theNodes.MoveNext())
{
//some attempts i though were close
...
5
votes
2answers
390 views
xmldocument and nested schemas
Using c# and .net 3.5 I'm trying to validate an xml document against a schema that has includes.
The schemas and there includes are as below
Schema1.xsd -> include another.xsd
another.xsd -> ...
5
votes
3answers
8k views
Convert XmlDocument to String
Here is how I'm currently converting XMLDocument to String
StringWriter stringWriter = new StringWriter();
XmlTextWriter xmlTextWriter = new XmlTextWriter(stringWriter);
...
5
votes
1answer
439 views
How can I add new root element to a C# XmlDocument?
I have, outside of my control, an XmlDocument which has a structure like the following:
<parent1>
...minor amount of data...
</parent1>
I have another XmlDocument, also outside of my ...
5
votes
6answers
2k views
C# - Parse malformed XML
I'm trying to load a piece of (possibly) malformed HTML into an XMLDocument object, but it fails with XMLExceptions... since there are extra opening/closing tags, and malformed XML tags such as ...
5
votes
4answers
4k views
How to programatically modify assemblyBinding in app.config?
I am trying to change the bindingRedirect element at install time by using the XmlDocument class and modifying the value directly. Here is what my app.config looks like:
<configuration>
...
5
votes
1answer
2k views
No Nodes Selected from Atom XML document using XPath?
I'm trying to parse an Atom feed programmatically. I have the atom XML downloaded as a string. I can load the XML into an XmlDocument. However, I can't traverse the document using XPath. Whenever I ...
5
votes
3answers
14k views
How do I add multiple namespaces to the root element with XmlDocument?
I need to create an XmlDocument with a root element containing multiple namespaces. Am using C# 2.0 or 3.0
Here is my code:
XmlDocument doc = new XmlDocument();
XmlElement root = ...
4
votes
3answers
71 views
XSLT vs. XMLDocument Data Type -> cycling through nodes with foreach -> appending to a Literal Control
I have a question regarding styling XML in C# using the .NET framework. I'm working on a web site that has 99% of it's data stored as XML. Quite often, I'm stuck to either using an XSLT to transform ...
4
votes
3answers
1k views
XML Document to String
What's the simplest way to get the String representation of a XML Document (org.w3c.dom.Document)? That is all nodes will be on a single line.
As an example, from
<root>
...
4
votes
4answers
590 views
ImportNode creates empty xmlns attribute
Regrading this code:
var tmpNewNode = xdoc.ImportNode(newNode, true);
if (oldNode.ParentNode != null)
{
oldNode.ParentNode.ReplaceChild(tmpNewNode, oldNode);
return true;
...
4
votes
2answers
1k views
XmlDocument.SelectSingleNode and xmlNamespace issue
I'm loading a string to an XML document that contains the following structure :
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" ...
4
votes
2answers
873 views
XML Parsing Error - C#
My code is having an XML parsing error at line 7 position 32 and I'm not really sure why
Exact Error Dump
5/1/2010 10:21:42 AM
System.Xml.XmlException: An error occurred while parsing EntityName. ...
4
votes
3answers
430 views
Is XMLDocument.Save an atomic operation?
Is there anyway another process monitoring for files created using XMLDocument.Save() could encounter a partial file? Does it make any difference if Save() is overwriting an existing file?
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
3answers
702 views
XPath for XML with namespace
I have an xml with various namespaces that i would like to query using .SelectNodes(string xPath)
The problem that i notice is that the xPath query return nothing as long as i have all those ...
4
votes
1answer
927 views
How to save XmlDocument with multiple indentation settings?
I need to save one XmlDocument to file with proper indentation (Formatting.Indented) but some nodes with their children have to be in one line (Formatting.None).
How to achieve that since ...
4
votes
4answers
5k views
How do I get the entire XML string from a XMLDocument returned by jQuery (cross browser)?
I have tried and failed to find out how to get the entire XML string from the XMLDocument returned by a GET. There are a lot of questions on SO on how to find or replace specific elements in the ...
4
votes
4answers
8k views
Decode CDATA section in C#
I have a bit of XML as follows:
<section>
<description>
<![CDATA[
This is a "description"
that I have formatted
]]>
</description>
</section>
...
4
votes
3answers
204 views
How should I manage different incompatible formts of Xml based documents
I have an application which saves documents (think word documents) in an Xml based format - Currently C# classes generated from xsd files are used for reading / writing the document format and all was ...
4
votes
1answer
4k views
Why is SelectSingleNode returning null?
I'm working with an XML document that contains a structure that looks similar to this:
<MT>
<Events>
<event id="1">
<field name="blah" value="a_value" type="atype" ...
4
votes
5answers
9k views
What is the simplest way to get indented XML with line breaks from XmlDocument?
When I build XML up from scratch with XmlDocument, the OuterXml property already has everything nicely indented with line breaks. However, if I call LoadXml on some very "compressed" XML (no line ...
3
votes
7answers
90 views
Using XPath to parse an XML document
Lets say I have the following xml (a quick example)
<rows>
<row>
<name>one</name>
</row>
<row>
<name>two</name>
</row>
...
3
votes
1answer
129 views
C#: Line information when parsing XML with XmlDocument
What are my options for parsing an XML file with XmlDocument and still retain line information for error messages later on? (as an aside, is it possible to do the same thing with XML Deserialisation?)
...
3
votes
2answers
404 views
Create a new XMLDocument by filtering an existing document in c# using xpath
I have a situation where I receive an XML (document) file from an external company. I need to filter the document to remove all data I am not interested in.
The file is about 500KB but will be ...
3
votes
2answers
349 views
XmlDocument.WriteTo truncates resultant file
Trying to serialize an XmlDocument to file. The XmlDocument is rather large; however, in the debugger I can see that the InnerXml property has all of the XML blob in it -- it's not truncated there.
...
3
votes
2answers
222 views
Search for nodes by name in XmlDocument
I'm trying to find a node by name in an XmlDocument with the following code:
private XmlNode FindNode(XmlNodeList list, string nodeName)
{
if (list.Count > 0)
{
foreach (XmlNode ...
3
votes
2answers
3k views
Writing XMLDocument to file with specific newline character (c#)
I have an XMLDocument that I have read in from file. The file is Unicode, and has the newline character '\n'. When I write the XMLDocument back out, it has the newline characters '\r\n'.
Here is the ...
3
votes
2answers
839 views
Get a specific number of results from an XmlDocument XPath query
I'm querying a Twitter RSS feed and supplying the results into a Repeater for display. I'd like to only get the first 5 results of the XPath query. Is there a way to do that in the XPath syntax or do ...
3
votes
4answers
1k views
C# xml read/write/xpath without using XmlDocument
I am refactoring some code in an existing system. The goal is to remove all instances of the XmlDocument to reduce the memory footprint. However, we use XPath to manipulate the xml when certain ...
3
votes
4answers
11k views
C# XMLDocument to DataTable?
I assume I have to do this via a DataSet, but it doesn't like my syntax.
I have an XMLDocument called "XmlDocument xmlAPDP".
I want it in a DataTable called "DataTable dtAPDP".
I also have a ...
3
votes
5answers
1k views
XmlDocument and slow schema processing
I have an xml template document that I need to load into an XmlDocument. eg
myXMLDocument.Load(myXMLFile);
However this is very slow as it loads in the dtd. I have tried both ...
3
votes
2answers
5k views
How do I add a custom XmlDeclaration with XmlDocument/XmlDeclaration?
I would like to create a custom XmlDeclaration while using the XmlDocument/XmlDeclaration classes in c# .net 2 or 3.
This is my desired output (it is an expected output by a 3rd party app):
...
2
votes
1answer
97 views
How do I use XML prefixes in C#?
EDIT: I have now published my app: http://pastebin.com/PYAxaTHU
I was trying to make console-based application that returns my temperature.
using System;
using System.Xml;
namespace GetTemp
{
...
2
votes
5answers
97 views
xml and & issue
I am new to XML and I am now trying to read an xml file.
I googled and try this way to read xml but I get this error.
Reference to undeclared entity 'Ccaron'. Line 2902, position 9.
When I go to ...
2
votes
0answers
101 views
What's the difference between xml methods (XML transformation) [closed]
can anyone help me please?
I need to transform one XML document to another by using XSLT.
So I have the next simple code:
var xmlDocument = new XmlDocument();
xmlDocument.Load("input.xml");
...