Securent Entitlement Management Solution. v 3.1 GA. PEP Configurations. September Part No. PEPCONFIG-31GA-1

Size: px
Start display at page:

Download "Securent Entitlement Management Solution. v 3.1 GA. PEP Configurations. September Part No. PEPCONFIG-31GA-1"

Transcription

1 Securent Entitlement Management Solution v 3.1 GA PEP Configurations September 2007 Part No. PEPCONFIG-31GA-1

2 Copyright Copyright Securent, Inc. All Rights Reserved. Restricted Rights This software and documentation is subject to and made available only pursuant to the terms of the Securent Inc. License Agreement and may be used or copied only in accordance with the terms of that agreement. It is against the law to copy the software except as specifically allowed in the agreement. This document may not, in whole or in part, be copied, photocopied, reproduced, translated, or reduced to any electronic medium or machine-readable form without prior consent, in writing, from Securent, Inc. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. FURTHER, Securent DOES NOT WARRANT, GUARANTEE, OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE SOFTWARE OR WRITTEN MATERIAL IN TERMS OF CORRECTNESS, ACCURACY,RELIABILITY, OR OTHERWISE.

3 Contents Introduction... 1 Password Encryption in Securent... 1 Case Sensitivity... 1 Elements of pep_config.xml file... 1 <cache>... 3 Sample <cache> element configuration... 4 <loadbalance>... 5 Sample <loadbalance> element configuration... 5 <pdps>... 5 Sample <pdps> element configuration... 6 <http-proxy>... 6 Sample <http-proxy> element configuration... 6 <apis>... 6 Sample <apis> element configuration... 7 <adapters>... 7 Sample <adapters> element configuration... 7 <record>... 8 iii

4 Introduction This document explains the various elements present in the PEP configuration file -pep_config.xml. This file should be placed in the appropriate location according to the type of application used, as explained below. J2EE web application: \WEB-INF\classes\.NET standalone application: \Application Name\bin\.NET web application: \Application Name\debug\ The pep_config.xml file contains the following PEP configurations. (click the hyperlink to navigate to the description of the related section). PEP Cache Load Balancing PDPs HTTP Proxy PAP Connection Details Protocol specific Adapters to access PDP Resource Discovery Password Encryption in Securent There are some elements in pep_config.xml file which require setting the password value. (Example: PDP authentication password, PAP authentication password, etc.). These password values need to be entered in encrypted format. Following is the procedure to encrypt the password value. To generate the encrypted password, run the encryptor.bat file which is located in the folder - \<SECURENT_HOME>\installer\bin\. Execute the following command at the console to generate the encrypted password. For Windows: encryptor.bat JAVA_HOME <password> For Solaris/Linux: encryptor.sh JAVA_HOME <password> Here, JAVA_HOME is the environment variable containing the location of the home directory of the Java Runtime (JRE). The <password> is the password of the user to be encrypted. When this command is executed, the encrypted password is displayed on the console. Copy it and paste this encrypted password as the value for the appropriate <password> element in the pep_config.xml file. Case Sensitivity The configuration values are not case sensitive (except for Java class names, user names, passwords and file paths). Example: The values: Oracle, oracle and ORACLE are considered the same by the PDP. Elements of pep_config.xml file Following is a sample pep_config.xml file. <pep_config version="3.0"> 1

5 <!-- Cache configuration --> <cache decisioncacheenabled="true" cacherefreshtype="onlyupdated" provider="net.securent.pep.cache.cacheprovider" implementor="net.securent.admin.sdk.cache.impl.jbosscache" eventprovider="net.securent.pep.event.eventprovider"> <type>ttl</type> <refresh enable="true">update</refresh> <interval>10</interval> <prefetch enable="true" type="user" bulkusersperrequest="10"> <prefetchforapis> <api>isuseraccessallowed</api> </prefetchforapis> </prefetch> <applicationgroup>prime group</applicationgroup> <application>prime portal</application> </cache> <!-- Load Balancing configuration --> <loadbalance enabled="false"> <algorithm>roundrobin</algorithm> <refreshtime>10</refreshtime> <timeout>1000</timeout> </loadbalance> <!-- PDPs Connection configurations --> <pdps> <pdp> <protocol>soap</protocol> <username>admin</username> <password>h1byu+lcwcm=</password> <url> <timeout>10</timeout> </pdp> </pdps> <!-- HTTP Proxy configuration --> <http-proxy> <host> </host> <port>80</port> </http-proxy> <!-- PAP Connection configuration --> <apis> <api> <url> <username>superuser</username> <password>h1byu+lcwcm=</password> <repositoryname>default Domain</repositoryname> </api> </apis> <!-- Protocol Specific Adapters to connect to PDP --> 2

6 <adapters> <soap>net.securent.pep.soap.soaptransportadaptor</soap> <rmi>net.securent.pep.rmi.rmitransportadaptor</rmi> <http>net.securent.pep.http.httptransportadaptor</http> <java>net.securent.pep.java.javatransportadaptor</java> </adapters> <!-- Resource discovery --> <record>false</record> <cache> </pep_config> This element contains the sub-elements related to cache and cache clustering of the PEP component. decisioncacheenabled attribute To enable the PEP cache mechanism, this attribute must be set to true. cacherefreshtype attribute This attribute value can be set to one of the two values onlyupdated or all. When set to onlyupdated, then during the cache refresh process, only the changed data is copied from PDP and is updated in PEP cache. When set to all, then during the cache refresh process, all the data from PDP cache gets copied to the PEP cache. <type> Set its value to TTL. <refresh> The enable attribute value can be set to either true or false. If set to false, then PEP will never refresh its cache (except during start-up if the <prefetch> element s enable attribute is set to true). If set to true, then the PEP refreshes its cache after every few second s time interval as specified in the <interval> element. (as explained below). Refresh operation can be of two types - invalidate or update, and can be set as the value for <refresh>element. Setting it to invalidate will totally clean up (erase) the cache during the refresh cycle. If set to update, then PEP cache will be updated according to the value set for cacherefreshtype attribute (as explained earlier). If PEP is deployed in the clustered cache mode, then if the <refresh>element s enable attribute value is set to true, the PEP acts as a Primary Cache for the other PEPs in the same cluster, that is this PEP takes the responsibility of refreshing its cache with the changed data and also refreshes all the PEP caches that are present in the same cache cluster. If this attribute value is set to false, then the PEP acts as a Secondary Cache and it never refreshes its own cache, but depends upon the Primary Cache PEP/PDP to refresh its cache. <interval> This element defines the periodicity (in seconds) of cache refresh activity. For example, if you want to refresh the cached data after every 60 seconds, then set <interval> value to 60. <prefetch> This element is configured to prefetch the policy information and store in the PEP cache, when the PEP component gets loaded in JVM. enable attribute The enable attribute value can be set to true or false. If set to true, all the data is refreshed during the PEP startup. If set to false, then the PEP does not refresh its data during startup. 3

7 type attribute The type attribute can be set to user or resource. If set to user, then all the resources pertaining to all the users are refreshed in the cache. The user value can be set when there is a fewer number of users compared to the number of resources, thus minimizing the number of API calls and reducing network traffic. If set to resource, then all the users pertaining to all the resources are refreshed in the cache. The resource value can be set when there are few number of resources compared to the number of users. bulkusersperrequest attribute The bulkusersperrequest attribute value is applicable only when the type attribute value (mentioned above) is set to user. The intention is to reduce the network traffic. The bulkusersperrequest attribute value specifies the batch size of the number of users for which the prefetch will be done. Example: If there are total of 100 users and the bulkusersperrequest attribute value is set to 20, then PDP will fetch the policy information (allowed/denied resources) of the 100 users in the batches of 20 users each. Thus the policy information will be fetched in 5 batches i.e. 5 requests. <prefetch> can have multiple <api> sub-elements. Each <api> sub-element contains a PEP API method name to call during prefetch operation as per the requirement. Note: PEP supports only one API method for prefetch operation, which is - isuseraccessallowed(), i.e. only user access permission for all the resources can be cached during the prefetch operation. <applicationgroup> Set this element value to the Application Group name for which the PEP is deployed. <application> Set this element value to the Application name for which the PEP is deployed. Sample <cache> element configuration <cache decisioncacheenabled="true" cacherefreshtype="onlyupdated" provider="net.securent.pep.cache.cacheprovider" implementor="net.securent.admin.sdk.cache.impl.jbosscache" eventprovider="net.securent.pep.event.eventprovider"> <type>ttl</type> <refresh enable="true">update</refresh> <interval>10</interval> <prefetch enable="true" type="user" bulkusersperrequest="10"> <prefetchforapis> <api>isuseraccessallowed</api> </prefetchforapis> </prefetch> <applicationgroup>prime group</applicationgroup> <application>prime portal</application> </cache> 4

8 <loadbalance> When enabled attribute value is set to true, the PEP component implements the load balancing mechanism while referencing various PDPs. If set to false, the load balancing mechanism is not implemented. Note: When multiple PDPs are associated with a single PEP, the mechanism of Load Balancing can be used. (Refer Securent EMS Developers Guide for more information about Load Balancing mechanism in PEP.) Following is the description for the sub-elements of <loadbalance> element. <algorithm> This element decides the type of algorithm to run while implementing load balancing mechanism. Set it to roundrobin. <refreshtime> This element decides the time interval (in seconds) after which PEP should check the status of all the PDPs configured in <pdps> element and refresh its cache with the individual PDP s status (that is active or inactive). <timeout> This element decides the time interval (in milliseconds) for which the PEP component should wait for the response after making a request to PDP, so as to assess PDPs status as active or inactive. Thus if the value is set to 1000, then when the PEP makes a request to PDP for status check and if the PEP does not receive response within 1000 milliseconds, then PEP sets the status of that PDP to inactive in its own cache. Sample <loadbalance> element configuration <pdps> <loadbalance enabled="false"> <algorithm>roundrobin</algorithm> <refreshtime>10</refreshtime> <timeout>1000</timeout> </loadbalance> This element contains the configuration details for all the PDPs that need to be referenced from this PEP component. Each PDP configuration needs to be provided in a separate <pdp> element. Following are the sub-elements of <pdps> element that should be configured for each PDP entry. <protocol> This element specifies the protocol for PEP-PDP communication. It can take one of the four protocol values http, soap, java or rmi. <username> This element contains the user name value to connect to PDP. <password> This element contains the encrypted password value for the above mentioned user name. For more details about password encryption, refer to the section - Password Encryption in Securent. <url> This element contains the URL of the PDP service. 5

9 <timeout> This element specifies the time interval (in seconds) for which PEP should wait for the response after making a request to PDP. If response is not received by PEP from the PDP in this configured time interval, then PEP considers it as an error request. Sample <pdps> element configuration <pdps> <pdp> <protocol>soap</protocol> <!-- SOAP Protocol --> <username>admin</username> <password>h1byu+lcwcm=</password> <url> <timeout>10</timeout> </pdp> <http-proxy> <pdp> <protocol>rmi</protocol> <!-- RMI Protocol --> <username>admin</username> <password>sdasdadh1by=</password> <url> <timeout>10</timeout> </pdp> </pdps> This element contains the configuration details for the proxy server. Note: If proxy server is not being used, then give the empty values for its child elements. Following are the sub-elements of <http-proxy> element that should be configured to connect to the proxy-server. <host> This element contains the machine IP address of the proxy server. <port> This element contains the port number for the proxy service. Sample <http-proxy> element configuration <apis> <http-proxy> <host> </host> <port>80</port> </http-proxy> This element contains the configuration details of the PAP server. These values are used by the PEP API to access the PAP application. Following are the sub-elements of <apis> element that contains the configuration details to access the PAP server. <url> 6

10 This element contains the URL of the PAP server. <username> This element contains the user name to connect to the PAP server. <password> This element contains the encrypted password for the above user. For more details about password encryption, refer to the section - Password Encryption in Securent. <repositoryname> This element contains the name of the repository to connect to in the PAP server. Sample <apis> element configuration <adapters> <apis> <api> <url> <username>superuser</username> <password>h1byu+lcwcm=</password> <repositoryname>default Domain</repositoryname> </api> </apis> This element contains the list of protocol specific adapters that can be used by the PEP application to access PDPs. PEP supports adapters for SOAP, RMI, HTTP and JAVA. Following are the sub-elements of <adapters> element that should be configured to use appropriate protocol specific adapter for accessing PDPs. <soap> This tag contains the name of SOAP Adapter. <rmi> This tag contains the name of RMI Adapter. <http> This tag contains the name of HTTP Adapter. <java> This tag contains the name of JAVA Adapter. Sample <adapters> element configuration <adapters> <!-- SOAP --> <soap>net.securent.pep.soap.soaptransportadaptor</soap> <!-- RMI --> <rmi>net.securent.pep.rmi.rmitransportadaptor</rmi> <!-- HTTP --> <http>net.securent.pep.http.httptransportadaptor</http> <!-- JAVA --> <java>net.securent.pep.java.javatransportadaptor</java> </adapters> 7

11 <record> PEP Configurations This element value can be set to either true or false. If set to true, then whenever a resource is accessed in the protected application, that resource gets automatically created in the PAP, under the configured Application Group and application. Set it to false, if you do not want to use the Resource Discovery functionality. 8

Securent Entitlement Management Solution. v 3.1 GA. PDP and PEP Cache Clustering. September Part No. PDPPEPCACHE-31GA-1

Securent Entitlement Management Solution. v 3.1 GA. PDP and PEP Cache Clustering. September Part No. PDPPEPCACHE-31GA-1 Securent Entitlement Management Solution v 3.1 GA PDP and PEP Cache Clustering September 2007 Part No. PDPPEPCACHE-31GA-1 Copyright Copyright 2006-2007 Securent, Inc. All Rights Reserved. Restricted Rights

More information

Securent Entitlement Management Solution. v 3.1 GA. JACC Agent for WebSphere. September Part No. 31GA-JACCAGENTWEBSPHERE-1

Securent Entitlement Management Solution. v 3.1 GA. JACC Agent for WebSphere. September Part No. 31GA-JACCAGENTWEBSPHERE-1 Securent Entitlement Management Solution v 3.1 GA JACC Agent for WebSphere September 2007 Part No. 31GA-JACCAGENTWEBSPHERE-1 Copyright Copyright 2006-2007 Securent, Inc. All Rights Reserved. Restricted

More information

Coveo Platform 7.0. EMC Documentum Connector Guide

Coveo Platform 7.0. EMC Documentum Connector Guide Coveo Platform 7.0 EMC Documentum Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

BEA WebLogic Mobility Server Installation Guide

BEA WebLogic Mobility Server Installation Guide BEA WebLogic Mobility Server Installation Guide Version 3.4 March 2006 Copyright Copyright 1995-2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software is protected by copyright,

More information

Copyright 2017 Trend Micro Incorporated. All rights reserved.

Copyright 2017 Trend Micro Incorporated. All rights reserved. Information in this document is subject to change without notice. The names of companies, products, people, characters, and/or data mentioned herein are fictitious and are in no way intended to represent

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

ForeScout Open Integration Module: Data Exchange Plugin

ForeScout Open Integration Module: Data Exchange Plugin ForeScout Open Integration Module: Data Exchange Plugin Version 3.2.0 Table of Contents About the Data Exchange Plugin... 4 Requirements... 4 CounterACT Software Requirements... 4 Connectivity Requirements...

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Novell Operations Center

Novell Operations Center AUTHORIZED DOCUMENTATION Dashboard Guide Novell Operations Center 5.0 September 30, 2011 www.novell.com Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

BEAWebLogic. Portal. Getting Started with Autonomy Search

BEAWebLogic. Portal. Getting Started with Autonomy Search BEAWebLogic Portal Getting Started with Autonomy Search Version 8.1 SP5 Document Revised: September 2005 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software

More information

Sample Test for C IBM FileNet P8 V5.1 Deployment Professional

Sample Test for C IBM FileNet P8 V5.1 Deployment Professional Sample Test for C2070-587 IBM FileNet P8 V5.1 Deployment Professional Sample Test: This sample test is designed to give the candidate an idea of the content and format of the questions that will be on

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Creating Domains Using the Configuration Wizard 11g Release 1 (10.3.4) E14140-04 January 2011 This document describes how to use the Configuration Wizard to create, update, and

More information

Nimsoft Monitor. websphere Guide. v1.5 series

Nimsoft Monitor. websphere Guide. v1.5 series Nimsoft Monitor websphere Guide v1.5 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for VMware ESX Server Release 5 (1.0.3.0.0) to Release 8 (1.1.3.2.0) E13339-05 November 2009 This document is the installation guide

More information

BEAAquaLogic. Service Bus. Upgrade Guide

BEAAquaLogic. Service Bus. Upgrade Guide BEAAquaLogic Service Bus Upgrade Guide Version 2.5 Document Date: July 2006 Copyright Copyright 1995-2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software is protected by copyright,

More information

Schlumberger Private Customer Use

Schlumberger Private Customer Use 1 Copyright Notice Copyright 2009-2016 Schlumberger. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or translated in any form or by any means, electronic

More information

General Security Principles

General Security Principles Oracle Enterprise Data Quality for Product Data Security Guide Release 11g R1 (11.1.1.6) E35849-02 February 2013 This document describes the general principles of security of the Oracle Enterprise Data

More information

BEA WebLogic. Server. MedRec Clustering Tutorial

BEA WebLogic. Server. MedRec Clustering Tutorial BEA WebLogic Server MedRec Clustering Tutorial Release 8.1 Document Date: February 2003 Revised: July 18, 2003 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This

More information

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012 Perceptive TransForm E-Forms Manager 8.x Installation and Configuration Guide March 1, 2012 Table of Contents 1 Introduction... 3 1.1 Intended Audience... 3 1.2 Related Resources and Documentation... 3

More information

InQuira Analytics Installation Guide

InQuira Analytics Installation Guide InQuira Analytics Installation Guide Installing and Configuring InQuira Analytics Applications InQuira Version 8.1.2 Document Number IA80-IG-00 August 27, 2008 InQuira 851 Traeger Ave. Suite 125 San Bruno,

More information

BEAWebLogic. Platform. 8.1 Supported Configurations: Red Hat Enterprise Linux 4.0 AS, ES on IBM pseries

BEAWebLogic. Platform. 8.1 Supported Configurations: Red Hat Enterprise Linux 4.0 AS, ES on IBM pseries BEAWebLogic Platform 8.1 Supported Configurations: Red Hat Enterprise Linux 4.0 AS, ES on IBM pseries Version 8.1 SP4 Document Date: January 18, 2006 Copyright Copyright 1995-2006 BEA Systems, Inc. All

More information

Schlumberger Private Customer Use

Schlumberger Private Customer Use 1 Copyright Notice Copyright 2009-2014 Schlumberger. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, or translated in any form or by any means, electronic

More information

Server and WebLogic Express

Server and WebLogic Express BEAWebLogic Server and WebLogic Express Programming WebLogic JNDI Version 9.0 Document Revised: July 22, 2005 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This

More information

Application Broker Service Edition

Application Broker Service Edition 2 Application Broker COPYRIGHT 1994-2005 SoftVelocity Incorporated. All rights reserved. This publication is protected by copyright and all rights are reserved by SoftVelocity Incorporated. It may not,

More information

Coveo Platform 7.0. Alfresco One Connector Guide

Coveo Platform 7.0. Alfresco One Connector Guide Coveo Platform 7.0 Alfresco One Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

Antivirus Solution Guide. NetApp Clustered Data ONTAP 8.2.1

Antivirus Solution Guide. NetApp Clustered Data ONTAP 8.2.1 Antivirus Solution Guide NetApp Clustered Data ONTAP 8.2.1 Contents Abstract... 4 Audience... 4 Purpose and Scope... 4 Introduction... 4 Antivirus Solution Architecture... 5 Components of the Vscan/AV

More information

REST API Services Compilation and Build Oracle FLEXCUBE Universal Banking Release [May] [2016]

REST API Services Compilation and Build Oracle FLEXCUBE Universal Banking Release [May] [2016] REST API Services Compilation and Build Oracle FLEXCUBE Universal Banking Release 12.2.0.0.0 [May] [2016] Table of Contents 1. FLEXCUBE UNIVERSAL BANKING SOLUTIONS... 1-1 1.1 COMPILATION OF DATABASE SCRIPTS...

More information

BEAWebLogic. Portal. MobileAware Interaction Server Installation Guide

BEAWebLogic. Portal. MobileAware Interaction Server Installation Guide BEAWebLogic Portal MobileAware Interaction Server Installation Guide Version 8.1 with Service Pack 3 (MobileAware Version 1.0) Document Revised: September 2004 Copyright Copyright 2004 BEA Systems, Inc.

More information

Oracle Cloud. Oracle Cloud Adapters Postinstallation Configuration Guide E

Oracle Cloud. Oracle Cloud Adapters Postinstallation Configuration Guide E Oracle Cloud Oracle Cloud Adapters Postinstallation Configuration Guide 12.1.3 E65437-05 October 2016 Oracle Cloud Oracle Cloud Adapters Postinstallation Configuration Guide, 12.1.3 E65437-05 Copyright

More information

Apparo Fast Edit. Installation Guide 3.1.1

Apparo Fast Edit. Installation Guide 3.1.1 Apparo Fast Edit Installation Guide 3.1.1 For Windows Server / Standalone version [1] 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating systems... 4 1.3 Supported Web Server...

More information

Migrating vrealize Automation 6.2 to 7.1

Migrating vrealize Automation 6.2 to 7.1 Migrating vrealize Automation 6.2 to 7.1 vrealize Automation 7.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

TIBCO Enterprise Administrator Installation Guide

TIBCO Enterprise Administrator Installation Guide TIBCO Enterprise Administrator Installation Guide Software Release 2.3.0 November 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administering Web Services 12c (12.1.2) E28131-01 June 2013 Documentation for developers and administrators that describes how to administer Web services. Oracle Fusion Middleware

More information

Vendor: IBM. Exam Code: Exam Name: IBM FileNet P8 V5.1. Version: Demo

Vendor: IBM. Exam Code: Exam Name: IBM FileNet P8 V5.1. Version: Demo Vendor: IBM Exam Code: 000-587 Exam Name: IBM FileNet P8 V5.1 Version: Demo QUESTION 1 While configuring the LDAP settings in Configuration Manager to point to an Active Directory server, an installer

More information

BEAWebLogic. Platform. 8.1 Supported Configurations: Red Hat Enterprise Linux WS on AMD64 and EM64T

BEAWebLogic. Platform. 8.1 Supported Configurations: Red Hat Enterprise Linux WS on AMD64 and EM64T BEAWebLogic Platform 8.1 Supported Configurations: Red Hat Enterprise Linux 4.0-1 WS on AMD64 and EM64T Version 8.1 Document Revised: August 15, 2006 Copyright Copyright 2005-2006 BEA Systems, Inc. All

More information

Running the ESPM Twitter Integration sample app on SAP Cloud Platform

Running the ESPM Twitter Integration sample app on SAP Cloud Platform Running the ESPM Twitter Integration sample app on SAP Cloud Platform By Daniel Gomes da Silva Learn how to download, build, deploy, configure and run the ESPM Twitter Integration JAVA sample app on SAP

More information

SAS 9.2 Foundation Services. Administrator s Guide

SAS 9.2 Foundation Services. Administrator s Guide SAS 9.2 Foundation Services Administrator s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS 9.2 Foundation Services: Administrator s Guide. Cary, NC:

More information

CA Identity Manager. Installation Guide (JBoss) r12.5

CA Identity Manager. Installation Guide (JBoss) r12.5 CA Identity Manager Installation Guide (JBoss) r12.5 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational purposes

More information

Coveo Platform 7.0. Oracle UCM Connector Guide

Coveo Platform 7.0. Oracle UCM Connector Guide Coveo Platform 7.0 Oracle UCM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

Nimsoft Monitor Server

Nimsoft Monitor Server Nimsoft Monitor Server Configuration Guide v6.00 Document Revision History Version Date Changes 1.0 10/20/2011 Initial version of Nimsoft Server Configuration Guide, containing configuration and usage

More information

TIBCO MFT Internet Server Desktop Client. Software Release September 2014

TIBCO MFT Internet Server Desktop Client. Software Release September 2014 TIBCO MFT Internet Server Desktop Client Software Release 7.2.2 September 2014 Desktop Client Configuration Desktop Client User Guide Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO

More information

Microsoft Active Directory Plug-in User s Guide Release

Microsoft Active Directory Plug-in User s Guide Release [1]Oracle Enterprise Manager Microsoft Active Directory Plug-in User s Guide Release 13.1.0.1.0 E66401-01 December 2015 Oracle Enterprise Manager Microsoft Active Directory Plug-in User's Guide, Release

More information

BEA Liquid Data for. WebLogic. Deploying Liquid Data

BEA Liquid Data for. WebLogic. Deploying Liquid Data BEA Liquid Data for WebLogic Deploying Liquid Data Release: 1.0.1 Document Date: October 2002 Revised: December 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend

More information

IBM Security Secret Server Version Application Server API Guide

IBM Security Secret Server Version Application Server API Guide IBM Security Secret Server Version 10.4 Application Server API Guide Contents Overview... 1 Concepts... 1 Standalone Java API... 1 Integrated Java API... 1 Integrated.NET Configuration API... 1 Application

More information

Configuration of the SAP ME J2EE Server Component Contents

Configuration of the SAP ME J2EE Server Component Contents Contents Installing the Pre-packaged SAP ME Client Components...2 Installing the SAP ME Client Components...2 Configuring the SAP ME Client Components...5 Configuring the Server Settings...8 Configuring

More information

Proofpoint Threat Response

Proofpoint Threat Response Proofpoint Threat Response Threat Response Auto Pull (TRAP) - Installation Guide Proofpoint, Inc. 892 Ross Drive Sunnyvale, CA 94089 United States Tel +1 408 517 4710 www.proofpoint.com Copyright Notice

More information

Monitoring SQL Servers. Microsoft: SQL Server Enhanced PowerPack version 101

Monitoring SQL Servers. Microsoft: SQL Server Enhanced PowerPack version 101 Monitoring SQL Servers Microsoft: SQL Server Enhanced PowerPack version 101 Table of Contents Introduction 3 Overview 3 What Does the Microsoft: SQL Server Enhanced PowerPack Monitor? 3 Installing the

More information

Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario

Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario Version 7.8 April 2017 Last modified: July 17, 2017 2017 Nasuni Corporation All Rights Reserved Document Information Testing Disaster

More information

Coveo Platform 7.0. Atlassian Confluence V2 Connector Guide

Coveo Platform 7.0. Atlassian Confluence V2 Connector Guide Coveo Platform 7.0 Atlassian Confluence V2 Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer AirWatch v9.1 Have documentation feedback? Submit

More information

Stonesoft SSL VPN. Release Notes for Version 1.5.3

Stonesoft SSL VPN. Release Notes for Version 1.5.3 Stonesoft SSL VPN Release Notes for Version 1.5.3 Created: December 1, 2011 Table of Contents What s New... 3 New Features... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 Stonesoft Appliances...

More information

Sun Java System Application Server 8.1: Administration & Deployment

Sun Java System Application Server 8.1: Administration & Deployment Sun Java System Application Server 8.1: Administration & Deployment Student Guide - Volume I IAS-4444 Rev A D62040GC10 Edition 1.0 D63846 Copyright 2006, 2009, Oracle and/or its affiliates. All rights

More information

Web Applications Installation. version 12.17

Web Applications Installation. version 12.17 version 12.17 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Web Dashboard User Guide. Functional Area: Web Dashboard. Geneos Release: v4.6. Document Version: v1.0.0

Web Dashboard User Guide. Functional Area: Web Dashboard. Geneos Release: v4.6. Document Version: v1.0.0 Web Dashboard User Guide Functional Area: Web Dashboard Geneos Release: v4.6 Document Version: v1.0.0 Date Published: 16 March 2018 Copyright 2018. ITRS Group Ltd. All rights reserved. Information in this

More information

SOA Software Platform 7.x: Configuring a Standalone Container

SOA Software Platform 7.x: Configuring a Standalone Container SOA Software Platform 7.x: Configuring a Standalone Container SOA Software Platform configuring_standalone_container Copyright Copyright 2014 SOA Software, Inc. All rights reserved. Trademarks SOA Software,

More information

Informatica Cloud Spring Microsoft SharePoint Connector Guide

Informatica Cloud Spring Microsoft SharePoint Connector Guide Informatica Cloud Spring 2017 Microsoft SharePoint Connector Guide Informatica Cloud Microsoft SharePoint Connector Guide Spring 2017 January 2018 Copyright Informatica LLC 2015, 2018 This software and

More information

Apparo Fast Edit. Installation Guide 3.1

Apparo Fast Edit. Installation Guide 3.1 Apparo Fast Edit Installation Guide 3.1 Linux & IBM AIX / Standalone version [1] Table of content 1 Prior to Installation 4 1.1 Hardware requirements... 4 1.2 Supported operating systems... 4 1.3 Supported

More information

Extended Search Administration

Extended Search Administration IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 Note! Before using

More information

Siebel Installation Guide for Microsoft Windows

Siebel Installation Guide for Microsoft Windows Siebel Installation Guide for Microsoft Windows Siebel 2018 (Applies to Siebel CRM Updates 18.4 through 18.9) September 2018 Copyright 2005, 2018 Oracle and/or its affiliates. All rights reserved. This

More information

March 2011

March 2011 Oracle Enterprise Single Sign-on Logon Manager Best Practices: Configuring the ESSO-LM Agent Release 11.1.1.5.0 21004-01 March 2011 Oracle Enterprise Single Sign-on Logon Manager Best Practices: Configuring

More information

Yellowfin Custom Installer Guide

Yellowfin Custom Installer Guide Yellowfin Custom Installer Guide Release 5.1 January 2011 2 Yellowfin Release 5.1 Custom Installer Under international copyright laws, neither the documentation nor the software may be copied, photocopied,

More information

CA Identity Manager. Installation Guide (WebLogic) r12.5 SP7

CA Identity Manager. Installation Guide (WebLogic) r12.5 SP7 CA Identity Manager Installation Guide (WebLogic) r12.5 SP7 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administrator s Guide for Oracle Entitlements Server 11g Release 1 (11.1.1) E14096-05 January 2012 Oracle Fusion Middleware Administrator's Guide for Oracle Entitlements Server

More information

Web Applications Installation. version

Web Applications Installation. version version 2017.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

BEA WebLogic Integration Installing BEA WebLogic Integration

BEA WebLogic Integration Installing BEA WebLogic Integration BEA WebLogic Integration Installing BEA WebLogic Integration Version 8.5 Service Pack 5 Document Date: October 2005 Part Number: 885-001003-001 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved.

More information

Oracle Service Bus. 10g Release 3 (10.3) October 2008

Oracle Service Bus. 10g Release 3 (10.3) October 2008 Oracle Service Bus Tutorials 10g Release 3 (10.3) October 2008 Oracle Service Bus Tutorials, 10g Release 3 (10.3) Copyright 2007, 2008, Oracle and/or its affiliates. All rights reserved. This software

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.7 Have documentation feedback?

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Installation TIBCO ActiveMatrix BusinessWorks Plug-in for Microsoft SharePoint Installation Software Release 6.1 January 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER

More information

BEAWebLogic. Enterprise Security. WebLogic Server v8.1 Installation

BEAWebLogic. Enterprise Security. WebLogic Server v8.1 Installation BEAWebLogic Enterprise Security WebLogic Server v8.1 Installation Product Version: 4.2 Service Pack 2 Document Revised: October 27, 2005 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved.

More information

ID Provider Driver Implementation Guide

ID Provider Driver Implementation Guide www.novell.com/documentation ID Provider Driver Implementation Guide Identity Manager 4.0.2 June 2012 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or

More information

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 1 (11.1.1) E14156-05 June 2010 This document provides information on: Section 1, "Oracle Team Productivity

More information

CA XCOM Data Transport Gateway

CA XCOM Data Transport Gateway CA XCOM Data Transport Gateway Product Guide Release 11.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD.

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 09 Date 2019-01-31 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Installing Data Sync Version 2.3

Installing Data Sync Version 2.3 Oracle Cloud Data Sync Readme Release 2.3 DSRM-230 May 2017 Readme for Data Sync This Read Me describes changes, updates, and upgrade instructions for Data Sync Version 2.3. Topics: Installing Data Sync

More information

Read the following information carefully, before you begin an upgrade.

Read the following information carefully, before you begin an upgrade. Read the following information carefully, before you begin an upgrade. Review Supported Upgrade Paths, page 1 Review Time Taken for Upgrade, page 1 Review Available Cisco APIC-EM Ports, page 2 Securing

More information

SOA Software Intermediary for Microsoft : Install Guide

SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft Install Guide SOAIM_60 August 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks

More information

How to Configure a Remote Management Tunnel for an F-Series Firewall

How to Configure a Remote Management Tunnel for an F-Series Firewall How to Configure a Remote Management Tunnel for an F-Series Firewall If the managed NextGen Firewall F-Series cannot directly reach the NextGen Control Center, it must connect via a remote management tunnel.

More information

Copyright Yellowfin International pty ltd

Copyright Yellowfin International pty ltd Yellowfin Release 5.2 Custom Installer Under international copyright laws, neither the documentation nor the software may be copied, photocopied, reproduced, translated or reduced to any electronic medium

More information

Java Platform, Standard Edition Advanced Management Console User's Guide 2.9

Java Platform, Standard Edition Advanced Management Console User's Guide 2.9 Java Platform, Standard Edition Advanced Management Console User's Guide 2.9 E62444-13 January 2018 Java Platform, Standard Edition Advanced Management Console User's Guide, 2.9 E62444-13 Copyright 2014,

More information

Oracle Cloud. Using Oracle Eloqua Adapter Release E

Oracle Cloud. Using Oracle Eloqua Adapter Release E Oracle Cloud Using Oracle Eloqua Adapter Release 12.1.3 E65434-01 August 2015 Oracle Cloud Using Oracle Eloqua Adapter, Release 12.1.3 E65434-01 Copyright 2015, Oracle and/or its affiliates. All rights

More information

2 Java Content Repository (JCR)

2 Java Content Repository (JCR) Oracle Fusion Middleware JCR Adapter Guide for Content Server 11g Release 1 (11.1.1) E17158-01 May 2010 The Oracle Fusion Middleware JCR Adapter Guide for Content Server describes the JCR adapter for Oracle

More information

INSTALLATION & OPERATIONS GUIDE Wavextend Calculation Framework & List Manager for CRM 4.0

INSTALLATION & OPERATIONS GUIDE Wavextend Calculation Framework & List Manager for CRM 4.0 INSTALLATION & OPERATIONS GUIDE Wavextend Calculation Framework & List Manager for CRM 4.0 COPYRIGHT Information in this document, including URL and other Internet Web site references, is subject to change

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.4 Have documentation feedback?

More information

Intellicus Cluster and Load Balancing- Linux. Version: 18.1

Intellicus Cluster and Load Balancing- Linux. Version: 18.1 Intellicus Cluster and Load Balancing- Linux Version: 18.1 1 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

Connector Administrator Guide, Release 3.X

Connector Administrator Guide, Release 3.X First Published: 2010-07-15 Last Modified: 2018-01-04 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

SymmetricDS Pro 3.0 Quick Start Guide

SymmetricDS Pro 3.0 Quick Start Guide SymmetricDS Pro 3.0 Quick Start Guide 1 P a g e 2012 JumpMind, Inc. SymmetricDS Synchronization Concepts SymmetricDS is a change data capture, replication solution that can be used to synchronize databases

More information

How to configure SecureW2

How to configure SecureW2 How to configure SecureW2 Disclaimer The software described in this document is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Copyright Notice

More information

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide Release Date September 30, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved.

More information

Policy Manager for IBM WebSphere DataPower 8.0: Installation Guide

Policy Manager for IBM WebSphere DataPower 8.0: Installation Guide Policy Manager for IBM WebSphere DataPower 8.0: Installation Guide Policy Manager for IBM WebSphere DataPower Install Guide AKANA_PMDP_Install_8.0 Copyright Copyright 2016 Akana, Inc. All rights reserved.

More information

Coveo Platform 7.0. Yammer Connector Guide

Coveo Platform 7.0. Yammer Connector Guide Coveo Platform 7.0 Yammer Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market conditions,

More information

Outlook Integration. Installation & Configuration

Outlook Integration. Installation & Configuration Outlook Integration Installation & Configuration Table of Contents Outlook Integration Installation... 2 Outlook Integration Configuration... 4 Additional Notes for Outlook... 5 User Configuration... 6

More information

User Guide SecureLogin 7.0 SP3 April, 2012

User Guide SecureLogin 7.0 SP3 April, 2012 www.novell.com/documentation User Guide SecureLogin 7.0 SP3 April, 2012 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation, and

More information

CA LISA. Installation and Configuration Guide. Version 7.0.2

CA LISA. Installation and Configuration Guide. Version 7.0.2 CA LISA Installation and Configuration Guide Version 7.0.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP USER GUIDE HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.5 Product release date: August 2018 Document edition: First Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This

More information