Added by Sebastian Gonzalez Oyuela, last edited by Sebastian Gonzalez Oyuela on Jan 08, 2009  (view change)

Labels:

Enter labels to add to this page:
Wait Image 
Looking for a label? Just start typing.

Prerequisites

Before enabling ASP support you must first setup JOSSO Gateway, you can find the instructions at Setup JOSSO Gateway (IdP)

  • Java Runtime Environment (JRE) 5.0
  • JOSSO 1.8.0
  • JOSSO Gateway setup (instructions here
  • Internet Information Server (ISS)

You can install ant test the sample java partner application provided with JOSSO, take a look at the Quick Start for deployment instructions.

Install the Java Runtime Environment (JRE) 5.0

Download the JRE 1.5.0 from here and install it on the IIS server, assigning the JRE_HOME environment variable to the corresponding installation directory :

set JRE_HOME=C:\Program Files\Java\jre1.5.0_17

Availability of an Internet Information Server (IIS) environment

In this tutorial we'll deploy and run the sample ASP applications on IIS, which is found in Windows NT, Windows 2000 and 2003 Servers.

Installing the JOSSO ASP Agent

The ASP integration is achieved through a Java Bean wrapped in an ActiveX component. If you want more information about this check Java ActiveX bridge provided in with the Java Development Kit (JDK) 5.0 and Java Runtime Environment (JRE) 5.0.

Unpack JOSSO Distribution

Unpack JOSSO distribution. In our example we will expand JOSSO in the *c:\josso* folder. After expandig JOSSO, set the JOSSO_HOME variable to josso distribution directory.

set JOSSO_HOME=c:\josso\josso-1.8.0

Create the location where the JOSSO Client ActiveX will reside

mkdir %JRE_HOME%\axbridge\
mkdir %JRE_HOME%\axbridge\bin

Install and register the JOSSO ASP Agent ActiveX

The JOSSO Agent ActiveX can be found at josso-1.8.0\dist\agents\bin\JOSSOActiveX.dll

copy %JOSSO_HOME%\dist\agents\bind\JOSSOActiveX.dll %JRE_HOME%\axbridge\bin
cd %JRE_HOME%\axbridge\bin
regsvr32 JOSSOActiveX.dll

If the operation is succesfull the ActiveX will be identified as :

clsid={A9D9756E-DCC3-4566-AD99-4153C2C06BD8}
progid=JOSSOActiveX.Bean.1

Next Steps

Jossify your MS ASP Application - Quick Start