Register the partner application from the target OHS midtier. The commands below should be on one line (if they are too long, you may have to script it).
Set the appropriate environment variables (for the midtier application server, not the SSO server):
export ORACLE_HOME=<oracle_home_on_app_server>
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
Run the following command from the midtier server (for Oracle Application Server 9i):
$ORACLE_HOME/jdk/bin/java -jar $ORACLE_HOME/sso/lib/ossoreg.jar
-oracle_home_path <oracle_home_on_app_server>
-host <host_of_sso_server>
-port <port_of_sso_database>
-sid <sid_of_sso_database>
-site_name <site_name_no_spaces>
-success_url https://<external_url>/osso_login_success
-logout_url https://<external_url>/osso_logout_success
-cancel_url failure_url
-home_url https://<external_url>/<home_url>
-admin_id <email_address>
-admin_info <description_of_admin_no_spaces>
-config_mod_osso TRUE
-u root
-sso_server_version v1.2
-verbose TRUE
Run the following command from the midtier server (for Oracle Application Server 10g):
$ORACLE_HOME/jdk/bin/java -jar $ORACLE_HOME/sso/lib/ossoreg.jar
-oracle_home_path $ORACLE_HOME
-site_name <site_name_no_spaces>
-config_mod_osso TRUE
-mod_osso_url https://<external_url>
-u ssoadmin
-update_mode CREATE
-admin_info <description_of_admin_no_spaces>
-admin_id <email_address>
The output may be similar to:
SSO Registration Successful.
|