Tagged Questions

0
votes
2answers
29 views

XmlDocument.Save omitting elements

I have the following XML that is built up at runtime using an XmlDocument: <?xml version="1.0" standalone="yes"?> <NewConfig xmlns="http://tempuri.org/NewConfig.xsd"> …
0
votes
3answers
78 views

Having trouble with XmlDocument C#

I'm having trouble getting my program to read this XML file properly, it will need to write to it also but not yet. Just note that this is only a little bit of the code XmlDocumen …
0
votes
3answers
864 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". …
6
votes
4answers
2k 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). S …
0
votes
2answers
56 views

How prevent System.Xml.XmlDocument from escaping attributes values

Hi, I've got an XML doc to deal with that contains attributes like: <action name="foo -> bar"> If I make a simple: XmlDocument doc = new XmlDocument(); doc.Load(stIn …
0
votes
1answer
27 views

XmlDocument Helper methods

I'm having to use .NET 2.0 so can't use any of the nice XDocument stuff. I'm wondering if anyone has seen any helper/utility methods that still use XmlDocument but make xml creati …
1
vote
3answers
159 views

Adding nodes to non-default namespace results in duplicate qualifiers

I am rewriting an existing XmlDocument, which contains an element that has a new default namespace defined (see below, the assemblyBinding element) <?xml version="1.0" encoding …
1
vote
2answers
56 views

XmlDocument class is removing formatting, c#, .NET

Hi, i was wondering if anyone knows how to stop xmldocument.Save() from reformatting the document. Its not that the document is not formatted correctly with respect to XML, the pa …
1
vote
3answers
70 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 e …
1
vote
4answers
5k 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 xmlns= …
1
vote
4answers
108 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 …
1
vote
0answers
54 views

XMLTextWriter to XMLDocument

I've got an XMLTextWriter writing to a Stream of a WebRequest. Everything works as it should: Dim wr As WebRequest = WebRequest.Create("https://wwwcie.ups.com/ups.app/xml/Ship …
0
votes
3answers
87 views

XmlDocument and the Formal Public Identifier

Why is my GetEntity function in my overloaded XmlResolver being passed the Formal Public Identifier when I load an xml file into an XmlDocument? Is this a bug or am I supposed to …
0
votes
1answer
48 views

How to keep in session XML-based objects?

I'm receiving data from web-services in XML and I'm using that data via objects, build upon received XML. So, sometimes I need to store such user-specific objects between requests …
6
votes
4answers
351 views

XDocument or XMLDocument

Hi everyone, 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 pl …

1 2 3 4 5 next
15 30 50 per page