Sun Java System Application Server Platform Edition 8.2 Upgrade and Migration Guide

Chapter 2 J2EE 1.4 Compatibility Issues

The following topics are covered in this chapter:

Binary Compatibility

The Java SDK included in Application Server 8.2 is the JavaTM 2 Platform, Enterprise Edition (J2EETM platform), version 1.4 SDK. This version of the J2EE SDK is upwards binary-compatible with J2EE SDK 1.3, except for the incompatibilities listed below. This means that, except for the noted incompatibilities, applications built for version 1.3 run correctly on the Sun Java System Application Server 8.2 release. For easy reference, the version of the J2EE SDK included in this release is referred to as J2EE 1.4 throughout this section.

Source Compatibility

Downward source compatibility is not supported. If source files use new J2EE APIs, they are not usable with an earlier version of the J2EE platform.

In general, the policy is as follows:

Deprecated APIs are methods and classes that are supported only for backward compatibility. The compiler generates a warning message whenever one of these is used, unless the -nowarn command line option is used. It is recommended that programs be modified to eliminate the use of deprecated methods and classes, though there are no plans to remove such methods and classes entirely.

Incompatibilities in the J2EE 1.4 Platform (since the J2EE 1.3 release)

TheApplication Server 8.2 release is based on the Java 2 Platform, Enterprise Edition, version 1.4. The Application Server 7 release is based on the Java 2 Platform, Enterprise Edition, version 1.3.

TheApplication Server 8.2 release is strongly compatible with previous versions of the J2EE platform. Almost all existing programs should run on theApplication Server 8.2 release without modification. However, there are some minor potential incompatibilities that involve rare circumstances and corner cases documented here for completeness.

Servlet Specification

Java Servlet Specification Version 2.4 ships with theApplication Server 8.2 release, and can be downloaded from . Version 2.3 of the specification shipped with the J2EE 1.3 SDK. The following items discuss compatibility issues between these releases:

Java Server Pages Specification

Java Server Pages (JSP) Specification 2.0 ships with theApplication Server 8.2 release and is downloadable from:

JSP specification 1.2 is shipped with the J2EE 1.3 SDK. Wherever possible, the JSP 2.0 specification attempts to be fully backward compatible with the JSP 1.2 specification. Some of the ambiguities in JSP 1.2 specification that have been clarified in the JSP 2.0 specification. Because some JSP 1.2 containers behave differently, some applications that rely on container-specific behavior may need to be adjusted to work correctly in a JSP 2.0 environment.

The following is a list of known backward compatibility issues:

JAXP and SAX Incompatibilities

Application Server 8.2 supports JAXP 1.3, which in turn supports SAX 2.0.2. In SAX 2.0.2, DeclHandler.externalEntityDecl requires the parser to return the absolute system identifier for consistency with DTDHandler.unparsedEntityDecl. This might cause some incompatibilities when migrating applications that use SAX 2.0.0.

To migrate an application that uses SAX 2.0.0 to SAX 2.0.2 without changing the previous behavior of externalEntityDecl, you can set the resolve-dtd-uris feature to false. For example:

SAXParserFactory spf = SAXParserFactory.newInstance();
spf.setFeature("http://xml.org/sax/features/resolve-dtd-uris",false);

Other incompatibilities between SAX 2.0.0 and SAX 2.0.2 are documented in the JAXP Compatibility Guide.

Application Server 8.2 Options Incompatible With J2EE 1.4 Specification Requirements

Application Server 8.2 is compatible with the Java 2 Platform, Enterprise Edition specification by default. In this case, all portable J2EE programs run on the Application Server without modification. However, as allowed by the J2EE compatibility requirements, it is possible to configure applications to use features of theApplication Server 8.2 that are not compatible with the J2EE specification.

The pass-by-reference element in the sun-ejb-jar.xml file only applies to remote calls. As defined in the EJB 2.0 specification, section 5.4, calls to local interfaces use pass-by-reference semantics.

If the pass-by-reference element is set to its default value of false, the parameter passing semantics for calls to remote interfaces comply with the EJB 2.0 specification, section 5.4. If set to true, remote calls involve pass-by-reference semantics instead of pass-by-value semantics, contrary to this specification.

Portable programs cannot assume that a copy of the object is made during such a call, and thus that it’s safe to modify the original. Nor can they assume that a copy is not made, and thus that changes to the object are visible to both caller and callee. When this flag is set to true, parameters and return values are considered read-only. The behavior of a program that modifies such parameters or return values is undefined. For more information about the pass-by-reference element, see the Sun Java System Application Server Platform Edition 8.2 Developer’s Guide.

Application Server 8.2 Options Contrary to J2EE 1.4 Specification Recommendations

If the delegate attribute in the classloader element of the sun-web.xml file is set to its default value of true, classes and resources residing in container-wide library JAR files are loaded in preference to classes and resources packaged within the WAR file, contrary to what is recommended in the Servlet 2.3 specification, section 9.7.2. If set to false, the classloader delegation behavior complies with what is recommended in the Servlet 2.3 specification, section 9.7.2.

Do not package portable programs that use the delegate attribute with the value of true with any classes or interfaces that are a part of the J2EE specification. The behavior of a program that includes such classes or interfaces in its WAR file is undefined. For more information about the classloader element, the Sun Java System Application Server Platform Edition 8.2 Developer’s Guide.