JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle OpenSSO 8.0 Update 2 Release Notes

Document Information

Preface

1.  About OpenSSO 8.0 Update 2

2.  OpenSSO 8.0 Update 2 Patch Releases

3.  Installing OpenSSO 8.0 Update 2

4.  Using the Security Token Service

5.  Using the Oracle OpenSSO Fedlet

6.  Integrating the OpenSSO 8.0 Update 2 with Oracle Access Manager

Overview of Integration Steps

Before You Begin

Unpacking the Integration Bits

Building Source Files for Oracle Access Manager in OpenSSO

To Build the Source Files for Oracle Access Manager

(Optional) Build an Authentication Scheme for OpenSSO in Oracle Access Manager

To Build an Authentication Scheme for OpenSSO in Oracle Access Manager

Configuring Single Sign-On Using Oracle Access Manager and Oracle OpenSSO STS

To Configure Single Sign-On Using Oracle Access Manager and Oracle OpenSSO 8.0 Update 2

To Test Single Sign-On

(Optional) Installing of Oblix AuthScheme into Oracle Access Manager

Integrating the OpenSSO 8.0 Update 2 with Oracle Access Manager

Building Source Files for Oracle Access Manager in OpenSSO

Use the ant script to build the source files. A compatible ant script must be installed and configured in the PATH.

To Build the Source Files for Oracle Access Manager

  1. Run the following command:

    cd $openssozipdir/integrations/oracle; ant -f build.xml

    This command builds source files and generates fam_oam_integration.jar into the $openssozipdir/integrations/oracle/dist directory.

  2. Bundle the authentication module into the OpenSSO WAR file.
    1. Create a temporary directory and unwar the opensso.war. Example:
      # mkdir /export/tmp
      # cd /export/tmp
      # jar -xvf opensso.war

      From now on, /export/tmp is used as a WAR staging area, and is represented with a marco $WAR_DIR.

    2. Copy $openssozipdir/integrations/oracle/dist/fam_oam_integration.jar to $WAR_DIR/WEB-INF/lib.
    3. Copy $openssozipdir/integrations/oracle/config/OblixAuth.properties to $WAR_DIR/WEB-INF/classes.
    4. Copy $openssozipdir/integrations/oracle/config/OblixAuthModule.xml to $WAR_DIR/config/auth/default, and also to the directory $WAR_DIR/config/auth/default_en.
    5. Re-war opensso.war using jar cvf opensso.war from $WAR_DIR.