JAXP Compatibility Guide
for the J2SE 5 Platform

Contents

Introduction

The J2SE 1.4 platform included the "Crimson" reference implementation for JAXP 1.1. The J2SE 5 platform includes a reference implementation for JAXP 1.3 based on the Apache "Xerces" library.

Because these implementations come from entirely different codebases, and because the JAXP standard has evolved from 1.1 to 1.3, there are some subtle differences between the impementations, even they both conform to the JAXP standard. These two factors combine to create the compatibility issues described in this guide.

What's New

However, while XML applications written for 1.4 do suffer some incompatibilities, JAXP 1.3 in the
J2SE 5 platform provides some compelling advantages:

  • A built-in validation processor for XML Schema.
  • The ability to use other schema validators, as well, with the javax.xml.validation package.
  • A thorough implementation of XML Schema data types in javax.xml.datatype, including Gregorian Calendar dates and times that previously had no natural analogues in the Java platform.
  • XSLTC, the fast, compiling transformer, which is now the default engine for XSLT processing.
  • DOM Level 3 core, which provides:
  • Java-Centric XPath APIs in javax.xml.xpath, which provide a more java-friendly way to use an XPath expression. It was designed to be applicable to any data model that implements the interface. You can use it now to process the reference implementation DOM. In the future, it is likely to be available when processing a JDom, or STAX data model, as well.
  • An implementation of XInclude, which makes it possible to build a document using text or XML stored in reusable segments elsewhere.
  • Grammar pre-parsing and caching, which has a major impact on performance for high-volume XML processing.
  • APIs that tell you implementation and version of the parser, so that when you install new libraries you can make sure the application is using them.
  • That's the good news. The bad news is that some compatibility issues have survived all attempts at eradication. The remainder of this document discusses those issues.

    DOM Level 3

    While the reference implementation in J2SE 1.4 supported the DOM Level 2 API, the implementation in J2SE 5 supports the DOM Level 3 family of APIs. This section covers the impact of those changes on programs that used the JAXP 1.1 reference implementation:

    For more information, see the complete list of changes in the DOM Level 3 Changes appendix.

    Methods added to DOM interfaces

    In DOM level 3, additional methods were defined in the following interfaces:

    The added methods only affect applications that implement the interfaces directly, and only then when the application is recompiled. Applications that use the factory methods to obtain implementation classes for these interfaces will have no problems.

    Preserving the XML format

    These changes affect an application that reads in XML data into a DOM, makes modifications, and then writes it out in a way that preserves the original formatting.

    In JAXP 1.1, extraneous whitespace was automatically removed on input, and a single property (ignoringLexicalInfo) was set to false to preserve entity nodes and CDATA nodes, for example. Including the additional nodes made the DOM somewhat more complex to process, but because they were there, adding whitespace output (indentation and newlines) produced highly readable, formatted version of the XML data which closely approximated the input.

    In JAXP 1.3, there are four APIs that the application uses to determine how much lexical (formatting) information is available to process, using the following DocumentBuilderFactory methods:

    The default values for all of these properties is false, which preserves all the lexical information necessary to reconstruct the incoming document in its original form. Setting them all to true lets you construct the simplest possible DOM, so the application can focus on the data's semantic content, without having to worry about lexical syntax details.

    Note:
    When adding new nodes, the application must add any indentation and newline formatting that is needed for readability, since it is not provided automatically.

    SAX 2.0.2

    Following are the changes made between SAX 2.0.0 and SAX 2.0.2 that might affect compatibility.

    Note:
    One point of compatibility is also worth mentioning. Namespace recognition was turned off by default in J2SE 1.4 (JAXP 1.1). For backward compatibility, that policy is continued in J2SE 5 (JAXP 1.3). However, namespace recognition is turned on by default in the official SAX implementation at www.saxproject.org. While not strictly a compatibility issue from the standpoint of JAXP, it is an issue that sometimes comes as a surprise.

    Using XSLT

    Code that uses the standard JAXP APIs to create and access an XSL transformer does not need to be changed. The output will be the same, but will in general be produced much faster, since the XSLTC compiling transformer will be used by default, instead of the interpreting Xalan transformer.

    Note:
    There is no significant difference between Xalan and XSLTC performance for a single run on a small data set, as when you are developing and testing an XSL stylesheet. But there is a major performance benefit when using XSLTC on anything larger.

    Using XSLT

    Code that uses the standard JAXP APIs to create and access an XSL transformer does not need to be changed. The output will be the same, but will in general be produced much faster, since the XSLTC compiling transformer will be used by default, instead of the interpreting Xalan transformer.

    Note:
    There is no significant difference between Xalan and XSLTC performance for a single run on a small data set, as when you are developing and testing an XSL stylesheet. But there is a major performance benefit when using XSLTC on anything larger.

    Programmatic Access to Xalan XPath

    JAXP 1.3 provides the standard XPath API for evaluating XPath expressions.  We encourage users to use this API.  Xalan-interpretive is not included in the reference implementation. If an application explicitly uses the Xalan XPath API to evaluate a standalone XPath expression (one that is not part of an XSLT stylesheet), you'll need to download and install the Apache libraries for Xalan, put them on the classpath.

    Package Name Changes

    This change does not affect applications that confine themselves to using the standard JAXP APIs. But applications that access implementation-specific features of the XML processors defined in previous JAXP versions will have to be modified to take into account package names that changed in JAXP 1.3.

    The change has several effects on previous applications:

    1. The property-values that were used to access the internal implementations must be changed.
    2. Applications that used internal APIs that from the Xalan implementation classes must change the import statements that gave them access to those APIs.
    3. Applications that used internal APIs from the Crimson implementation must be recoded -- ideally, by using newer JAXP APIs or, if necessary, by using Xerces APIs.

    What Changed, and Why

    In J2SE 1.4, the fact that JAXP was built into the Java platform was a mixed blessing. On the one hand, an application could rely on that fact that it was there. On the other, most applications needed features and bug fixes that were available in later versions.

    But adding new libarires had no effect, because internal classes always take precedence over the classpath. The solution for that problem in 1.4 was to use the endorsed standards mechanism. However, that was a new mechanism, and one which frequently placed an additional burden on the end user, as well as the application developer.

    The solution in the JAXP 1.3 reference name is to change the package names of the Apache libraries used in the implementation. That change lets you reference newer Apache libraries in the classpath, so application developers can use them in the same way that would use any other additions to the Java platform.

    The new names given to the Apache packages in the JAXP 1.3 reference implementation are shown below:

      JAXP 1.1
    JAXP 1.3
    JAXP org.apache.crimson

    -/-
    com.sun.org.apache.xerces.internal
      org.apache.xml com.sun.org.apache.xml.internal
    XSLT org.apache.xalan
    org.apache.xpath
    org.apache.xalan.xsltc
    com.sun.org.apache.xalan.internal
    com.sun.org.apache.xpath.internal
    com.sun.org.apache.xalan.internal.xsltc

    Using System Properties and Implementation Classes

    Applications that specifying system properties on the command line with -D, in the JRE's lib/jaxp.properties file, or by hard-coding them into the application, generally do so in order to access functionality that is not present in the standard APIs.

    JAXP 1.3 contains many new additions. When upgrading such applications, it is advisable to look for standard APIs in the javax.xml.* packages that will do the same job, because that's the best way to keep from having to change the application in the future. If absolutely necessary (either because of functionality restrictions or lack of time to investigate the new APIs), the property values can be changed by converting old-format package names into the format:

    org.apache.somePackage --> com.sun.org.apache.SomePackage.internal

    Similarly, internal implementation classes all use the new package names. If your application is using implementaton classes (it shouldn't!) those package names will have to change, as well.

    Security Issue Posed by Nested Entity Definitions

    While XML does not allow recursive entity definitions, it does permit nested entity definitions, which produces the potential for Denial of Service attacks on a server which accepts XML data from external sources. For example, a SOAP document like the following that has very deeply nested entity definitions can consume 100% of CPU time and large amounts of memory in entity expansions:

    <?xml version="1.0" encoding ="UTF-8"?>
    <!DOCTYPE foobar[
    <!ENTITY x100 "foobar">
    <!ENTITY x99 "&x100;&x100;">
    <!ENTITY x98 "&x99;&x99;">
    ...
    <!ENTITY x2 "&x3;&x3;">
    <!ENTITY x1 "&x2;&x2;">
    ]>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV=...>
    <SOAP-ENV:Body>
    <ns1:aaa xmlns:ns1="urn:aaa" SOAP-ENV:encodingStyle="...">
    <foobar xsi:type="xsd:string">&x1;</foobar>
    </ns1:aaa>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

    A system that doesn't take in external XML data need not be concerned with the issue, but one that does can utilize one of the following safeguards to prevent the problem:

    New system property to limit entity expansion
    The entityExpansionLimit system property lets existing applications constrain the total number of entity expansions without recompiling the code. The parser throws a fatal error once it has reached the entity expansion limit. (By default, the limit is set to 64000.)

    To set the entity expansion limit using the system property, use an option like the following on the java command line: -DentityExpansionLimit=100000

    New parser property to disallow DTDs
    The application can also set the http://apache.org/xml/features/disallow-doctype-decl parser property to true. A fatal error is then thrown if the incoming XML document contains a DOCTYPE declaration. (The default value for this property is false.) This property is typically useful for SOAP based applications where a SOAP message must not contain a Document Type Declaration.

    New feature for Secure Processing
    JAXP 1.3 includes a new secure processing feature in which an application can configure the SAXParserFactory or DocumentBuilderFactory to get an XML processor that behaves in a secured fashion.  Setting this feature to true sets the entity expansion limit to 64000.  Note that the default limit can be increased using the entityExpansionLimit system property.