Tagged Questions
0
votes
0answers
2 views
PHP, XML - appendCild DOMException
I trying to add new DOM element in root XML element but i recieve this error:
Uncaught exception 'DOMException' with message 'Wrong Document Error' ...path:43
CODE :
$favTag = ...
0
votes
1answer
21 views
java read xml root node description using JAXP
I have a simple xml document and I am trying to get the description of the root node using org.w3c.dom.Document
<?xml version="1.0" encoding="ISO-8859-1"?><students ...
0
votes
0answers
28 views
PHP XML DOM - Distinguishing nodes based on parent attributes/elements
First of all, thanks for the time reading this :)
I need help reordering an XML feed. I've tried many things and researched, but can't come up with a solution.
<xml>
<group>
...
0
votes
3answers
32 views
rename a childnode in a xml document
i got a problem with a parser.
i want to parse an xml structured like this:
<item>
...
<notes>
<item>
</item>
<item>
</item>
...
0
votes
1answer
18 views
Retrieving specific elements from XML file while having child nodes with same naming
I' am having some problems retrieving language localizations for teststep. I created the XML document down here and I want to have just <EN>Common Test</EN> <DE>Allgemeiner ...
0
votes
2answers
108 views
How do I delete XML nodes in PHP based on the information inside of it?
Preface: There are many questions similar to this that I've scoured through profusely. Nothing can quite answer what I need to do.
Here is my data structure. (obviously simplified)
<Upload>
...
0
votes
2answers
17 views
How to count inner XML elements with restriction to outer elements
I have a question on how to count elements in other elements by filtering the outer element by attribute. I have the following XML document:
<?xml version="1.0" encoding="ISO-8859-1" ...
1
vote
0answers
9 views
Access xml from ISBNDB
I have a java client and I try to get the XML DOM object from ISBNDB by passing the ISBN number of book. But I get null as the result. But I am able to get the xml when I hit the URL from my browser. ...
0
votes
1answer
32 views
Avoid duplicating namespaces during xml serialization using javascript
The following code
var ns1 = 'hello:world1',
doc = document.implementation.createDocument('nsdoc', 'doc', null),
outer = doc.createElement('outer'),
s = new XMLSerializer(),
elm;
...
0
votes
0answers
8 views
-1
votes
0answers
8 views
Ipad Safari and XML Dom ActiveX Object
Im trying to create a HTML page linking to an XML document using java script.
When using IE the page loads correctly but it does not load the XML data in safari and firefox.
I believe this is down to ...
0
votes
1answer
32 views
Strange XML indentation
So I'm writing an XML file, and the tabbing is coming out slightly wrong :
<BusinessEvents>
<MailEvent>
<to>Wellington</to>
...
0
votes
1answer
50 views
Getting attributes values from a node in XML file
I have an XML file and i want to get values of the nodes attributes in it, it works efficiently when the node is usual but is the case of nodes named like something:something it didn't give me back ...
1
vote
0answers
32 views
Append to an XML file
I am writing some data to an XML file.
Here is the code:
try {
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = ...
0
votes
2answers
24 views
Unable to read xml with namespace prefix using DOM parser
This is the input XML:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns2:SendResponse ...
3
votes
3answers
64 views
Parse XML into DOM tree with custom object implementations in Java
I want to parse an XML document into a DOM tree in Java such that certain objects (e.g. instances of org.w3c.dom.Node or org.w3c.dom.Element) in the tree can be downcast to instances of classes that I ...
0
votes
2answers
31 views
Find and fill XML nodes from a PHP object
First of all, sorry about my english.
So, I have an XML with a lot of nodes, like:
<first>
<second>
<third/>
<fourth/>
</second>
...
0
votes
1answer
18 views
Get number of defined element attributes in xml schema
I'm using Apache Xerces to parse xml and from some reasons I would need to find how many attributes an element has defined in xsd. element.getAttributes just gives me all present attributes. Any idea ...
-1
votes
1answer
51 views
Get php to read from an XML file [closed]
I'm a PHP beginner and need help with a little coding problem:
class _settings_file {
/**
* @param string $file
* @param array $settings array($settings_group => $settings_name) It
...
0
votes
0answers
24 views
Processing elements attributes
I have this xml:
<Root>
<BTS processid="28" processdesc="בחירת שמאי / מוסך" statusdesc="TEST1"
statusid="1099" requesteventts="2013-03-20 11:39:23.053120">
<btsstatusconv ...
0
votes
1answer
27 views
cvc-complex-type.3.2.2: Attribute xsi:schemaLocation is not allowed to appear in <people> in Java DOM
I am attempting to validate my XML using XSD in Java by using DOM validator.
Although, manually, I know that the document is indeed valid, DOM validator shouts back at me and says:
...
1
vote
1answer
42 views
Adding nodes to xml with DOM in inno Setup - strange problems
Very strange problem: I use the DOM to edit an xml file (a .exe.config file for an app that needs to interact with ours), but seeing as I have to bulk-add several similar sections, I made a function ...
-2
votes
0answers
44 views
Generating XML parsing code in Java [closed]
I need a tool that generate XML parsing code (DOM) in Java. I can't use JAXB or other tools because I'm using GWT, for that I need to access the DOM directly.
2
votes
1answer
66 views
Using window.open, document.open, and document.write to display XML (XML rendering gone)
This is related to another question, but is not a duplicate.
It deals with a proposed solution that I have reached an impasse.
I have the following code that reads an XML, makes changes, opens a ...
0
votes
0answers
16 views
Merge dom.Documents based on conditions [closed]
So, I have a base xml document as Document object in java. For example:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Values version="2.0">
<value ...
-4
votes
1answer
31 views
Get each url in array as a variable [closed]
This gets urls from bing and puts them in an array. I'm confused on how to get each individual url in a different variable though, anyone help?
<?php
function searchBing($search_term)
{
...
1
vote
1answer
44 views
Checking for success on xml node fetch in Inno Setup
I've read through CodeAutomation.iss and a bunch of other sources, but I couldn't find the answer to this...
Using the example provided, the xml objects are put in variables of the "Variant" type. I ...
0
votes
0answers
28 views
Jelly Bean loading assets
I've been testing my android app on the 2.3 OS, and until recently when I tested it on 4.1 all worked perfectly. My problem is that I load some XMLs from the asset folder and on the 2.3 all files are ...
0
votes
0answers
32 views
Jquery XML DOM?
I want to have some jquery codes that can get the data inside < a:title> and < b:title> separately but it is difficult to do it. I have taken some trials and read some posts about the jquery to ...
0
votes
2answers
51 views
How to get value of an attribute with namespace
I'd like to get the content of the attribute xsi:schemaLocation. It's works perfectly with getElementsByTagName in php (and foreach after) but it's ugly, right ?
How to get the same content with a ...
0
votes
4answers
66 views
What's the fastest way to deserialize and serialize an xml document?
I'm using java 6 and processing some xml documents which are pretty large...I need to parse them and modify some values and then serialize back to the disk.
I used org.w3c.DOM to deserialize the xml ...
0
votes
1answer
27 views
XML write to file UnicodeDecodeError Python 2.7.3
I've searched the site and haven't found an answer that works for me. My problem is that I'm trying to write xml to a file and when I run the script from the terminal I get:
Traceback (most recent ...
1
vote
0answers
32 views
Just started with XML parsing
In the below code when i use getNodeValue() i am not getting anything but when i use getTextContent() it return me its content as well as its childs content.Can anyone tell me why is getNodeValue() ...
0
votes
2answers
36 views
Ignore org.xml.sax.SAXParseExceptions when transfer xml string to org.w3c.dom.Document?
I have a lot of html pages (I mean its source codes) represented like java.Util.List of Strings in Java. I need to convert it to Document objects in Java (from the package org.w3c.dom).
I do it this ...
1
vote
1answer
85 views
Uncaught exception 'DOMException' with message 'Hierarchy Request Error'
I'm getting error while replacing or adding a child into a node.
Required is :
I want to change this to..
<?xml version="1.0"?>
<contacts>
<person>Adam</person>
...
0
votes
0answers
20 views
to parse xml in java using dom
<persons>
<people id="1">
<name>Kumar</name>
<address>
<street doorNumber="1a">First Cross Street</street>
...
0
votes
3answers
33 views
java.lang.OutOfMemoryError with DOM
I am trying to test different parsers, i have problem with DOM when i try to parse 70 MB xml file. Error is java.lang.OutOfMemoryError
I think i have decent computer, so i am not sure there is ...
-1
votes
3answers
61 views
How to re arrange child elements in an XML file using Java
I have an xml file and I am looking to re position the child elements based on certain attributes ( value if "id" in the example below).
I am looking to rewrite the xml file in a way that "bk103" ...
0
votes
1answer
36 views
Java Dom getAttribute
im trying to parse xml file, but it wont print attribut value. I dont know how to get attribute typ from phone
try { String subor = "Noviny.xml";
DocumentBuilderFactory factory = ...
1
vote
1answer
88 views
Change XML content using JavaScript, missing refresh
I manage to show XML using -
wxml = window.open("my_template.xml", "my_xml" );
I manage to change the DOM using -
xDoc = wxml.document;
xNodes = xExDoc.getElementsByTagName("myNodeName");
xValue ...
0
votes
1answer
35 views
Converting xml tag
I need to make a convertion like this:
given (one of many):
<Field name="topmostSubform[0].Page1[0].MemberID[0]" value="025620451" />
I need to convert it to an xml like this:
<?xml ...
0
votes
1answer
22 views
Producing xsd from doc (DOM object)
Say i use DOM and i have an xml loaded into a Document object.
Is it possible to get only the xml scheme data?
maybe something like an xsd?
0
votes
1answer
26 views
php mysqli to XML DOM [closed]
Here is the code:
http://pastebin.com/zQcMff38
This is the output:
http://pastebin.com/v50fjAS1
Can anyone help with this please. I think I messed the while loops up somewhere.
In the output ...
0
votes
2answers
50 views
Parsing XML DOM in Android
I am doing my own Android application and I am getting troubling.
My app read and write a XML file.
I have this code to open the XML file from the SDCard:
public void abrirSD()
{
try{
...
0
votes
1answer
47 views
How to generate unique ID for DIV using XSLT
so I'm able to get the correct titles from my sitecore project:
<xsl:value-of select="sc:fld('title',.)" />
^ will spit out the titles I need to use as ID's
Now below is my XSL to generate ...
0
votes
1answer
70 views
Update XML all child node values search by attribute in PHP [duplicate]
I have a xml of multilevel nodes.
I can find the node but need to know how to update the node values.
In my file bellow, I can find the node channels by its attribute but how can I update values of ...
0
votes
1answer
39 views
adding content without delete original content in XML java
I want to add new content inside a XML file, without delete the original content. How can I do that.
Original XML:
<collection>
<data>
<type>CHD</type>
<values>
...
0
votes
1answer
41 views
Creating XML file using DOM in Android
I'm trying to generate XML file in Android using Dom but when I execute the application the XML file is not generated though I don't get the error also. Please help me out. Help Help Help Help Help ...
1
vote
1answer
73 views
Small issue with deleting duplicates in XML using java
This is sample XML:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<check>
<val>
<Samsung>
<name value="galaxy" />
...
0
votes
2answers
102 views
Java DOM parser not parsing one line XML
I have this one-line xml file (without indents and new lines) as below
<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03"
...






