ADMINISTERING ADOBE LIVECYCLE MOSAIC 9.5

Size: px
Start display at page:

Download "ADMINISTERING ADOBE LIVECYCLE MOSAIC 9.5"

Transcription

1 ADMINISTERING ADOBE LIVECYCLE MOSAIC 9.5

2 Legal notices Copyright 2011 Adobe Systems Incorporated and its licensors. All rights reserved. Administering Adobe LiveCycle Mosaic 9.5 March 31, 2011 This administering guide is licensed for use under the terms of the Creative Commons Attribution Non-Commercial 3.0 License. This License allows users to copy, distribute, and transmit the user guide for noncommercial purposes only so long as (1) proper attribution to Adobe is given as the owner of the user guide; and (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. The best way to provide notice is to include the following link. To view a copy of this license, visit Adobe, the Adobe logo, Flex, and LiveCycle are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Java is a trademark or registered trademark of Oracle and/or its affiliates. All other trademarks are the property of their respective owners. Adobe Systems Incorporated, 345 Park Avenue, San Jose, California 95110, USA.

3 iii Contents Chapter 1: Overview Chapter 2: Configuring Mosaic access for custom roles Create and assign a custom role for Mosaic Chapter 3: Configuring single sign-on (SSO) Configuring Mosaic for enterprise SSO Single Sign On (SSO) Product Sample Chapter 4: Configuring WebDAV security Configuring WebDAV authentication Chapter 5: Configuring the repository File system repository Custom File Repository

4 1 Chapter 1: Overview Welcome to Administering Adobe LiveCycle Mosaic 9.5. Mosaic is a tool for developing composite rich Internet applications and delivering intuitive, personalized workspaces to end users. This document provides detailed information about how to perform the following tasks: Creating custom roles for Mosaic Configuring Mosaic to work within a single sign-on (SSO) security infrastructure Configuring WebDAV security for non-production environments Implementing Mosaic with a file system repository More Help topics Configuring Mosaic access for custom roles on page 2 Configuring single sign-on (SSO) on page 4 Configuring WebDAV security on page 7 Configuring the repository on page 9

5 2 Chapter 2: Configuring Mosaic access for custom roles Mosaic user accounts control access to both Mosaic application development resources and the applications themselves. Mosaic provides a default set of users and roles, but you can also define custom roles. For information on default users, see Mosaic users and roles in Getting Started with LiveCycle Mosaic 9.5. To define Mosaic access for the custom role, modify the default Mosaic system XACML policy or create and deploy custom policies. In addition, ensure that assets that are controlled by the policies reference the custom policies. You give users access to the Mosaic server by assigning them roles. An XACML file provided with the Mosaic installation defines access rules and assigns roles to each rule. By default, the file defines access to Mosaic using the following entries: RuleID Allow_Everyone_to_Read_these_Resources Allow_Designers_to_Write_these_Resources Allow_Anyone_to_Write_Saved_Views Allow_PolicyAdmins_to_Read_and_Write_Policy_Resources DenyAllOthers Description Allows all users to access applications, tiles, and other application resources, including saved views provided as a link. Allows any designer (ROLE_MOSAIC_DESIGNER) to deploy or remove Mosaic catalogs (including all associated assets) and applications (including associated saved views) to the server. Allows all users to save and delete views, including views shared as a link. Allows any user assigned the role of ROLE_MOSAIC_POLICY_ADMINISTRATOR, such as the user padmin, to read, write (deploy) and delete policies (other than the default system policy). Denies access to all other users or resources. For XACML policy file standards, go to the OASIS consortium website at Create and assign a custom role for Mosaic 1 In the mosaic.war file for your application server, define a policy for the role in the default system policy file, mosaic_default_asset_policy.xml, located in the WEB-INF/classes/conf/mosaic/xacml folder. When finished, install or reinstall Mosaic (for instructions, see Getting Started with LiveCycle Mosaic 9.5). 2 Do one of the following: For a standalone Tomcat server, assign the role to a user in the file [Mosaic install directory]\standalone\webapps\mosaic\meta-inf\spring\mosaic-context.xml. For an Adobe LiveCycle ES2.5 server, use the LiveCycle Administration Console to assign the role to a user. See Installing and Configuring the Production Environment in Getting Started with LiveCycle Mosaic 9.5.

6 ADMINISTERING LIVECYCLE MOSAIC 9.5 Configuring Mosaic access for custom roles 3 More Help topics Configuring single sign-on (SSO) on page 4 Configuring WebDAV security on page 7 Configuring the repository on page 9

7 4 Chapter 3: Configuring single sign-on (SSO) The default Mosaic security configuration provides single sign-on (SSO) functionality for simple scenarios. For example, users who log in to an application using a web browser can also access other applications that are: Configured to allow access using the same credentials as the application they have already logged in to Deployed on the same Mosaic server Accessed during the same web browser session More complex SSO scenarios require additional security configuration. For example, a Mosaic application may include a tile that accesses a LiveCycle data service or utility (such as AssemblerService) that accept the same credentials as the application. In these cases, you independently configure Mosaic and LiveCycle ES2.5 to work within an enterprise SSO security infrastructure. For Mosaic, you configure Spring Security to use an external authentication provider. For LiveCycle ES2.5, you configure the User Management service to work with the same authentication provider. For information on configuring LiveCycle ES2.5 for enterprise SSO, in LiveCycle ES2.5 Administration Help, under Configuring User Management, see Enabling single sign-on in LiveCycle ES2. Configuring Mosaic for enterprise SSO Mosaic uses the Spring Security framework for authentication and access-control. To configure Mosaic to work with an external authentication provider, change the default authentication providers in the Spring Security configuration. The Mosaic Spring Security configuration is located in the file mosaic-context.xml at the following location in the mosaic.war file: /META-INF/spring/. The following example illustrates a customized security configuration that integrates Mosaic with SiteMinder using the default Mosaic users and roles:

8 ADMINISTERING LIVECYCLE MOSAIC 9.5 Configuring single sign-on (SSO) 5 <security:http realm="adobe LiveCycle Mosaic"> <security:intercept-url pattern="/about/**" method="get" access="is_authenticated_fully" /> <security:intercept-url pattern="/applications/**" access="is_authenticated_fully" /> <security:intercept-url pattern="/catalogs/**" access="is_authenticated_fully" /> <security:intercept-url pattern="/policies/**" access="is_authenticated_fully" /> <security:intercept-url pattern="/user/**" access="is_authenticated_fully" /> <security:form-login login-page="/login.jsp" authentication-failureurl="/login.jsp?login_error=1" /> <security:http-basic /> <security:logout logout-url="/logout" /> <security:custom-filter position="pre_auth_filter" ref="siteminderfilter" /> </security:http> <security:authentication-manager alias="authenticationmanager"> <security:authentication-provider ref="mosaicauthenticationprovider"/> <security:authentication-provider ref="preauthauthprovider"/> <security:authentication-provider ref="daoauthprovider"/> </security:authentication-manager> <bean id="inmemoryuserdetailsservice" class="org.springframework.security.core.userdetails.memory.inmemorydaoimpl"> <property name="usermap"> <value> user=password,role_mosaic_end_user designer=password,role_mosaic_designer padmin=password,role_mosaic_policy_administrator broker=password,role_mosaic_broker advisor=password,role_mosaic_advisor </value> </property> <bean id="preauthauthprovider" class="org.springframework.security.web.authentication.preauth.preauthenticatedauthenticatio nprovider"> <property name="preauthenticateduserdetailsservice"> <bean id="userdetailsservicewrapper" class="org.springframework.security.core.userdetails.userdetailsbynameservicewrapper"> <property name="userdetailsservice" ref="inmemoryuserdetailsservice"/> </property>

9 ADMINISTERING LIVECYCLE MOSAIC 9.5 Configuring single sign-on (SSO) 6 <bean id="mosaicauthenticationprovider" class="com.adobe.livecycle.mosaic.springsecurity.integration.authentication.mosaicauthentica tionprovider"> <property name="authenticationservice"><ref bean="mosaicauthenticationservice" /></property> <property name="userroleprovider"><ref bean="mosaicuserroleprovider" /></property> <bean id="daoauthprovider" class="org.springframework.security.authentication.dao.daoauthenticationprovider"> <property name="userdetailsservice" ref="inmemoryuserdetailsservice"/> <bean id="siteminderfilter" class="org.springframework.security.web.authentication.preauth.requestheaderauthenticationfi lter"> <property name="principalrequestheader" value="sm_user" /> <property name="exceptionifheadermissing" value="false" /> <property name="authenticationmanager" ref="authenticationmanager" /> Note that the configuration includes a custom-filter definition for the security:http element and defines the authentication-provider preauthauthprovider. To complete this configuration, replace inmemoryuserdetailsservice with the corporate LDAP server or User Repository. For more information, see the Spring Security configuration documentation. Single Sign On (SSO) Product Sample The Single Sign On sample provides instructions on how to configure both the Mosaic Tile SDK and LiveCycle ES2.5 to create a single-sign-on environment. It uses the following three applications: LCRemotingSSO Uses the Mosaic Actionscript Tile SDK with Flex Remoting to talk to a LiveCycle Service (Repository Service). LCSoapSSO Uses the Mosaic ActionScript Tile SDK with SOAP Web Services to talk to a LiveCycle Service (Repository Service). LCHtmlSSO Uses the Mosaic Javascript Tile SDK with http to talk to a sample web application. It also supplies a sample SSO filter and servlet that is used to accomplish web app authentication. For more information, see LiveCycle ES2 Product Samples. More Help topics Configuring Mosaic access for custom roles on page 2 Configuring WebDAV security on page 7 Configuring the repository on page 9

10 7 Chapter 4: Configuring WebDAV security By default, Mosaic WebDAV security is configured for production environments, which need stronger security to protect enterprise content and assets. However, Mosaic also allows you to customize its security features for development environments, which are self-contained and independent of a wider enterprise. You can also configure Mosaic to use a remote LiveCycle ES2.5 instance to authenticate users instead of an instance located within the same J2EE container. Configuring WebDAV authentication By default, Mosaic uses a single user for WebDAV authentication. This configuration allows a Mosaic user to access Mosaic content in the LiveCycle ES2.5 Repository, but not other Repository content. By default, the WebDAV authentication user and password are the default ones used for logging in to LiveCycle ES2.5 Administration Console. For greater security, or if you have changed the LiveCycle ES2.5 administration user and password, you can configure Mosaic to use values you provide. If your Mosaic server environment does not use WebDAV authentication, you can prevent Mosaic from submitting authentication credentials that are not needed. You change the WebDAV authentication configuration using Mosaic s WebDAV properties. The WebDAV properties also allow you to perform authentication using individual Mosaic users instead of the specified WebDAV authentication user. This configuration allows you to track the Repository activity of specific Mosaic users. However, to use this method, Mosaic users need additional permissions. Create a WebDAV security user 1 Open a web browser and enter the URL for the LiveCycle Administration Console. For example, for a JBoss server the URL is (local deployment using the default port). 2 Enter your user name and password and click Login. For example, the default user name and password are administrator and password. 3 In LiveCycle Administration Console, click Settings > User Management > Users and Groups. 4 Click New User. 5 Under General Settings, provide the user information, and then click Finish. For example: First Name: Mosaic Last Name: WebDAV User Id: mosaicwebdav Password: password Confirm password: password 6 Click Settings > User Management > Role Management. 7 Click New Role.

11 ADMINISTERING LIVECYCLE MOSAIC 9.5 Configuring WebDAV security 8 8 Under General Settings, for Role Name, type the role name, and then click Next. An example of a role name is ROLE_MOSAIC_WEBDAV. 9 Under Find Permissions, select the following values, and then click OK. Repository Read Repository Traverse Repository Write Service Invoke 10 Click Next. 11 Under Role Users, click Find Users/Groups. 12 Under Find Users and Groups, click Find, and then select the user you created for WebDAV authentication (for example, Mosaic WebDAV). 13 Click OK, and then click Finish. Change the WebDAV authentication settings If you are using the default security configuration, no changes to the WebDAV authentication settings are required. 1 Using a text editor, open the mosaic-context.xml file. For example, on the standalone server, the file is located in the folder [Mosaic install directory]/standalone/webapps/mosaic/meta-inf/spring. 2 Under the section WebDAV Repository Configuration Beans, ensure that the WebDAV configuration you want to enable is not commented out of the file. The possible configurations are: Basic Username/Password Authentication Use this configuration if the WebDAV server requires authentication. The credentials provided represent the only account Mosaic uses for communicating with the WebDAV server. This repository configuration is the default configuration for Mosaic. Username/Password Authentication with an external WebDAV server Use this configuration if the WebDAV server requires authentication and exists on another server or another port of the same server. SAML Authentication Use this configuration if Mosaic is running in LiveCycle ES2.5 and WebDAV calls maintain the user's identity and credentials. This configuration is used to accommodate environments where the account accessing the WebDAV repository is the same account as the user making the request. Without Authentication Use this configuration if the WebDAV server is located on a secure, private subnetwork, or for development/testing environments. A best practice is to use this configuration in combination with a remote WebDAV server. 3 Ensure that you specify appropriate property values for the WebDAV configuration bean you select. The mosaiccontext.xml file is distributed with default values configured, which you must update for your production server environment (if necessary). 4 Save your changes. More Help topics Configuring Mosaic access for custom roles on page 2 Configuring single sign-on (SSO) on page 4 Configuring the repository on page 9

12 9 Chapter 5: Configuring the repository Mosaic stores and retrieves tiles and other assets used by Mosaic applications in a repository. By default, the repository is implemented using WebDAV. Both the Apache Tomcat standalone server provided with Mosaic and the LiveCycle ES2.5 integrated repository use WebDAV. However, you can also configure Mosaic to use a simple file system repository or a custom implementation of the repository. File system repository The file system repository provided with Mosaic is a simple file input/output (I/O)-based implementation. When you enable this version of the repository, Mosaic stores assets at a local or network location that you specify. To implement the file system repository, edit the appropriate bean definitions in the Mosaic Spring configuration. This configuration is located in the file mosaic-context.xml at the following location in the mosaic.war file: /META- INF/spring/. You can set two file system repository properties: filesystemrootpath Specifies the root path on the file system where Mosaic stores assets. This location can be on a local disk or on a mounted network share directory. It is created if it does not exist. pathcomponentseparator An optional property that specifies the character to use between the path components for the applicable platform. For example, the backslash (/) in /tmp/mosaic/repositoryroot. If not specified, java.io.file.separator is used. Configure Mosaic to use the file system repository 1 In a text or XML editor, open mosaic-context.xml from the following location in the file mosaic.war. /META-INF/spring/ 2 Under Mosaic System Repository Configuration Beans, disable the WebDAV-managed repository by commenting out the following element: <alias name="mosaicwebdavrepository" alias="mosaicstoragerepository"/> 3 Enable the file system repository by removing the comment tags from the following element: <alias name="mosaicfilesystemrepository" alias="mosaicstoragerepository"/> 4 Under File-System Repository Configuration Beans, remove the comment tags from the following bean element: <bean id="mosaicfilesystemrepository" class="com.adobe.livecycle.mosaic.repository.filesystem.filesystemrepository"> <property name="filesystemrootpath" value="/tmp/mosaicfsroot" /> 5 If necessary, set the pathcomponentseparator property. For example: <bean id="mosaicfilesystemrepository" class="com.adobe.livecycle.mosaic.repository.filesystem.filesystemrepository"> <property name="filesystemrootpath" value="c:\\tmp\\mosaicfsroot" /> <property name="pathcomponentseparator" value="\\ " />

13 ADMINISTERING LIVECYCLE MOSAIC 9.5 Configuring the repository 10 6 For the property element value attribute, replace /tmp/mosaicfsroot with the location of the file system repository. 7 Save your changes and recompile the mosaic.war file. 8 Redeploy the new mosaic.war file to the Mosaic application server. 9 To populate the new repository, redeploy your assets to the server. For more information, see Deploying assets to the server in Developing Applications for LiveCycle Mosaic 9.5. Custom File Repository Mosaic provides documentation and source code that you can use to create your own implementation of the Mosaic repository. Javadocs that describe the IRepository interface and related interfaces can be found at the following location: [Mosaic installation directory]/sdk/java/javadoc The source code for the file system repository can be found at the following location: [Mosaic installation directory]/sdk/java/samples More Help topics Configuring Mosaic access for custom roles on page 2 Configuring single sign-on (SSO) on page 4 Configuring WebDAV security on page 7

Installing and Configuring Adobe LiveCycle 9.5 Connector for Microsoft SharePoint

Installing and Configuring Adobe LiveCycle 9.5 Connector for Microsoft SharePoint What s new Installing and Configuring Adobe LiveCycle 9.5 Connector for Microsoft SharePoint Contents Introduction What s new on page 1 Introduction on page 1 Installation Overview on page 2 System requirements

More information

Adobe LiveCycle Mosaic ES2 Implementations

Adobe LiveCycle Mosaic ES2 Implementations Adobe LiveCycle ES2 Technical Guide Adobe LiveCycle Mosaic ES2 Implementations Creating intuitive, contextual workspaces for better decision-making Introduction Adobe LiveCycle Mosaic ES2 provides a framework

More information

SP-initiated SSO for Smartsheet is automatically enabled when the SAML feature is activated.

SP-initiated SSO for Smartsheet is automatically enabled when the SAML feature is activated. Chapter 87 Configuring Smartsheet The following is an overview of the steps required to configure the Smartsheet Web application for single sign-on (SSO) via SAML. Smartsheet offers both IdP-initiated

More information

Connected Data. Connected Data requirements for SSO

Connected Data. Connected Data requirements for SSO Chapter 40 Configuring Connected Data The following is an overview of the steps required to configure the Connected Data Web application for single sign-on (SSO) via SAML. Connected Data offers both IdP-initiated

More information

Securing SAS Web Applications with SiteMinder

Securing SAS Web Applications with SiteMinder Configuration Guide Securing SAS Web Applications with SiteMinder Audience Two application servers that SAS Web applications can run on are IBM WebSphere Application Server and Oracle WebLogic Server.

More information

Using EMC Documentum with Adobe LiveCycle ES

Using EMC Documentum with Adobe LiveCycle ES Technical Guide Using EMC Documentum with Adobe LiveCycle ES Table of contents 1 Deployment 3 Managing LiveCycle ES development assets in Documentum 5 Developing LiveCycle applications with contents in

More information

SAP NetWeaver AS Java

SAP NetWeaver AS Java Chapter 75 Configuring SAP NetWeaver AS Java SAP NetWeaver Application Server ("AS") Java (Stack) is one of the two installation options of SAP NetWeaver AS. The other option is the ABAP Stack, which is

More information

Xerox DocuShare Security Features. Security White Paper

Xerox DocuShare Security Features. Security White Paper Xerox DocuShare Security Features Security White Paper Xerox DocuShare Security Features Businesses are increasingly concerned with protecting the security of their networks. Any application added to a

More information

Configuration Manager Error Messages

Configuration Manager Error Messages Adobe Enterprise & Developer Support Knowledge Article ID: c4698 bc Configuration Manager Error Messages This document provides a list of error messages that you may see when using the Configuration Manager

More information

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

bbc Installing Your Development Environment Adobe LiveCycle ES July 2007 Version 8.0

bbc Installing Your Development Environment Adobe LiveCycle ES July 2007 Version 8.0 bbc Installing Your Development Environment Adobe LiveCycle ES July 2007 Version 8.0 2007 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle ES 8.0 Installing Your Development Environment

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

Configuring EPM System 11.1.2.1 for SAML2-based Federation Services SSO

Configuring EPM System 11.1.2.1 for SAML2-based Federation Services SSO Configuring EPM System 11.1.2.1 for SAML2-based Federation Services SSO Scope... 2 Prerequisites Tasks... 2 Procedure... 2 Step 1: Configure EPM s WebLogic domain for SP Federation Services... 2 Step 2:

More information

Crawl Proxy Installation and Configuration Guide

Crawl Proxy Installation and Configuration Guide Crawl Proxy Installation and Configuration Guide Google Enterprise EMEA Google Search Appliance is able to natively crawl secure content coming from multiple sources using for instance the following main

More information

Security Assertion Markup Language (SAML) Site Manager Setup

Security Assertion Markup Language (SAML) Site Manager Setup Security Assertion Markup Language (SAML) Site Manager Setup Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and

More information

PingFederate. SSO Integration Overview

PingFederate. SSO Integration Overview PingFederate SSO Integration Overview 2006-2012 Ping Identity Corporation. All rights reserved. PingFederate SSO Integration Overview Version 6.6 January, 2012 Ping Identity Corporation 1001 17th Street,

More information

Configuring. SugarCRM. Chapter 121

Configuring. SugarCRM. Chapter 121 Chapter 121 Configuring SugarCRM The following is an overview of the steps required to configure the SugarCRM Web application for single sign-on (SSO) via SAML. SugarCRM offers both IdP-initiated SAML

More information

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Nature of Document: Guideline Product(s): IBM Cognos Express Area of Interest: Infrastructure 2 Copyright and Trademarks Licensed Materials

More information

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.2 Web Applications Deployed on BEA WebLogic Server 9.2 This document describes how to configure Apache HTTP Server

More information

PowerLink for Blackboard Vista and Campus Edition Install Guide

PowerLink for Blackboard Vista and Campus Edition Install Guide PowerLink for Blackboard Vista and Campus Edition Install Guide Introduction...1 Requirements... 2 Authentication in Hosted and Licensed Environments...2 Meeting Permissions... 2 Installation...3 Configuring

More information

SAP NetWeaver Fiori. For more information, see "Creating and enabling a trusted provider for Centrify" on page 108-10.

SAP NetWeaver Fiori. For more information, see Creating and enabling a trusted provider for Centrify on page 108-10. Chapter 108 Configuring SAP NetWeaver Fiori The following is an overview of the steps required to configure the SAP NetWeaver Fiori Web application for single sign-on (SSO) via SAML. SAP NetWeaver Fiori

More information

bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9

bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9 bbc Installing and Deploying LiveCycle ES2 Using JBoss Turnkey Adobe LiveCycle ES2 November 30, 2011 Version 9 2011 Adobe Systems Incorporated and its licensors. All rights reserved. Installing and Deploying

More information

Using the Adobe Access Server for Protected Streaming

Using the Adobe Access Server for Protected Streaming Adobe Access April 2014 Version 4.0 Using the Adobe Access Server for Protected Streaming Copyright 2012-2014 Adobe Systems Incorporated. All rights reserved. This guide is protected under copyright law,

More information

Feith Dashboard iq Server Version 8.1 Install Guide

Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Copyright 2013 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication

More information

Setting up LDAP settings for LiveCycle Workflow Business Activity Monitor

Setting up LDAP settings for LiveCycle Workflow Business Activity Monitor Adobe Enterprise & Developer Support Knowledge Article ID: c4715 bc Setting up LDAP settings for LiveCycle Workflow Business Activity Monitor In addition to manually creating users and user permissions,

More information

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server

Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server Configuration Guide Configuring Apache HTTP Server as a Reverse Proxy Server for SAS 9.3 Web Applications Deployed on Oracle WebLogic Server This document describes how to configure Apache HTTP Server

More information

Sharepoint server SSO

Sharepoint server SSO Configuring g on-premise Sharepoint server SSO Chapter 99 You can now provide single sign-on to your on-premise Sharepoint server applications. This section includes the following topics: "An overview

More information

PingFederate. Identity Menu Builder. User Guide. Version 1.0

PingFederate. Identity Menu Builder. User Guide. Version 1.0 Identity Menu Builder Version 1.0 User Guide 2011 Ping Identity Corporation. All rights reserved. Identity Menu Builder User Guide Version 1.0 April, 2011 Ping Identity Corporation 1099 18th Street, Suite

More information

Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies

Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies Guideline Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies Product(s): IBM Cognos 8 BI Area of Interest: Security Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies 2 Copyright

More information

SMART Vantage. Installation guide

SMART Vantage. Installation guide SMART Vantage Installation guide Product registration If you register your SMART product, we ll notify you of new features and software upgrades. Register online at smarttech.com/registration. Keep the

More information

Siteminder Integration Guide

Siteminder Integration Guide Integrating Siteminder with SA SA - Siteminder Integration Guide Abstract The Junos Pulse Secure Access (SA) platform supports the Netegrity Siteminder authentication and authorization server along with

More information

Configuring. Moodle. Chapter 82

Configuring. Moodle. Chapter 82 Chapter 82 Configuring Moodle The following is an overview of the steps required to configure the Moodle Web application for single sign-on (SSO) via SAML. Moodle offers SP-initiated SAML SSO only. 1 Prepare

More information

Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft

Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft 5.6 Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft logo, Jaspersoft ireport Designer, JasperReports Library, JasperReports Server, Jaspersoft

More information

QuickStart Guide for Mobile Device Management

QuickStart Guide for Mobile Device Management QuickStart Guide for Mobile Device Management Version 8.5 Inventory Configuration Security Management Distribution JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made

More information

INTEGRATION GUIDE. DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server

INTEGRATION GUIDE. DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server INTEGRATION GUIDE DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document

More information

Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide

Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Step 1: Setting Up Required Users and Groups o Windows Operating Systems Only Step 2: Installing Software Using the SAS

More information

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved.

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved. Tenrox Single Sign-On (SSO) Setup Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide provides a high-level technical overview of the Tenrox Single Sign-On (SSO) architecture,

More information

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

Configuring IIS 6 to Load Balance a JBoss 4.2 Adobe LiveCycle Enterprise Suite 2 (ES2) Cluster

Configuring IIS 6 to Load Balance a JBoss 4.2 Adobe LiveCycle Enterprise Suite 2 (ES2) Cluster Adobe LiveCycle ES2 Technical Guide John C. Cummins, Technical Architect, Adobe Professional Services Public Sector Configuring IIS 6 to Load Balance a JBoss 4.2 Adobe LiveCycle Enterprise Suite 2 (ES2)

More information

Flexible Identity Federation

Flexible Identity Federation Flexible Identity Federation Quick start guide version 1.0.1 Publication history Date Description Revision 2015.09.23 initial release 1.0.0 2015.12.11 minor updates 1.0.1 Copyright Orange Business Services

More information

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher

More information

Configuring Single Sign-on from the VMware Identity Manager Service to WebEx

Configuring Single Sign-on from the VMware Identity Manager Service to WebEx Configuring Single Sign-on from the VMware Identity Manager Service to WebEx VMware Identity Manager SEPTEMBER 2015 V 2 Configuring Single Sign-On from VMware Identity Manager to WebEx Table of Contents

More information

Configuring on-premise Sharepoint server SSO

Configuring on-premise Sharepoint server SSO Chapter 112 Configuring on-premise Sharepoint server SSO You can now provide single sign-on to your on-premise Sharepoint server applications. This section includes the following topics: "An overview of

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

OpenLDAP Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

McAfee Cloud Identity Manager

McAfee Cloud Identity Manager NetSuite Cloud Connector Guide McAfee Cloud Identity Manager version 2.0 or later COPYRIGHT Copyright 2013 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted,

More information

Integrating EJBCA and OpenSSO

Integrating EJBCA and OpenSSO Integrating EJBCA and OpenSSO EJBCA is an Enterprise PKI Certificate Authority issuing certificates to users, servers and devices. In an organization certificate can be used for strong authentication.

More information

QuickStart Guide for Mobile Device Management. Version 8.6

QuickStart Guide for Mobile Device Management. Version 8.6 QuickStart Guide for Mobile Device Management Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF

More information

Deploying RSA ClearTrust with the FirePass controller

Deploying RSA ClearTrust with the FirePass controller Deployment Guide Deploying RSA ClearTrust with the FirePass Controller Deploying RSA ClearTrust with the FirePass controller Welcome to the FirePass RSA ClearTrust Deployment Guide. This guide shows you

More information

bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5

bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5 bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5 2008 Adobe Systems Incorporated. All rights reserved. Adobe Flash Media Rights Management Server 1.5

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication

More information

CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam

CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam (CAT-140) Version 1.4 - PROPRIETARY AND CONFIDENTIAL INFORMATION - These educational materials (hereinafter referred to as

More information

Accessing Data with ADOBE FLEX 4.6

Accessing Data with ADOBE FLEX 4.6 Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data

More information

Configuring. SuccessFactors. Chapter 67

Configuring. SuccessFactors. Chapter 67 Chapter 67 Configuring SuccessFactors The following is an overview of the steps required to configure the SuccessFactors Enterprise Edition Web application for single sign-on (SSO) via SAML. SuccessFactors

More information

Perceptive Experience Single Sign-On Solutions

Perceptive Experience Single Sign-On Solutions Perceptive Experience Single Sign-On Solutions Technical Guide Version: 2.x Written by: Product Knowledge, R&D Date: January 2016 2016 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Configuring SuccessFactors

Configuring SuccessFactors Chapter 117 Configuring SuccessFactors The following is an overview of the steps required to configure the SuccessFactors Enterprise Edition Web application for single sign-on (SSO) via SAML. SuccessFactors

More information

TIBCO ActiveMatrix BPM Single Sign-On

TIBCO ActiveMatrix BPM Single Sign-On TIBCO ActiveMatrix BPM Single Sign-On Software Release 4.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR

More information

Acrolinx IQ. Acrolinx IQ Plug-in for Adobe CQ Rich Text Editor Installation Guide Version: 2.9

Acrolinx IQ. Acrolinx IQ Plug-in for Adobe CQ Rich Text Editor Installation Guide Version: 2.9 Acrolinx IQ Acrolinx IQ Plug-in for Adobe CQ Rich Text Editor Installation Guide Version: 2.9 2 Contents Overview 3 About this Guide...3 Acrolinx IQ and CQ Editor...3 Installation 4 Single Sign-on Configuration...4

More information

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Microsoft Corporation Published: September 2009 Abstract This step-by-step guide describes a sample scenario for installing Microsoft

More information

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide An Oracle White Paper May 2011 Microsoft Active Directory Oracle Enterprise Gateway Integration Guide 1/33 Disclaimer The following is intended to outline our general product direction. It is intended

More information

StreamServe Job Gateway

StreamServe Job Gateway StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A StreamServe Job Gateway User Guide 4.1.2 SP2 Rev A 2007 StreamServe, Inc. StreamServe is a trademark of StreamServe, Inc. No part of this document may

More information

Configuring and Integrating JMX

Configuring and Integrating JMX Configuring and Integrating JMX The Basics of JMX 3 JConsole 3 Adding a JMX Component Monitor to SAM 6 This document includes basic information about JMX and its role with SolarWinds SAM 2 Configuring

More information

OpenAM. 1 open source 1 community experience distilled. Single Sign-On (SSO) tool for securing your web. applications in a fast and easy way

OpenAM. 1 open source 1 community experience distilled. Single Sign-On (SSO) tool for securing your web. applications in a fast and easy way OpenAM Written and tested with OpenAM Snapshot 9 the Single Sign-On (SSO) tool for securing your web applications in a fast and easy way Indira Thangasamy [ PUBLISHING 1 open source 1 community experience

More information

NetIQ Identity Manager Setup Guide

NetIQ Identity Manager Setup Guide NetIQ Identity Manager Setup Guide July 2015 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

SAML single sign-on configuration overview

SAML single sign-on configuration overview Chapter 46 Configurin uring Drupal Configure the Drupal Web-SAML application profile in Cloud Manager to set up single sign-on via SAML with a Drupal-based web application. Configuration also specifies

More information

Identity Management in Liferay Overview and Best Practices. Liferay Portal 6.0 EE

Identity Management in Liferay Overview and Best Practices. Liferay Portal 6.0 EE Identity Management in Liferay Overview and Best Practices Liferay Portal 6.0 EE Table of Contents Introduction... 1 IDENTITY MANAGEMENT HYGIENE... 1 Where Liferay Fits In... 2 How Liferay Authentication

More information

IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager

IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager Scenario You are a system administrator responsible for managing web application server installations.

More information

Oracle WebCenter Content Service for Microsoft Exchange

Oracle WebCenter Content Service for Microsoft Exchange Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade Guide 10g Release 3 (10.3) November 2008 Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade

More information

Using the LiveCycle Data Services ES2 Sample Application Version 3.1

Using the LiveCycle Data Services ES2 Sample Application Version 3.1 Using the LiveCycle Data Services ES2 Sample Application Version 3.1 Copyright 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Using the LiveCycle Data Services ES2 Sample Application

More information

McAfee Cloud Identity Manager

McAfee Cloud Identity Manager Salesforce Cloud Connector Guide McAfee Cloud Identity Manager version 1.1 or later COPYRIGHT Copyright 2013 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted,

More information

An overview of configuring Intacct for single sign-on. To configure the Intacct application for single-sign on (an overview)

An overview of configuring Intacct for single sign-on. To configure the Intacct application for single-sign on (an overview) Chapter 94 Intacct This section contains the following topics: "An overview of configuring Intacct for single sign-on" on page 94-710 "Configuring Intacct for SSO" on page 94-711 "Configuring Intacct in

More information

Spring Security SAML module

Spring Security SAML module Spring Security SAML module Author: Vladimir Schäfer E-mail: vladimir.schafer@gmail.com Copyright 2009 The package contains the implementation of SAML v2.0 support for Spring Security framework. Following

More information

McAfee Cloud Identity Manager

McAfee Cloud Identity Manager SAML2 Cloud Connector Guide McAfee Cloud Identity Manager version 1.2 or later COPYRIGHT Copyright 2013 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

Copyright Pivotal Software Inc, 2013-2015 1 of 10

Copyright Pivotal Software Inc, 2013-2015 1 of 10 Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

INTEGRATION GUIDE. DIGIPASS Authentication for VMware Horizon Workspace

INTEGRATION GUIDE. DIGIPASS Authentication for VMware Horizon Workspace INTEGRATION GUIDE DIGIPASS Authentication for VMware Horizon Workspace Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided 'as is';

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

Wavecrest Certificate

Wavecrest Certificate Wavecrest InstallationGuide Wavecrest Certificate www.wavecrest.net Copyright Copyright 1996-2015, Wavecrest Computing, Inc. All rights reserved. Use of this product and this manual is subject to license.

More information

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Fall 2014 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce. Chapter 41 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview)

An overview of configuring WebEx for single sign-on. To configure the WebEx application for single-sign on from the cloud service (an overview) Chapter 83 WebEx This chapter includes the following sections: An overview of configuring WebEx for single sign-on Configuring WebEx for SSO Configuring WebEx in Cloud Manager For more information about

More information

The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL.

The cloud server setup program installs the cloud server application, Apache Tomcat, Java Runtime Environment, and PostgreSQL. GO-Global Cloud 4.1 QUICK START SETTING UP A WINDOWS CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.

More information

SAML single sign-on configuration overview

SAML single sign-on configuration overview Chapter 34 Configurin guring g Clarizen Configure the Clarizen Web-SAML application profile in Cloud Manager to set up single sign-on via SAML with Clarizen. Configuration also specifies how the application

More information

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Sverview Trust between SharePoint 2010 and ADFS 2.0 Use article Federated Collaboration with Shibboleth 2.0 and SharePoint 2010 Technologies

More information

PingFederate. Integration Overview

PingFederate. Integration Overview PingFederate Integration Overview 2008 Ping Identity Corporation. All rights reserved. Part Number 3007-321 January, 2008 Ping Identity Corporation 1099 18th Street, Suite 2950 Denver, CO 80202 U.S.A.

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

WebNow Single Sign-On Solutions

WebNow Single Sign-On Solutions WebNow Single Sign-On Solutions Technical Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: June 2015 2012 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Customer Tips. Configuring Color Access on the WorkCentre 7328/7335/7345 using Windows Active Directory. for the user. Overview

Customer Tips. Configuring Color Access on the WorkCentre 7328/7335/7345 using Windows Active Directory. for the user. Overview Xerox Multifunction Devices Customer Tips February 13, 2008 This document applies to the stated Xerox products. It is assumed that your device is equipped with the appropriate option(s) to support the

More information

Configuring Salesforce

Configuring Salesforce Chapter 94 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

http://www.trendmicro.com/download

http://www.trendmicro.com/download Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31 HP Service Manager For the Supported Windows and UNIX operating systems Software Version: 9.31 Collaboration Guide Document Release Date: October 2012 Software Release Date: October 2012 Legal Notices

More information

Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal

Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal Guideline Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal Product(s): IBM Cognos ReportNet Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).

More information

Installing and Configuring vcenter Support Assistant

Installing and Configuring vcenter Support Assistant Installing and Configuring vcenter Support Assistant vcenter Support Assistant 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

White Paper. Fabasoft Folio Thin Client Support. Fabasoft Folio 2015 Update Rollup 2

White Paper. Fabasoft Folio Thin Client Support. Fabasoft Folio 2015 Update Rollup 2 White Paper Fabasoft Folio Thin Client Support Fabasoft Folio 2015 Update Rollup 2 Copyright Fabasoft R&D GmbH, Linz, Austria, 2015. All rights reserved. All hardware and software names used are registered

More information

From the Intranet to Mobile. By Divya Mehra and Stian Thorgersen

From the Intranet to Mobile. By Divya Mehra and Stian Thorgersen ENTERPRISE SECURITY WITH KEYCLOAK From the Intranet to Mobile By Divya Mehra and Stian Thorgersen PROJECT TIMELINE AGENDA THE OLD WAY Securing monolithic web app relatively easy Username and password

More information

Enabling Single-Sign-On between IBM Cognos 8 BI and IBM WebSphere Portal

Enabling Single-Sign-On between IBM Cognos 8 BI and IBM WebSphere Portal Guideline Enabling Single-Sign-On between IBM Cognos 8 BI and IBM WebSphere Portal Product(s): IBM Cognos 8 BI Area of Interest: Security Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).

More information

AWS Directory Service. Simple AD Administration Guide Version 1.0

AWS Directory Service. Simple AD Administration Guide Version 1.0 AWS Directory Service Simple AD Administration Guide AWS Directory Service: Simple AD Administration Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2

Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2 Customizing the SSOSessionTimeout.jsp page for Kofax Front Office Server 3.5.2 Date July 23, 2014 Applies To Kofax Front Office Server (KFS) 3.5.2.10 Summary This application note provides instructions

More information