Tagged Questions
7
votes
2answers
14k views
Creating an XML document using namespaces in Java
I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal favourite tool so was hoping someone may be able to help me ...
3
votes
3answers
798 views
XOM v/s javax.xml.parsers
i want to do read simple XML file .i found
http://stackoverflow.com/questions/528664/simple-way-to-do-xml-in-java
There are also several parsers available just wanted to make sure that what are the ...
2
votes
2answers
143 views
Both XPath/getChildElements failed to get XML child in XOM
I've to parse an OAI-PMH XML file, which looks like the following. I would like to iterate over all <record> nodes in ListRecord.
<?xml version="1.0" encoding="UTF-8"?>
<OAI-PMH ...
2
votes
1answer
448 views
Writing GraphML with XOM?
I'm trying to write out a graphML document with XOM in java, but I can't figure out how to get all of the namespace declarations correct. To have valid graphML, I need to have a root element that ...
2
votes
2answers
523 views
How do I marshal a JAXB object to XOM?
I'm trying to figure out what bits I need to plug together to marshal a JAXB POJO to a XOM document, and vice versa.
The JAXB Marshaller interface's marshal methods take various targets, such as ...
2
votes
2answers
1k views
How to stream XML data using XOM?
Say I want to output a huge set of search results, as XML, into a PrintWriter or an OutputStream, using XOM. The resulting XML would look like this:
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
1answer
154 views
“Could not find a suitable SAX2 parser” when i try parsing XML with XOM Tutorial
I'm trying to find a simple way to get XML content in my Android app. I gave XOM a try. Creating XML is no problem, but when i try to parse some... the emulator crashes with a force close. I have no ...
1
vote
3answers
215 views
XOM analogue for Scala?
Is there an XML processing library for Scala "that strives for correctness, simplicity, and performance, in that order" like does XOM for Java? (Scala XML API is not an option)
1
vote
2answers
236 views
How to set namespace only on first tag with XOM?
I am using XOM to build XML documents in Java.
I have created a simple XML document, and I want an XML namespace. But when I set the namespace on the first tag, an empty namespace is set on the ...
0
votes
2answers
64 views
Java How to extract a complete XML block
Using this XML example:
<A>
<B>
<id>0</id>
</B>
<B>
<id>1</id>
</B>
</A>
I want a simple method to extract the XML block ...
0
votes
2answers
43 views
Having Element.toXML() properly indented instead of showing the resulting string just as a single line?
The default behavior of Element.toXML() seems to be showing up the result as a single line. Is it possible to have it show the result in multiple lines, in a hierarchical way?
Example:
This is what ...
0
votes
1answer
21 views
XOM.nu settings close tags format
How can I set uп Xom.nu in such a way that elements are closed like so:
<Node></Nodes> and not <Node/>.
The reason why I want to do it in this way is that this XML is going to be ...
0
votes
2answers
66 views
Ignoring DTD when parsing XML
How can I ignore the DTD declaration when parsing file with XOM xml library. My file has the following line :
<?xml version="1.0"?>
<!DOCTYPE BlastOutput PUBLIC "-//NCBI//NCBI ...
0
votes
1answer
51 views
Write soap XML using XOM
I'm trying to write a soap mesage with:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
0
votes
1answer
46 views
Finding the exact location of an Element in a XML-Document
I'm looking for a way to find the exact location of an Element within a XML-Document. I parse my Document with XOM and process it in the usual way. The tricky thing is, that in the XML document, some ...
0
votes
1answer
61 views
XOM: is Builder.build() thread safe?
Is Builder.build() thread safe? I couldn't find any info in XOM Javadoc.
0
votes
0answers
68 views
XOM and Problem with Canonical XML
I'm making a java application that checks if a XML file is already canonical or not using XOM.
In my tests I have the following file wich is already canonical.
<doc ...
0
votes
3answers
140 views
How do I take off the XML version tag in the XOM library for Java?
I'm writing a small application in Java that uses XOM to output XHTML.
The problem is that XOM places the following tag before all the html:
<?xml version="1.0" encoding="UTF-8"?>
I've read ...
0
votes
1answer
64 views
JAVA XOM Geting amount of child
<?xml version="1.0" encoding="UTF-8"?>
<locations>
<location id="83">
<location_name>name</location_name>
<company_name>company ...
0
votes
1answer
218 views
xom xsd validation fails because of root element being null
i have xsd and xml file. xml parse fine when validation is turned off.
but with xsd validation it complains about root element in xsd being null.
my xsd file is having multiple global elements. so ...
0
votes
4answers
426 views
Best way to parse large XML document in Jython
I need to parse a large (>800MB) XML file from Jython. The XML is not deeply nested, containing about a million relevant elements. I need to convert these elements into real objects.
I've used ...
0
votes
3answers
307 views
convert nu.XOM.Element to org.w3c.dom.Element
Is it possible to convert nu.XOM.Element to org.w3c.dom.Element?
Am trying to construct XML using XOM APIs. But few of my legacy APIs expects org.w3c.dom.Element. So, I just want to know if I can ...
0
votes
2answers
220 views
XOM getting attribute from Node?
Shouldn't something like this work?
Assuming a document formatted as such:
<root>
<element id = "a"></element>
</root>
Node node = doc.query("/root/element").get(0);
...
0
votes
2answers
251 views
XOM get Document to String
Suppose I have a String like this
String from = "<time><day type="tt">ok</day><time>
Now what I would like to do is, create a XOM document and then retrun back something ...