Tagged Questions

1
vote
5answers
71 views

Java I/O over an NFS mount

I have a bit of Java code that outputs an XML file to a NFS mounted filesystem. On another server that has the filesytem mounted as a Samba share, there is a process running that p …
1
vote
2answers
134 views

Programmatically creating an XML Document using an XSD

Hi I need to create XML documents using built-in java org.w3c.dom or jdom packages conforming to a set of XSD files. The XSD files are similar but not the same. In essence, I nee …
1
vote
1answer
53 views

Get Text Content of xml element

Hola! ;) So, i have some question about xml Documents in Java. Can i get all text(only text) content of some element and all descendant's elements of this element, without to itera …
0
votes
2answers
17 views

Known xpath 2.0 prozessor with jdom support

Witch xpath 2.0 prozessors with jdom support are known? Thanks for yout answers
0
votes
1answer
50 views

Does JDOM have any support for ID and IDREF?

<!DOCTYPE inventory [ <!ELEMENT book (title,author)> <!ELEMENT title (#PCDATA)> <!ELEMENT author (#PCDATA)> <!ATTLIST book year CDATA #IMPLIED> <!ATTL …
1
vote
3answers
200 views

How to insert XHTML into XML

Hi all, I'm working with JDOM at the moment. I can't think of a solution which what should essentially be an easy problem. I have a valid XHTML string: <b>M&amp;A</ …
1
vote
3answers
299 views

Problems with XML/DOM tree rewriting using JDOM (ConcurrentModificationException)

I need to walk a JDOM tree and make changes as I go along; at this point, changes are mostly adding new elements right now but could also include reordering elements or removing el …
4
votes
2answers
1k views

Default XML namespace, JDOM, and XPath

I want to use JDOM to read in an XML file, then use XPath to extract data from the JDOM Document. It creates the Document object fine, but when I use XPath to query the Document f …