The original .NET type that represents an XML document. The more modern version is XDocument.

learn more… | top users | synonyms

1
vote
3answers
56 views

Get specific values from Xml

I don't how to extract the values from XML document, and am looking for some help as I'm new to C# I am using XmlDocument and then XmlNodeList for fetching the particular XML document Here is my ...
0
votes
1answer
61 views

Convert Generic List of objects to SqlXml

Please do not mark as duplicate without reading through as I have been googling this and searching on stackoverflow but I cant find exactly what I want. How do I convert a generic list of objects in ...
0
votes
0answers
31 views

Add root element to xml string and parse for data in java

I would like to add root element to my xml string and then parse the data. I have not well formatted xml string which throws an exception while parsing, So i would like to add root element to my xml ...
0
votes
0answers
12 views

error saving existing xml after updating node

I am trying to update an existing xml post but it fails when trying to save after the update with xmlexception illegal characters message. Here is my code: Dim xdoc As New XmlDocument ...
0
votes
0answers
9 views

how to dispose xmldocument memory

some settings stored in a xml file,i have to load them into my program. i used the code: XmlDocument doc = new XmlDocument(); using (XmlReader reader = XmlReader.Create(filePath)) { ...
0
votes
0answers
24 views

xmldocument & receiver on sharepoint

I'm developing on sharepoint since few months, and I begin to understand the structure of Sharepoint. However, there is some things I don't understand. For example, I don't understand how work the ...
0
votes
1answer
39 views

I have an error in reading the XML data of a given URL

I use the following code to read the XML data of a given URL but i have an error and i don't know how to fix that. I want to read the contents of a given URL but on XML not in HTML. any help will be ...
0
votes
1answer
24 views

Databinding XmlDocument

I have a UserControl where I want to bind textboxes to an XmlDocument. The important parts of the xaml-code looks like: ... <UserControl.DataContext> <XmlDataProvider x:Name="Data" ...
0
votes
1answer
28 views

how to parse multiple elements for a particular value

I am receiving a string of XML from a web service and am parsing it to pick up a few values that I need to save. I am putting the string into an XmlDocument and using the XmlNodeReader to parse the ...
1
vote
1answer
28 views

How to save xml resource file after update?

I am using C# to append the xml resource file like this. XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(Properties.Resources.setup_info); XmlNode node = xmlDoc.SelectSingleNode("data/Ename"); ...
4
votes
3answers
56 views

C# extracting data from XML

im trying to read weather data from XML in a url. The XML looks like this: <weatherdata> <location>...</location> <credit>...</credit> <links>...</links> ...
0
votes
1answer
25 views

Error while loading string to xml document in windows c#

I have an application where it reads the xml data, makes some changes and saves it into a word document. When i run the app 1st time the base URI is "C:\Documents\Visual Studio ...
0
votes
0answers
23 views

creating hierarchichal XML structure dynamically

I am creating an XML as shown by below code public class Group { [XmlElement(typeof(Manager))] public Employee [] Staff; [XmlElement (typeof(int)), XmlElement (typeof(string)), XmlElement ...
0
votes
3answers
78 views

get node value from string xml

I have this string XML string innerXml = @"<detail><WCFFaultExcepcion xmlns=""http://schemas.datacontract.org/2004/07/CIEL.DigiturnoMega.Entidades"" ...
0
votes
0answers
46 views

webbrowser and xmldocument.load uses a different session

I need to manipulate word document in my webserver. So to achieve this im loading webpage within the vb.net webbrowser control, using webbrowser_navigating event, im parsing all the url request and if ...
0
votes
1answer
31 views

Removing HTML Tags using XmlDocument in C# 4.0

I have below code where I am trying to delete all the html element which are passed. String inputString = "<img class="imgRight" title="Zürich, Switzerland" src="test.png" alt="Switzerland" ...
2
votes
1answer
67 views

Why does overwriting an XML file create an extra end tag?

I am creating an application in C# that has to write some user settings to an XML file. They are read perfectly fine, but when I try to write them back they create an extra end tag that the program ...
0
votes
3answers
62 views

How to check if a LoadXml() on a XmlDocument instance went wrong without using XmlException

I have to fix some code that looks like this: XmlDocument XmlFoo = null; try{ SomeUntrappedWCFCalls(); SomeUntrappedStringParsing(); SomeUntrappedXMLParsing(); .. XmlFoo = new ...
0
votes
1answer
42 views

DocumentElement.AppendChild throws object reference not set to an instance of an object

I'm trying to create a new xml file, write data into it and than save. Here is the code: XmlDocument doc= new XmlDocument(); XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", null, null); ...
0
votes
2answers
154 views

Obtain XML child nodes using C#

This is my first time attempting to parse XML using C# and feel like I'm running in circles right now. I am calling a WCF web service which, based upon user input, conducts a search through a database ...
0
votes
0answers
30 views

XML DOM replaceChild() throwing error 'the parameter is incorrect' in IE8

I have a classic ASP website which uses xml and xslt for user interface. On one of the forms a child popup window is used to update the contents of the main window. That was done using XML ...
1
vote
0answers
52 views

Is it safe to return a cloned XmlNode of a local IXmlDocument in Delphi?

I am on Delphi XE2. I have a common function that takes a XML string and returns the CloneNode of the root IXmlNode. It is supposed for commonizing the settings to the XMLDocument. The inside of the ...
0
votes
1answer
55 views

VB.NET: Open a file from a stream in Notepad

To open a file I could do this like Process.Start(fileName) For this it is necessary that the file exists in the file system. Now I use a XmlDocument object and want to open the content in an ...
0
votes
1answer
24 views

C# XmlDocument for grabbing API specific data?

I am trying to grab the specific value of an attribute in: http://data.alexa.com/data?cli=10&dat=snbamz&url=bing.com <SD> <POPULARITY URL="bing.com/" TEXT="16" SOURCE="panel"/> ...
0
votes
1answer
46 views

How to remove all child nodes of an XmlElement, but keep all attributes?

How to remove all child nodes of an XmlElement, but keep all attributes? Note, that XmlElement.RemoveAll also removes all attributes. What is a clean, elegant and well-performing way to remove all ...
0
votes
0answers
47 views

Invalid Signature Reading XML from Http Response

Preface: I've been trying to do XML signature verification on an HTTP response, and I need help! All code is .NET 4.0 using C#. So here's what I'm trying to accomplish: Create a signed XML ...
0
votes
0answers
17 views

XMLDocument to Listview

I have a web app, and currently on page load I have it getting xml from sql and putting it into an XMLDocument. The XML structure is as shown <error application=" " host=" " type=" " ...
0
votes
0answers
58 views

Android XML Parseing with tamil news API

I'm Using This API for my XML Parseing "http://cinema.dinamalar.com/rss.php" to get tamil news in list, But Its not working.. Please Help me.. This is my code.. public class MainActivity extends ...
2
votes
3answers
146 views

Rename the xmlnode name using c# dynamically

I am using the below code to rename the xmlnode name dynamically. It's looping work fine. But it does not change that. Please help me to do this. Sample XML doucment - <NewDataSet> - ...
0
votes
0answers
36 views

Replace XmlNode with another XmlNode

I am working in an older piece of code so I do not have the option to use XDocument. I am trying to replace one XmlNode with another but from some reason XmlDocument.ReplaceChild() complains that: ...
0
votes
1answer
66 views

How to read multiple xml elements from a file?

Hi all i have this xml document and i want to extract either the first or the second applications file path and file name etc. ive tried ...
1
vote
2answers
48 views

Can't get XML tag value

I have the following code protected static final String TAG_numFound = "numFound"; // Document street_xmlDoc = GetXMLDocument(street_url); Element results = ...
-4
votes
5answers
61 views

How to get XML file from XmlDocument? [closed]

I have got XML in document object. Now I want to create a file say Sample.xml. XmlDocument document How should I do that?
0
votes
1answer
51 views

Properly Update an XmlNode within an XmlDocument

I have been waging war with XmlDocuments all day. They are winning. I am building a component in .net 2.0 and am therefore forced to use it. Please take a look at this and help me regain some ...
0
votes
1answer
160 views

Treeview implementation child nodes missing

private void AddNode(XmlNode inXmlNode, TreeNode inTreeNode) { XmlNode xNode; TreeNode tNode; XmlNodeList nodeList; int i = 0; if (inXmlNode.HasChildNodes) { nodeList ...
0
votes
2answers
148 views

XSL Fo - Speacial characters

I am designing an xsl form, my source pdf contains 'Diamond' symbols I need to know how to use/create diamond character using xsl(is there any font family i can configure and use/can i get the ...
0
votes
1answer
98 views

Insert XML document to a specific node on another XML document (java)

I have an XML1: <letterContent> <key1>key1</key1> <key2>key2</key2> <type>456</type> <object1>789</object1> ...
0
votes
1answer
200 views

XmlDocument.LoadXML Name cannot begin with the '<' character

I get the error "Name cannot begin with the '<' character" when i try to pass a value including html tag like <table>, <div> ... to display items into xslt file using XsltArgumentList ...
0
votes
0answers
17 views

Creating xsi attributes [duplicate]

<session_id xsi:type="xsd:long">124123872</session_id I'm having trouble creating the session_id attribute, could anyone suggest a way to create the "xsi:type=""xsd:long". I've been able to ...
1
vote
3answers
236 views

How to replace nodes in System.Xml.XmlDocument?

Consider the following xml: <div> <a href="http://www.google.com/">This is:</a> <p>A test... <b>1</b><i>2</i><u>3</u></p> ...
1
vote
2answers
152 views

Read a 'fake' xml document (xml fragment) in a XmlTextReader object

[Case] I have reveived a bunch of 'xml files' with metadata about a big number of documents in them. At least, that was what I requested. What I received where 'xml files' without a root element, they ...
0
votes
1answer
192 views

Loading multiple xml files with c# XmlDocument leading to memory leakage

I am having serious troubles with processing a big number of xml files using XmlDocument. The idea is to extract from about 5000 .xml docs (approx. 20 MB each) a certain data, which is saved in text ...
0
votes
2answers
147 views

What is the easiest way to convert this XML document to my object?

I have an XMLDocument that i need to read in and convert into a set of objects. I have the following objects public class Location { public string Name; public List<Building> ...
0
votes
0answers
50 views

XMLDocument.Load finding non-existent char 0x29 [closed]

I have the following xml: <?xml version="1.0" standalone="no"?><!DOCTYPE WIN_DELIVERY_SMS SYSTEM "winbound_messages_v1.dtd"> <WIN_DELIVERY_2_SMS> <SMSMESSAGE> ...
0
votes
0answers
217 views

XmlDocument.Save Method (String) result in not well formed XML document without throwing an exception

We use XmlDocument.Load Method (string) to load a file from a local drive, edit the document and then save the changes to the same file with XmlDocument.Save Method (String) Plase see the code ...
0
votes
1answer
79 views

Select particular node value from XML

I have the following XML Document: <?xml version="1.0" encoding="utf-8" ?> <appSettings> <Path> blahblahblah </Path> <PathValue> blahblahblah ...
0
votes
1answer
122 views

I have load xml from remote machine

I have url like http://steepgraph5-pc/sgs/Client/Innovator.xml from that url I load Innovator.xml into XmlDocument and get node that contain path like C:\\Program Files ...
1
vote
1answer
53 views

Append Xml a given number of times

I am appending to an existing xml file: The code is below: I am using C# .net 4.5 VS 2012 and creating a WPF application. How could I append this say 30 times and only change D100 attribute number ...
0
votes
3answers
142 views

Looping through XML document

My XML file structure looks like this: <SalaryDetails> <Employee> <Name>George Dsouza</Name> <AnnualSalary>320000</AnnualSalary> ...
0
votes
0answers
150 views

XML validation error - The [Element Name X] is not declared

I am trying to use XmlDocument.Validate against a schema where the schema was created from the test XML document using MS Visual Studio 2010; but, it doesn't pass validation. I load the xml into ...

1 2 3 4 5 11