Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
238 views

Perl XML::DOM Copy Node Tree Between Files

I'm just trying to add the people nodes from one XML to another with XML::DOM and even though I am cloning the tree in question, I am still getting a "WRONG_DOCUMENT_ERR" because it says the node came ...
2
votes
1answer
454 views

How do I make the following code portable for browsers other than Internet Explorer?

I have a source code that works well on Internet Explorer,but fails to work on Chrome or Firefox. I want to make it portable.Please Help. <html> <head> ...
2
votes
5answers
258 views

Should consecutive whitespace in an XML file be ignored by an XML reader?

At my work we have our own XML classes which build a DOM, but I'm not sure how consecutive whitespace should be handled? e.g. <some-text> Hello World </some-text> When this is read ...
1
vote
1answer
111 views

QTP - How to remove the XmlNode from the xml document?

I want remove an xml node from an xml document, but I don't know which function can be used to achieve that. Could you please tell me how to do that? Const XMLDataFile = "C:\TestData.xml" xmlDoc = ...
1
vote
1answer
293 views

How to construct a new document builder out of an existing builders node?

I have the following code: DocumentBuilderFactory dbFactory_ = DocumentBuilderFactory.newInstance(); Document doc_; DocumentBuilder dBuilder = dbFactory_.newDocumentBuilder(); StringReader reader = ...
0
votes
0answers
82 views

Sending XML DOM data (generated from PHP) to Google Maps returns “ An invalid or illegal string was specified” code: “12 ” on main.js line 91

I am writing an app that will take XML data generated by a PHP script and build the markers and info windows for Google Maps with the data. I use microAjax.js to get the data from the PHP script and I ...
0
votes
2answers
185 views

Adding XML DOM elements with jQuery- Is it possible?

I am trying to use jQuery to manipulate the DOM of an XML file I've loaded with ajax. I can select elements, empty them, and remove them, but not add them. jQuery rarely lets me down, but I am ...
0
votes
0answers
126 views

How to copy the contents of an XML file corresponding to an XML DOM object (in javascript) to a javascript string variable

On my client side javascript code I created an XML DOM object of an XML document using the loadXMLDoc() method. The url to the XML file passed as argument to the loadXMLDoc javascript method is ...
0
votes
0answers
51 views

Convert XML element to Option Tag

Is there a direct was to convert an Element Object to an HTMLOption Object? Let's suppose I have this XML: <?xml version='1.0'?> <options> <option ...
0
votes
2answers
83 views

DOM navigation: eliminating the text nodes

I have a js script that reads and parses XML. It obtains the XML from an XMLHttpRequest request (which contacts with a php script which returns XML). The script is supposed to receive 2 or more nodes ...
0
votes
2answers
64 views

Convert Element to Option

Is there a way to convert an Element Object to an HTMLOption object? I have one code that looks like this: var request = getXMLHttpRequest(); request.onreadystatechange = ...
0
votes
2answers
418 views

PHP XML DOM Uncaught exception 'DOMException' with message 'Wrong Document Error'

I am trying to learn XML and I know this is a problem with not properly importing the Nodes. But I can't quite figure it out. I've been looking around and most people don't have multiple child ...
0
votes
2answers
99 views

Why does XML Dom in Java report extra nodes?

I have a simple XML representation of a table below. When I traverse the top level only, with the code (included below). I get 5 nodes, when infact there are only 2 in the example provided (theader ...
0
votes
2answers
146 views

Error on php XML DOM

I got an error that I can't solve. $unsortedArray = array (array ( 'profileId' => '32', 'profileMiniature' => '32' ,'firstName' => 'Sarmad', 'lastName' => 'Nekomanesh', ...
0
votes
1answer
113 views

Help Modifying Generic REST Helper PHP Example Code to Support XML DOM

I found this example PHP source code at HTTP POST from PHP, without cURL I need some help modifying the example PHP source to support XML DOM for manipulating a REST API. I thought that if I update ...
0
votes
2answers
98 views

Follow-up to question on iterating over a graph using XML minidom

This is a follow-up to the question (Link) What I intend on doing is using the XML to create a graph using NetworkX. Looking at the DOM structure below, all nodes within the same node should have ...