Oracle® Application Server Release Notes and New Features 10g Release 3 (10.1.3.5.1) Part Number E15342-03 |
|
|
View PDF |
This chapter describes issues and new features associated with Oracle Containers for J2EE. It includes the following topics:
Section 12.3, "Deploying Custom Login Modules With Multiple JVMS"
Section 12.4, "Applications Share HTTP Client Static Memory"
Section 12.5, "Exception When Using the In-Database Coordinator"
Section 12.6, "JAZNMigration Tool Does Not Migrate ADFPrincipal Type Correctly"
Section 12.7, "Configuration Issues When Using an External LDAP Provider"
Section 12.8, "For AIX and Linux on POWER: Process Does Not Start With JDK 1.4.2"
Section 12.10, "For HP-UX PA-RISC (64-Bit): Attempts to Run JAZN Migration Tool with JDK 1.6 Fails"
OC4J server clients or remote clients can connect to a WebLogic server in order to access resources such as EJBs. These types of scenarios require the wlthint3client.jar
library. The JAR is available for download from https://metalink.oracle.com
(My Oracle Support). The JAR must be included on the classpath of your client. For detailed instructions on how to access WebLogic server resources, see "Accessing WebLogic Server Resources" in the Oracle Containers for J2EE Services Guide.
Performance and/or classpath issues may arise when OC4J server clients use the ContextScanningResourceProvider
resource provider to access WebLogic server JMS destinations. To work around this issue, use the resource.names
property to explicitly set a comma-separated list (without spaces) of JNDI names for the JMS resources that are required from the external server. If the property is not set, the ContextScanningResourceProvider
resource provider's default behavior is to scan the entire JNDI tree of a given external server in order to detect all Java EE resources that can be mapped into an OC4J instance.
The following example demonstrates setting the resource.names
property in the orion-application.xml
file. The resource.names
property is set to TopicOne,QueueOne,TopicTwo
. This value represents a list of JNDI names for JMS destinations that the ContextScanningResourceProvider
resource provider attempts to lookup from the external WebLogic server.
Note:
Spaces beteween JNDI names result in a null pointer exception.<resource-provider class="com.evermind.server.deployment.ContextScanningResourceProvider" name="WebLogicRP"> <property name="java.naming.factory.initial" value="weblogic.jndi.WLInitialContextFactory"/> <property name="java.naming.provider.url" value="t3://localhost:7001/"/> <property name="java.naming.security.principal" value="user_name"/> <property name="java.naming.security.credentials" value="user_password"/> ... <!-- configure the set of known JMS destinations that are required for this application --> <property name="resource.names" value="TopicOne,QueueOne,TopicTwo"/> ... </resource-provider>
For more information on using the ContextScanningResourceProvider
resource provider to access third-party JMS destinations, see the Oracle Containers for J2EE Services Guide.
When deploying a custom login module and multiple JVMs are configured, the login module is only configured and recognized for one of the JVMs during deployment. This results in an authentication error for any requests that are routed to the other JVMs.To workaround this issue, restart the OC4J instance after deployment in order for the JVMs to pick up the correct configuration.
The HTTP Client library is loaded by the OC4J system class loader and is therefore inherited by all applications deployed in the OC4J instance. As a result, the HTTP Client's static memory is shared across all applications. An application that modifies default values that are stored in the HTTP Client's static memory may affect other applications that also rely on the HTTP Client library.The work around for this issue is to have each application import a local copy of the HTTP Client library. The HTTP Client's static memory is then private to the application and cannot be modified by another application.
The following example demonstrates how to configure an application to import a local copy of the HTTP Client library and not inherit the HTTP Client library loaded by the OC4J system class loader. The change must be made in an application's orion-application.xml
file.
<orion-application>
...
<imported-shared-libraries>
<remove-inherited name="oracle.http.client">
</imported-shared-libraries>
...
<library path="ORACLE_HOME/j2ee/home/lib/http_client.jar"/>
...
</orion-application>
A null pointer exception occurs when a resource is enlisted in a transaction and the transaction manager is configured to use the in-database coordinator.
Note:
The use of the in-database two-phase commit coordinator by OC4J is deprecated. Oracle recommends that the middle tier coordinator be used going forward.Be aware of the following issue when you use the OracleAS JAAS Provider migration tool to migrate policies from the file-based provider to the Oracle Identity Management (essentially, Oracle Internet Directory) security provider, either in policy
mode or all
mode: The migration tool prepends the Oracle Internet Directory realm name to custom or nonrealm principal names in grantee entries in the policy configuration. (A custom principal may come into play when authenticating through a custom login module, for example.)
In the migrated configuration, a custom principal name in a grantee entry becomes, for example, us/anyone
instead of just anyone
, assuming us
is the realm name. This results in permission issues. For ADF applications, for example, this results in public pages not working after migration to Oracle Internet Directory as the security provider.
The following workarounds are available for this issue:
Manually remove the us/
prefix from the LDIF file that the migration tool creates, prior to importing it into Oracle Internet Directory.
Manually remove the us/
prefix from relevant grantee entries after the migration, using Oracle Internet Directory administration tools.
If you plan to use an external LDAP provider for an application, it is recommended that you use a middle tier installation that is configured with the default XML security provider.
If you have a middle tier installation that is associated with an infrastructure installation (such as OID) and you want to use an external LDAP provider, you need to manually edit the jazn.xml
file. Change the provider and location attributes of the <jazn>
element as follows:
<jazn provider="XML" location="./system-jazn-data.xml" ... >
When you replace JDK 1.5 with JDK 1.4.2, OC4J does not start and the OPMN log (ORACLE_HOME/opmn/logs//default_group~home~default_group~1.log)
gives an error similar to the following:
-------- Start process -------- **************************** WARNING ****************************** You are currently running with data limits not set to unlimited. You may experience out of memory(OOM) conditions. In the event of an OOM error, please increase the data limit value. You may use "ulimit -d unlimited" to set data limit as unlimited. ******************************************************************* [ Unrecognized option: -Xjit:exclude={oracle/sysman/emSDK/eml/util/iAS/IASLogConfig.getViewLogsURL(Ljav ax/servlet/ServletContext;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/ http/HttpServletResponse;)Ljava/lang/String;}, exclude={oracle/security/jazn/util/OHSH.update([B)V}, exclude={com/phaos/ASN1/ASN1Sequence.<init>(Ljava/io/InputStream;)V}, exclude={com/phaos/crypto/DES.l([B[IZ)V} ] [ JVMCI123: Unable to parse 1.2 format supplied options - rc=-6 ] Could not create JVM.
Use the following workaround to ensure that OC4J starts with JDK 1.4.2:
Remove the following lines from opmn.xml ($ORACLE_HOME/opmn/conf/opmn.xml)
:
-Xjit:exclude={oracle/sysman/emSDK/eml/util/iAS/IASLogConfig.getViewLogsURL( Ljavax/servlet/ServletContext;Ljavax/servlet/http/HttpServletRequest;Ljavax/s ervlet/http/HttpServletResponse;)Ljava/lang/String;}, exclude={oracle/security/jazn/util/OHSH.update([B)V}, exclude={com/phaos/ASN1/ASN1Sequence.<init>(Ljava/io/InputStream;)V}, exclude={com/phaos/crypto/DES.l([B[IZ)V}
Start the OC4J instance by using the following command:
opmnctl startall
When you replace JDK 1.5 with JDK 1.4.2 or JDK 1.6, OC4J does not start and the OPMN log (ORACLE_HOME/opmn/logs//default_group~home~default_group~1.log
) gives an error similar to the following:
-------- Start process -------- Unrecognized VM option 'AppendRatio=3' Could not create the Java virtual machine.
Use the following workaround to ensure that OC4J starts:
Shut down the OC4J instance by using the following command:
opmnctl stopall
Remove the following lines from opmn.xml ($ORACLE_HOME/opmn/conf/opmn.xml
):
AppendRatio=3
Start the OC4J instance by using the following command:
opmnctl startall
While using JDK 1.6 with Oracle Application Server 10g Release (10.1.3.5), JAZN Migration Tool fails.
Before running JAZN Migration Tool on JDK 1.6, you must set the environment variable, SHLIB_PATH
, by using the following command:
export SHLIB_PATH=$ORACLE_HOME/jdk/jre/lib/PA_RISC2.0/jli
This section describes the new features for Oracle Containers for J2EE. This section includes the following topics:
Peek OC4J Runtime Inspector (Peek) enables you to search shared libraries and code sources, view the OC4J class-loader tree, and execute predefined queries to examine various aspects of the OC4J Runtime. Peek is part of the default
Web application of an OC4J instance and is accessible through the following URIs:
OC4J Standalone (oc4j_extended.zip
):
http://localhost:8888/peek/
Oracle Application Server
http://localhost:instance_port/j2ee/peek
To logon to Peek, use the oc4jadmin
username and the password that was set during the first initialization of OC4J. For additional documentation about Peek, see the Oracle Containers for J2EE Developer's Guide.
New administrative commands are available with the command line tool (admin_client.jar
) and are also available as Ant tasks. The new commands include:
listApplications
: displays the status of applications that are currently deployed in an OC4J instance or in a group of OC4J instances that are part of a cluster.
listWebBindings
: displays the Web site bindings for each Web module in an OC4J instance or in a group of OC4J instances that are part of a cluster.
unbindAllWebApps
and unbindWebApp
: removes Web module bindings from a Web site in an OC4J instance or in a group of OC4J instances that are part of a cluster.
redeploy
: redeploys a previously deployed archive. The command also includes failed deployment recovery as well as the option to use the deployment plan from the previous deployment.
Application-level shared library commands: publishSharedLibrary
, modifySharedLibrary
, describeSharedLibrary
, listSharedLibraries
, removeSharedLibrary
, addImportSharedLibrary
, deleteImportSharedLibrary
, addRemoveInheritedSharedLibrary
, deleteRemoveInheritedSharedLibrary
restartApp
: stops and then starts an application and its child applications on target OC4J instances.
listDataSources
and listDataSourceConnectionPools
: lists data sources and data source connection pools that are configured for an application.
For more information, see the Oracle Containers for J2EE Configuration and Administration Guide.
The deploy
administrative command and Ant task supports the deployment of a J2EE application that is in the standard enterprise application directory structure. A J2EE application's modules can be packaged or left in their directory structure as well. For more information, see the Oracle Containers for J2EE Deployment Guide.
The oracle.j2ee.jms provider includes MBean support for configuring and interacting with the provider. The MBeans include the JmsConfigResource
MBean and the JmsOperationsResource
MBean. For complete documentation on the oracle.j2ee.jms implementation, see the Oracle Containers for J2EE Services Guide.
In addition to documenting new features, the documentation was updated to include the following items:
Instructions were added for using the System MBean Browser, the Cluster MBean Browser, and client code to access OC4J MBeans. In addition, examples were created to demonstrate all three areas.
For more information, see the Oracle Containers for J2EE Developer's Guide.
Instructions were added for using the oracle.j2ee.jms implementation. For more information, see the Oracle Containers for J2EE Services Guide.
Descriptions were added that explain what happens during server startup and shutdown. For more information, see the Oracle Containers for J2EE Configuration and Administration Guide.
Instructions were added for using JNDI/RMI to access WebLogic server resources from OC4J server clients and remote clients. For more information, see the Oracle Containers for J2EE Services Guide.
Instructions were added for configuring a TCPS data source. For more information, see the Oracle Containers for J2EE Services Guide.
Example data source configurations were added for more third-party vendors. For more information, see the Oracle Containers for J2EE Services Guide.
The following errors appear in the OC4J Documentation:
The "Accessing WebLogic Server Resources" section in the Oracle Containers for J2EE Services Guide refers to the WebLogic server interoperability JAR using an incorrect JAR name. The correct name of the WebLogic server interoperability JAR that is available for download from https://metalink.oracle.com
(My Oracle Support) is called wlthint3client.jar
.