Tagged Questions

The Java API for XML Processing (JAXP) enables applications to parse, transform, validate and query XML documents using an API that is independent of a particular XML processor implementation.

learn more… | top users | synonyms

15
votes
2answers
1k views

Java XPath (Apache JAXP implementation) performance

NOTE: If you experience this issue as well, please upvote it on Apache JIRA: https://issues.apache.org/jira/browse/XALANJ-2540 I have come to an astonishing conclusion that this: Element e ...
11
votes
1answer
1k views

Java and XML (JAXP) - What about caching and thread-safety?

I'd like to know which objects can be reused (in the same or different document) when using the Java API for XML processing, JAXP: DocumentBuilderFactory DocumentBuilder XPath Node ErrorHandler ...
8
votes
2answers
2k views

How do I find out which JAXP implementation is in use and where it was loaded from?

I would like to provide diagnostic information about what JAXP implementation is in use, and which JAR file it was loaded from. One way to achieve this is to create in instance of, for example, a ...
6
votes
2answers
496 views

Java/XSD parsing

I doubt if there is something like this but I thought to ask though: Does anyone know if there is a library in Java that reads an xsd file and "creates" the defined elements e.g. in a String format to ...
5
votes
3answers
140 views

JAXP XSLT document() function problem

I am working under java application which uses XSLT transformation. I have a lot of document() calls in it, so it is possible to have java.lang.OutOfMemory exception (which I actually have), because ...
5
votes
5answers
2k views

How to validate an XML document using a RELAX NG schema and JAXP?

I would like to validate XML documents using RELAX NG schemata, and I would like to use the JAXP validation API. From Googling around, it appeared that I could use Jing and the ISO RELAX JARV to JAXP ...
4
votes
2answers
127 views

Get an attribute of a dom node

I am trying to get an attribute of an xml node example: <Car name="Test"> </Car> I want to grab the name attribute of the car node. DocumentBuilderFactory dbf = ...
4
votes
4answers
419 views

Custom Java XMLBuilder vs Standard classes-based

What is the best performance solution for XML generation. My goal is to build a few simple XMLs from code. I am going to implement simple custom StringBuffer based implementation of XML Builder. From ...
4
votes
1answer
603 views

java (jaxp) xml parsing differences of DocumentBuilder

Is there any kind of difference between 1) DocumentBuilder.parse(InputStream) and 2) DocumentBuilder.parse(InputSource)? I could only find that for the first case, the parser detects the encoding from ...
4
votes
2answers
163 views

JAXP for PHP (PAXP?)

Is there a framework like JAXP for PHP? I need a framework that, as JAXP, create a XML file from an object. This framework has to know how to map the object to XML, respecting its structure when ...
3
votes
2answers
46 views

deleting node from xml at specific position

I have XML like below: <As> <a> <Bs> <b>5</b> <Bs> </a> <a> <Bs> <b>9</b> <Bs> </a> ...
3
votes
4answers
57 views

Moving files after failed validation (Java)

We are validating XML files and depending on the result of the validation we have to move the file into a different folder. When the XML is valid the validator returns a value and we can move the ...
3
votes
1answer
356 views

How to Delete/Remove DOCTYPE Declaration from the XML Document?

how to remove/delete the DOCTYPE declaration from the XML Document using DOM Parser or SAX Parser in JAVA? If something you wanted to know is missing. Just mention it in your comments. thanks
3
votes
1answer
379 views

JAXP: How to validate a org.w3c.dom.Document against a XML Schema

How to validate an (already parsed) org.w3c.dom.Document against a XML Schema using JAXP?
3
votes
1answer
113 views

XML/XSLT/Xpath standards compliance

Our shop develops platform on which multiple core products and customer specific implementations are built. The platform has been around for 5 years and now we are trying to re-think/re-platform. As ...
3
votes
3answers
1k views

I need to parse non well-formed xml data (HTML)

I have some non well-formed xml (HTML) data in JAVA, I used JAXP Dom, but It complains. The Question is :Is there any way to use JAXP to parse such documents ?? I have a file containing data ...
3
votes
1answer
414 views

XPATH Query not return result

Hi given the following Code: private void extractLink(ScriptFile file) throws SAXException, IOException, ParserConfigurationException, XPathExpressionException { Document d = ...
2
votes
2answers
68 views

Optimizing DOM and XPath Java code

My code is too slow, but I'm not sure how to improve it. Reading from disk into DOM for a 1k-file takes about 20 ms, that might be okay depending on the disk, but then I've got another 20 ms for ...
2
votes
1answer
218 views

JAXP: How to force XPath to validate namespace prefixes?

I am relying on the default JAXP implementation and using the Oracle JRE. When evaluating a XPath which contains an unknown namespace prefix, it does not throw an (expected) exception. When I run the ...
2
votes
4answers
292 views

How to write a xml database file efficiently?

I want to build an XML file as a datastore. It should look something like this: <datastore> <item> <subitem></subitem> ... ...
2
votes
1answer
200 views

java errorlistener use on a transformer instance(jaxp)

The signature for method transform of Transformer is void transform(Source xmlSource,Result outputTarget)throws TransformerException i.e. specifies that it throws a checked exception of type ...
2
votes
5answers
234 views

Detecting System.setProperty method invocations

I'm facing a conundrum here. One of the applications that I've developed is loading an incorrect implementation of the DocumentBuilderFactory class of JAXP. This behavior was later deduced to be ...
2
votes
2answers
245 views

Transformer's transform causes a fatal error, why?

I've built a document using JAXP like this: DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); Document document = ...
2
votes
6answers
863 views

Remove Empty Attributes from XML

I have a buggy xml that contains empty attributes and I have a parser that coughs on empty attributes. I have no control over the generation of the xml nor over the parser that coughs on empty attrs. ...
2
votes
1answer
2k views

How can I validate documents against Schematron schemas in Java?

As far as I can tell, JAXP by default supports W3C XML Schema and RelaxNG from Java 6. I can see a few APIs, mostly experimental or incomplete, on the schematron.com links page. Is there an approach ...
2
votes
5answers
2k views

java append to file

I googled for this for a while but can't seem to find it and it should be easy. I want to append a CR to then end of an XML file that I am creating with a Transformer. Is there a way to do this> I ...
2
votes
1answer
144 views

How can I provide customer error messages using JAXP DocumentBuilder?

I want to provide my own message from the validation done in DocumentBuilder, rather than the one from XMLMessages.properties. Now i see that a property error-reporter needs to be set to a class ...
1
vote
3answers
22 views

Converting the result type of string-join to NodeList

I need to deal with legacy code which evaluates XPath expressions expects the results to resolve to NodeList. The code uses NodeList to identify how many nodes are selected by the XPath expression. ...
1
vote
1answer
17 views

HttpServletRequest JAXP DOM: reading POST data

I have an HttpServletRequest object in my servlet which obtains an XML document posted to it. I would like to use JAXP (not JAXB becuase for one it uses too much disk space for my particular use ...
1
vote
2answers
53 views

Make JAXB go faster

I have a 8 Meg file. Marshalling using JAXB takes 1082ms, using DOM takes 862ms, using SAX takes 438ms. This is using all defaults with JDK 1.6, no extra configuration such as using woodstox is ...
1
vote
1answer
59 views

XSL left-right justification with Padding

Is there any standard template in XSLT 1.0 available which does justification and pad the field to max length? Thanks, Prabhjot
1
vote
1answer
79 views

JAXP - debug XSD catalog look up

I have a situation where we want to validate an XML document held as a byte stream in memory, against an XSD placed amongst others in a file system. We would like to avoid having the file name ...
1
vote
1answer
37 views

Using the result of an XPATH in another xpath expression

I have a XML like the below. Here I wanted to slect the attribute value of node b which is 23 take that value and go down the xml and pick the node j of node f which has the id value 23. Can this be ...
1
vote
0answers
120 views

JAXP Sax Parser Java-ME Midlet Exception from parsing a chinese character

I'm having big trouble parsing some chinese characters encoded as HTML Unicode, embedded in XML files. I'm using Java ME with javax.xml.parsers.SAXParser One such character file is 词: ...
1
vote
1answer
96 views

How does a sax parser validate against a dtd?

I have a xml file and a dtd defined. My understanding of a sax parser is it processes events instead of storing the entire xml document (like DOM) in memory. Say, I have a xml file with declaration ...
1
vote
0answers
196 views

Java Transformer with parameter

I'm using Java (JAXP) for XML transformation and I need to pass a fragment of xml as parameter to the transformer: <DOCTYPES> <SUBTYPE>Passport</SUBTYPE> ...
1
vote
1answer
140 views

JAXP - XSLT sporadic test failures

The code attached below produces sporadic test failures (JUnit), works 80% of the time. I'm using a static Templates object. In the case of failure a different than expected JAXB object is placed into ...
1
vote
1answer
102 views

JAXP: How to dynamically resolve a Schema during XML parsing?

Imagine a xml file which refers to a schema using noNamespaceSchemaLocation. I'd like to resolve the value defined in noNamespaceSchemaLocation dynamically using some kind of resolving technique ...
1
vote
2answers
1k views

How to insert schemalocation in a xml document via DOM

i create a xml document with JAXP and search a way to insert the schemalocation. At the moment my application produces: <?xml version="1.0" encoding="UTF-8"?> <root> ... </root> ...
1
vote
1answer
41 views

How to get the elements <and> and <or> in XPath with Jre default Processor (JAXPSAXProcessor)

I am working with some xml files which contain and/or tags. I want to transform them to html. In my XSL I am using two templates <xsl:template match="and"> ( <xsl:apply-templates ...
1
vote
1answer
1k views

Retrieve value of XML node and node attribute using XPath in JAXP

Given an xml document that looks like the following: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> ...
1
vote
1answer
443 views

How to Fool the Java Service Provider API (jaxp)

I have an applet that needs to call JAXP, specifically SAXParserFactory. Now, as you can see from the Javadoc, this internally uses the Service Provider mechanism as documented here: Specifically, if ...
1
vote
1answer
129 views

jaxp object caching for MessageFactory

Can the javax.xml.soap.MessageFactory be reused? I.e. msgFactory = MessageFactory.newInstance(); Can I cache msgFactory and reuse it to create new SOAPMessages as needed? Also should the ...
1
vote
2answers
120 views

How can I parse/validate XML in JAXP using an old (1999) schema version?

I have an XML schema that was built with an old version of the XML spec (http://www.w3.org/1999/XMLSchema). I am trying to parse XML messages using the schema (shown below). By default, the Xerces 1.1 ...
1
vote
1answer
323 views

JSF 2.0 and TransformerFactory

I'm going to use Saxon-B 9 in my JSF 2.0 project. But after adding dependency to Saxon & Saxon-dom exceptions began to appear at startup: Sep 25, 2010 6:05:45 PM ...
1
vote
2answers
375 views

Which are the Java JAXP XPath implementations available?

Which are the Java JAXP XPath implementations available? The default implementation, Xalan (shipped with the JVM), is very slow to evaluate XPath expressions, so, I'm looking for a faster ...
1
vote
4answers
360 views

Converting a raw file (binary data ) into XML file

I'm working on a project under which i have to take a raw file from the server and convert it into XML file. Is there any tool available in java which can help me to accomplish this task like JAXP ...
1
vote
3answers
789 views

What is the most memory-efficient way to emit XML from a JAXP SAX ContentHandler?

I have a situation similar to an earlier question about emitting XML. I am analyzing data in a SAX ContentHandler while serializing it to a stream. I am suspicious that the solution in the linked ...
0
votes
0answers
42 views

Dozer Exception

I am getting the below exception when the dozer bean mapper executing mapper.map(sourc, destination) My JDK Version 1.6 Following Jar's are in my class path dozer-5.3.2.jar slf4j-nop-1.6.4.jar ...
0
votes
0answers
59 views

How can I force Jboss to use the JAXP default implementation with Spring WS?

I am working with a Java Web application that calls a WS. I am using Spring WS 1.5.9 and WS client classes are generated by wsimport and marshalling/unmarshalling are done by JAXB. Everything works ...

1 2