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

learn more… | top users | synonyms

1
vote
1answer
244 views

Scala NodeSeq reduce/foldLeft with newlines

Assume this is pretty easy but having a hard time printing out NodeSeq of html tags with newlines (so when I view source in web browser, I can scan top-to-bottom) As is, the NodeSeq is printed as one ...
0
votes
0answers
280 views

getting data with as3 from c# web service

i am getting my objects from c# web service but i cannot use them in xml list can you please have a look at my code. function LoadedXML(evt:ResultEvent):void { ...
0
votes
1answer
399 views

Checking for XML NODE null

Is there anyway to check for a null here before it reaches this part of the code? tmpLabelData(0) = m_node.Item("CONTAINER_NAME").InnerText Some XML has it while others do not. I cant seem to find ...
0
votes
1answer
654 views

Selecting a node from within an XML document?

So I have an xmlDocument and I need to check to see if a credit score was appended. To do this I am using xmlNodes.SelectSingleNode and then checking the innerText. My issue is this: one of the ...
-1
votes
1answer
276 views

Remove special characters from XML Node [closed]

Have some invalid xml files to process and make valid xml file. XML files contains the invalid element node as it contains the special character in element and node start with number. code snippet: ...
0
votes
1answer
173 views

How do i get the result for a NodeList?

Please I want to display the value of a Node in my text view but I am having trouble getting the value of the Node. I have a raw xml file with the name country and with nodes tagged name,alpha2 and ...
0
votes
1answer
1k views

how to use xpath in camel-context.xml to check if a particular node is exist or not

I am trying to develop a content-based routing camel application. This application will look at the folder src/data to see if there is a SOAP request file that has node ...
1
vote
2answers
469 views

XmlDocument.SelectSingleNode omit prefixes and namespaces

This question is a follow up of the answered question: XmlDocument.SelectSingleNode and prefix + xmlNamespace issue The problem is that its possible that in the future the namespaces prefixes of the ...
0
votes
1answer
88 views

XmlNode.SelectNode Weirdness (Not finding one of two very similar nodes)

I ran into a bug with a piece of software I manage that is used to create Bills of Materials based on user selections. It works with a large xml file that contains all of our part numbers as well as ...
0
votes
1answer
244 views

Node Update on hook Cron [closed]

I am trying to update Node on hook_cron function. I am using Drupal6 Here is my Code function offers_cron() { $query= db_query("SELECT * FROM {node} WHERE type = 'product'"); while($allnodes = ...
-1
votes
2answers
909 views

How to add new child node to existing child node

I need to make a car a child node of a track. I have looked online, and have tried several different ways, but I can't get it to work properly. Here is my xml file I generate. <RTDX ...
0
votes
1answer
337 views

Create single node if select single node is null

I have a program that updates a config file. For example, the config file may contain: <configuration> <userSettings> <setting name="phoneNumber" serializeAs="String"> ...
2
votes
1answer
96 views

PHP SimpleXMLElement not parsing <title> node

I have a simple well-formed XML doc that I'm writing to the page using PHP. For some reason the output never includes the title node, and after researching I can't figure this out. If I change the ...
1
vote
3answers
571 views

Delete outer xml node without deleting inner xml

Thats my xml: <application name="Test Tables"> <test> <xs:schema id="test" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
2
votes
1answer
128 views

What is the fastest way to retrieve a Xml node by ID

What is the fastest method to retrieve an XML node? I have an application that need the functionality of replace a specific node, when the document is small is fast but soon get bigger then it takes ...
1
vote
1answer
451 views

How to get invalid XMLNode in XmlReaderSettings.ValidationEventHandler in C#

I am trying to construct a custom Error Message for unsuccessful XML validation using the callback validation event. I noticed that the sender object of the element is XMLReader and i got the Element ...
1
vote
2answers
175 views

How to remove xml nodes that are not in an array of xpath strings?

I have an array of xpath values and an xml feed. When the feed comes in, I want to filter each xml file by removing the nodes that are not in my array of xpath's. I can think of a very dirty way to ...
0
votes
3answers
439 views

Read an XML node

Hi well I'm coding a C++ .DLL, and I want to know if it's possible to read an XML node with it. The XML file looks like this: <?xml version="1.0"?> <XML> <VIDEO> ...
0
votes
1answer
319 views

ASMX WebService returning XmlNode instead of custom object

Here is the webservice: Custom classes: public class A { public A() { } public B prop { get; set; } } public class B { public B() { } public A prop { get; set; } } ...
2
votes
1answer
374 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
82 views

Is the name->value pair of an attribute in XML considered to be two nodes, interpreted by XPATH?

The following article http://docs.oracle.com/javaee/1.4/tutorial/doc/JAXPXSLT3.html says that XPATH considers the following to be nodes: Root Element Text Attribute Comment Processing instruction ...
2
votes
2answers
1k views

XSLT function to get xpath to a node

I need a XSLT function which will return me the xpath to the node from which it called. XML <root> <node> <subnode /> <subnode /> ...
1
vote
1answer
353 views

Read other xml elements based on the root node and one of the element?

My XML is given below. <UrlRoutes> <ActivityPR> <Source>activity/editactivity</Source> <DestinationController>Activity</DestinationController> ...
0
votes
1answer
681 views

Reading xml and lookup in controller?

I have a sample xml <Lookup> <Controller Name="Activity1" > <action Name="Editactivity1" appgroup="Something" productcode="SomethingElse"/> </Controller> ...
0
votes
2answers
255 views

Reading XML node based on element?

I have a sample xml <UserSettings> <Source>settings/subscriptions</Source> <DestinationController>UserSettings</DestinationController> ...
0
votes
1answer
49 views

how to parse one integer node

I am new to the iPhone development and I need to parse one integer node from an xml file like this: <numbers> <current_number>1</current_number> </numbers> How can I ...
1
vote
2answers
538 views

XML node vs. attribute in Scala?

Remark: please consider XPath syntax dead here, thank you. I have xml node (HTML actually), and I would like to get an attribute of it. In C# (HTMLAgilityPack) I could get attribute object by name. ...
0
votes
2answers
147 views

C# XmlNode has ancestor type

I have an XmlDocument in the format below. If I perform the following search XmlNode title = xmlDoc.SelectNodes("//Book/Title[contains(., \"Title3\")]"); I will get back an XmlNode which is a ...
0
votes
1answer
767 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 ...
1
vote
1answer
726 views

Add a XmlNode with the namespace of the parent node in .Net

I am using XmlDocument and XmlNode to manipulate a xml file. Say I want to add a valid node called "Language" to the root, I use such code: Dim languageNode As XmlNode = ...
0
votes
1answer
268 views

Csharp XmlNode select single node error

I am trying to delete an element on a specific match between the value from a textbox and from my Xml file. This is my code and I am getting an error in: string x = ...
0
votes
1answer
521 views

SQL Query to get xml node values from nvarchar column is very slow

I have one table called tblAdmissions, one of the column in this table is called "ProgramInformation". This column contain xml string like <row ...
1
vote
1answer
801 views

Select XML Node value by Attribute Value with multiple levels

I've been searching for an answer for a few days now but don't seem to be getting anywhere. I'm looking to get to value further in the XML code than I've seen examples for and with more attributes to ...
0
votes
2answers
239 views

Breaking up XML string in C#

I have got an XML node called 'structNumber' which has data similar to '4.2' I select the node using: XmlNode xnChapNr = xDoc.SelectSingleNode("//./structNumber"); And at present I am displaying ...
0
votes
3answers
309 views

How can I parse XML of having multiple Nodes with same name and show in different controller?

See the XML below http://sosmoths.com/.xml/moths.xml This XML having multiple images name, I have to show the different title(There are four title) in their respective Controller. I have 4 ...
0
votes
1answer
70 views

Search XmlNode by attribute

I have XmlDocument. I don't know XPath, I only know that this xml document has node named "h3" with attribute id="PortalName" and this attribute is unique for all xml document. How to find this node? ...
0
votes
1answer
127 views

Need to read the previous node's child values to format the current node's value using xsl?

I need to use the formats tag while displaying the contents of rowdata, in the rowdata tags. the xml is follows: "temp.xml" <?xml version="1.0" encoding="iso-8859-1"?> <?xml-stylesheet ...
0
votes
0answers
408 views

XmlNode returns in OuterXml unexpected namespace xmlns

I have XmlNode object with next attributes: But when i call OuterXml Property i have all those attributes and also xmlns attribute with namespace included. But i dont wath to have this namespace ...
0
votes
3answers
205 views

Extracting the value of nodes from xml

I have two different XML files , the first one is a template xml and the second one is the actual xml. The template xml contains only the elements where as the actual xml contains some of the elements ...
2
votes
2answers
180 views

Add nodes into deeper branches of XML tree

I'm developing a web interface that enables admins to ban/unban particular users from my server whose software depends on an XML file to determine ban status of users. Initially, the 'Bans.xml' has ...
0
votes
2answers
623 views

Saving Particular Node in XML File

I am populating textboxes with information from a particular node based on it's ConfirmNum. Then when all info is updated, I am saving information (by a submit button) back to the particular node. ...
1
vote
1answer
2k views

How populate XmlNodeList with all the children of a node with the same name?

Given a XmlNode containing the following XML fragment, how do I fill XmlNodeList with book nodes? XMLNode nodeLibrary contains: <library> <book> <title>Three Little ...
-1
votes
2answers
161 views

Help moving from one xmlnode to another of the same name

I'm trying to compare one attribute value to another, if it returns true i do nothing if false then i add some stuff. Heres the xml or part of it. <tv grabber-info-name="MCE7-digiguide"> ...
8
votes
1answer
3k views

In C#, how do I convert a XmlNode to string, with indentation? (Without looping)

This has got to be such a simple question but I just can't get the answer. I have an XmlNode and all I want to do is output this node, as a string, with indentations (tabs or spaces) intact to ...
4
votes
3answers
7k views

Loop through multiple subnodes in XML

<Sections> <Classes> <Class>VI</Class> <Class>VII</Class> </Classes> <Students> <Student>abc</Student> ...
1
vote
1answer
265 views

what does this xpath means “//Form/*[. = 'on']”

I am newbie in xml related things I am not able to understand : SelectNodes(@"//Form/*[. = 'on']"); Note : SelectNodes is a function of XmlNode.(related to XmlDocument) Please tell me what this ...
1
vote
1answer
3k views

Add XmlNode to XmlElement

I get a soap envelope back from a web service with customer data such as name and address etc. The address does not contain city/suburb but postcode. I have all the city and suburbs with their post ...
0
votes
1answer
460 views

Soap Sending Handled Manually - XmlNode: NodeTypes and Attributes read only

I have to make a call to a webservice but building the xml manually. I've chosen System.Xml to do this but it's causing me a lot of pain. Every SOAP I know consts of 3 parts: The XmlDeclaration ...
0
votes
1answer
793 views

AS3: XPath returns XMLNode instead of XMLList if single match?

AS3 I'm trying to dynamically load pictures based on XML file. The problem that Im stuck with is a function that is supposed to return found node from supplied identifier. Like in the following code ...
0
votes
1answer
245 views

Is it possible to count number of XML nodes in a node-set with JSTL XML tags in jsp?

I'm trying to count the number of book nodes from the xml below: <books> <book>Title1</book> <book>Title2</book> <book>Title3</book> ...