XML document unit (element, entity, attribute, text, comment, notation, even document or it's fragment).

learn more… | top users | synonyms

98
votes
12answers
49k views

What's the difference between an element and a node in XML?

I'm working in Java with XML and I'm wondering; what's the difference between an element and a node?
3
votes
2answers
5k views

xmlNode to objects

I have been working with a 3rd party java based REST webservice, that returns an array of xmlNodes. The xmlNode[] respresent an object and I am trying to work out the best way to Deserialize the ...
1
vote
1answer
267 views

Split xml complex node elements into multiple nodes using xslt

Is there a way to split a parent node into multiple nodes using xslt? I want to transform the source xml into destination. Source xml <?xml version="1.0" encoding="utf-8"?> <rss ...
0
votes
3answers
1k views

how to get the attribute value of an xml node using java

I've an xml which looks like this: { <xml><ep><source type="xml">...</source><source type="text">..</source></ep></xml>} here i wanna retrieve the ...
-1
votes
1answer
108 views

how to merge two nodes having “the same father”, the same method and the same id=0 (using XSLT)?

I need to merge the two nodes street as they have the same: father node: city NEW YORK same method: modify same id: 0 Attributes values must be merged (See the output file at the end of this post) ...
-1
votes
1answer
64 views

how to merge two nodes having “the same father” and having a precise “method” sequence (using XSLT)?

I need to merge the two nodes MANHATTAN: because our system rule is the following: "CREATE A + MODIFY A" is still a "CREATE A with the merged attributes" input file: <?xml version="1.0" ...
2
votes
1answer
370 views

Setting node value using XPath Java

I'm trying to set a node value via an XPath. I have the following but it doesn't seem to change the actual files value. XPathFactory factory = XPathFactory.newInstance(); XPath xPath = ...
2
votes
2answers
2k views

is there any easy wasy to convert the XML output from sharepoint GetListItems() to a DataTable

i am able to retrieve data from sharepoint com.sharepoint2.Lists lists = new Lists(); lists.Credentials = new System.Net.NetworkCredential("user", "pwd", "domain"); lists.Url = ...
2
votes
1answer
4k views

Convert C# 2.0 System.Data.SqlTypes.SqlXml object into a System.Xml.XmlNode

I seem to always have problems with converting data to and from XML in C#. It always wants you to create a full XMLDocument object even when you think you shouldn't have to. In this case I have a ...
0
votes
1answer
765 views

Easiest way to add xml a node with a bunch of children nodes in .Net?

I need to modify a xml file (actually a .rdlc report file) and add some nodes which have a lot of children nodes (and those children nodes again have children nodes). Actually they are almost the same ...
0
votes
2answers
2k views

How to display treenodes by binding nodes in the treeview to nodes of the XML document

I have a Treeview where on selecting a node the attributes and values has to be displayed in listbox. In treeView1_AfterSelect, the text parsing code depends on the textual representation for a node ...