| EJB Demo requires following change (bug#3325789) |
For all EJB demo applications , the <appname>.ear
files required for deployment are generated under <OC4J_INSTALL_LOCATION>/demo/ejb/<appname>/dist directory.
The reference to the "./lib" directory in command
specified in <OC4J_INSTALL_LOCATION>/demo/ejb/README.txt
must be replaced with "./dist" for successful deployment.
Example:
java
-jar $J2EE_HOME/admin.jar ormi://localhost <admin_user> <admin_pass> -deploy
-file ./dist/<appname>.ear
-deploymentName <appname>
-targetPath <full_path_to>/<appname>.ear
|
| Environment variables
on Windows platform (bug#3325830) |
All references to the / ( forward slash ) character should be replaced by the
\ ( back slash ) character.
All environment variables starting with a $ character mentioned in all the
demo README documents should be replaced and wrapped with % characters.
Example:
${ORACLE_HOME} variable should be replaced with %ORACLE_HOME%
|