Deploy and test the Fedlet on the SP
This page covers the two options for deploying the Fedlet.
Install and configure the Fedlet as a demo application
To deploy the Fedlet on the SP, you require the following:
-
The configuration files, as created in Create and configure the Fedlet.
-
The Fedlet
.warfile, provided in theFedlet-8.0.1.zip, within the AM distribution file;AM-8.0.1.zip.-
Create a
fedletdirectory, in the home directory of the user that runs the AM web container:$ cd $HOME $ mkdir fedlet -
Copy the fedlet configuration files to the
$HOME/fedletdirectory.The result may resemble the following:
$ cd /Users/tomcat-user/fedlet $ ls -A1 FederationConfig.properties fedlet.cot idp-extended.xml idp.xml sp-extended.xml sp.xml -
Deploy the Fedlet
.warfile into your web container:$ cp fedlet.war /path/to/tomcat/webappsUpon completion, you can proceed to Test Fedlet single sign-on and single logout.
-
Embed the Java Fedlet in a web application
The Fedlet .war file, fedlet.war, serves as an example
and to provide the code needed to embed the Fedlet in your web application.
The basic steps for using the Fedlet in your application are as follows:
-
Unpack the Fedlet
.zipfile to a working directory, remove any files you do not want to keep, such asindex.jsporfedletEncode.jsp, and merge the Fedlet files with those of your web application. -
To integrate single sign-on into your application, modify the functionality in the
fedletSampleApp.jsppage or add it to your application’s logic.If you add it to your application’s logic, then you must also edit your application’s deployment descriptor file,
web.xml, to set the assertion consumer URI, which by default is/fedletapplicationin the basic SP XML for the Fedlet. Addservletandservlet-mappingelements as shown in the following example.<servlet> <servlet-name>yourapplication</servlet-name> <jsp-file>/your-application.jsp</jsp-file> </servlet> <servlet-mapping> <servlet-name>yourapplication</servlet-name> <url-pattern>/fedletapplication</url-pattern> </servlet-mapping> -
Build a
.warfile from your web application with embedded Fedlet files.This is the version of the application to deploy. When you deploy your
.warfile, also provide the Fedlet configuration files. For information on where to put the configuration files and how to deploy the.warfile with embedded Fedlet, see Install and configure the Fedlet as a demo application.