Tagged Questions

XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with Java that strives for correctness, simplicity, and performance.

learn more… | top users | synonyms

7
votes
2answers
13k 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 ...
5
votes
2answers
3k views

DTD download error while parsing XHTML document in XOM

I am trying to parse an HTML document with the doctype declared to use the transitional dtd as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
3
votes
1answer
259 views

XPath Expression returns nothing for //element, but //* returns a count

I'm using XOM with the following sample data: Element root = cleanDoc.getRootElement(); //find all the bold elements, as those mark institution and clinic. Nodes nodes = root.query("//*"); <html ...
3
votes
3answers
763 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
129 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
5answers
106 views

Java - Difference between for loop terminating expression

I'm just curious: Is there a difference on speed and performance between this two loops implementation? Assume that size() method returns the length of the array,collection, or object that handles a ...
2
votes
1answer
434 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
499 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
23 views

Query Node in XOM

I am querying document in XOM, getting a Node, and then querying this Node for another Node. However, querying Node behaves like it's querying whole document, not only this node. XML is like this: ...
1
vote
1answer
133 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
4answers
158 views

java getting elements from xpath

Hi i want to get data from xpath query Element location = (Element) doc.query("//location[location_name='"+ locationName +"']/*").get(0).getDocument().getRootElement(); ...
1
vote
3answers
206 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
169 views

Nodes with case-insensitive content using XOM

I want to query nodes from a XOM document which contains certain value but case insensitive. Something like this: doc.query('/root/book[contains(.,"case-insentive-string")]') But it contains is ...
1
vote
0answers
22 views

How to use XOM to refs a tag value?

if I have a document like : <Car belongTO="$Jacky" id="autobus"> <colour>red</colour> </Car> ..... <User id="jacky"> <Passport>1111</Passport> ...
1
vote
2answers
217 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 ...
1
vote
1answer
92 views

Easy way to convert an org.apache.xmlbeansXmlObject to nu.xom.Element

I have used the scomp tool from XMLBeans to generate java classes and then populated the fields in an XmlObject (I wrote this code some time ago). I now need to convert this object into the Element ...
1
vote
3answers
138 views

Grails XOM linkageerror - SAXParserException

Possibly related: http://stackoverflow.com/questions/2762439/grails-attempting-to-include-htppbuilder-linkage-error I'm trying to include XOM in my grails project. How do I know which dependency ...
1
vote
1answer
197 views

Setting a custom XOM EntityResolver

I need to not validate against a doctype, so I'd like to set a custom EntityResolver that accepts everything. I'm getting data back from tagsoup, so I know my data is well-formed and correct. ...
1
vote
1answer
979 views

Tagsoup and XOM on android

Can i use Tagsoup and XOM on android 1.6 without any performance problems ?
0
votes
2answers
46 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
40 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
16 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
1answer
38 views

Comments getting escaped with NekoHTML (or JTidy) + XOM

I'm using NekoHTML to clean up some HTML, and then feeding it to XOM to get an object model. Somewhere in the course of this, comments are getting escaped. Here's a relevant example of the input HTML ...
0
votes
2answers
51 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
47 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
43 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
56 views

XOM: is Builder.build() thread safe?

Is Builder.build() thread safe? I couldn't find any info in XOM Javadoc.
0
votes
0answers
62 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
129 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
60 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
206 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
397 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
1answer
375 views

Java+XSL, calling Java code from within template

I'm working with XSL templates in Java, and I'm trying to build a custom tag that will call some Java code, then put a result inside the template. I'm using XOM as my XML engine. I'm kind of new with ...
0
votes
3answers
290 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
207 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
242 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 ...
0
votes
2answers
2k views

How to parse (non well-formed) HTML in android?

How to parse non well-formed HTML in android ? I tried to use XOM and TagSoup, but i get the following error when creating the Builder: 11-26 20:42:39.294: ERROR/dalvikvm(1298): Could not find ...
0
votes
1answer
229 views

Using XOM with NetBeans

I am attempting to install XOM so I can use it in my Java apps. The only problem is, I don't know where I can place it so NetBeans can find it. It would make sense to put it where the other .classes ...