xmldom Questions
1
Solved
I was using a node module xmldom. However, it always prints out a huge chunk of warnings and errors like the following:
@#[line:484,col:1]
[xmldom warning] attribute "hidden" missed quot(")!!
@#[l...
4
Solved
I need to load and read an XML file using JavaScript.
The following code works fine in Firefox, IE and Opera:
function loadXMLDoc(dname) {
var xmlDoc
// Internet Explorer
try {
xmlDoc = new ...
Meingoldas asked 26/8, 2013 at 10:39
1
Solved
I'm getting the following error with the Microsoft.XMLDOM XML parser in Microsoft EDGE:
Script(1,1)
Sometimes it says start tag does not match end tag. And other times it gives another error. I ...
Pulpwood asked 24/5, 2017 at 1:48
1
Solved
I use https://github.com/jindw/xmldom and want check parseerrors on XML files.
The documentation write it's necessary to overwrite locator + errorHandler on constructor of DOMParser.
But I can't f...
2
I am trying to write a vbscript to automate the configuration of a storage array. I'm having some difficulty figuring out how best to navigate the XML.
An example section of my XML:
<SERVER>...
3
Solved
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...
Gasholder asked 10/4, 2013 at 12:14
2
Solved
I just installed IE10 on my Windows 7, and I've noticed that, even if I'm glad that XMLs from AJAX requests are now compatible DOM documents, a rather basic function like document.evaluate is still...
Hebrides asked 22/11, 2012 at 23:58
1
Solved
I am trying to get xml text from an IXMLDocument like so.
Doc.XML.Text;
This gives me the xml text but it includes the xml declaration.
<?xml version="1.0"?>
Is there a way I can get th...
Hemihedral asked 22/1, 2014 at 22:27
2
Solved
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 elem...
2
Solved
I'm wondering what happened to the xercesxmldom unit as one of the XML DOM implementations.
It seems to have disappeared in Delphi XE.
Why?
(I searched the docs; couldn't find any relevant info on...
1
Solved
I have a XML file which has a node which is commented out. I have created this node using the syntax:
relTableCommentedNode = xDoc.CreateNode(XmlNodeType.Comment, "RELTABLECOMMENTED", "np");
What...
1
I have written a VBScript which is supposed to tranverse all nodes in an XML file, irrespective of the depth of the tree. This it does well except that the node names for the those nodes which are ...
4
Solved
I have to generate XML documents in PL/SQL from some tables in Oracle. I have never done this before, and I have found there seem to be a few main ways to do it:
xmldom API
xml functions (such as...
Surmise asked 30/11, 2009 at 19:19
1
© 2022 - 2024 — McMap. All rights reserved.