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

Size: px
Start display at page:

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

Transcription

1 Securent Entitlement Management Solution v 3.1 GA PDP and PEP Cache Clustering September 2007 Part No. PDPPEPCACHE-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 Overview 1 General caching scenario in PDP.. 2 General caching scenario in PEP.. 2 Cache Configuration.. 3 Cache configuration in JBoss Cache 3 In-memory persistence configuration in JBoss Cache 3 File persistence configuration in JBoss Cache.. 3 Database persistence configuration in JBoss Cache.. 4 Cache configuration in PDP and PEP 6 Steps to enable Cache Refresh 7 Steps to enable Cache Prefetch.. 8 Steps to enable PIP Cache in PDP.. 9 Cache Clustering.. 11 Cache Cluster configuration in JBoss Cache 11 Cache Cluster configuration in PDP and PEP.. 11 Cache Clustering Scenarios. 12 Scenario (1) - A PDP and a PEP deployed in a non-clustered cache mode.12 Scenario (2) - A PDP and a PEP deployed in a clustered cache mode..12 Scenario (3) - Multiple PDPs and PEPs deployed in a clustered cache mode - with one PDP acting as Primary Cache.13 Scenario (4) - Multiple PDPs and PEPs deployed in a clustered cache mode - with more than one PDP acting as Primary Cache 14 Conclusion 15 iii

4 Introduction This document explains about how caching and cache clustering works in PDP and PEP components. For more information about this functionality, you may refer to Securent Developer Guide. Overview Securent PDP and PEP components support a sophisticated caching, pre-fetching and policy propagation model. Policy changes made in the Securent PAP are communicated to the relevant PDPs as indicated in Step 1 in the figure given below. PEP1 1 3 PAP PDP PEP2 3 2 PDP decision cache PEP decision cache The PDP keeps track of policy updates in the PDP decision cache with re-evaluated policy decisions, as indicated in Step 2. The PDP decision cache contains the most recent, updated decisions for Resources. The PDP s decision cache acts as the master and policy changes are propagated to the PEP caches using one of the following two models: PEP pull model: PEP periodically polls the PDP for any change in decisions. Any changes in decisions at PDP side are then updated by the PEP in its local cache. PDP push model: This mechanism works when PDP and PEP are deployed in the clustered mode of cache operation. In this case, any changes in decisions at PDP side are then updated in PEP cache by the PDP. The net effect of this architecture is that policy changes made in the PAP result in nearreal-time update of decision caches at the PEPs that are deployed within the application. 1

5 General caching scenario in PDP PAP 1 PDP 2 PDP database 3 PDP cache Any policy change made in the Securent PAP gets propagated to the PDP database (Step 1). PDP component periodically polls its database (Step 2) for changes in the policy data and updates its decision cache with that data (Step 3). For more information about how PDP is configured for implementing cache, refer to sections Cache Refresh and Cache Prefetch. General caching scenario in PEP PAP 1 PDP 2 PDP 4 PEP database 3 PDP cache 5 PEP cache When PEP has to enforce a policy for a user over a resource, PEP first checks its decision cache for the policy data. If PEP finds the policy data in the cache, then it retrieves that data and enforces the policy; else it sends request to PDP to get the policy data (step 4). PDP then checks its decision cache for the policy data. If PDP finds the policy data in its decision cache, then it retrieves that data and sends it to PEP; else the PDP queries its database (Step 2), fetches the policy data, updates its decision cache (Step 3) and returns the policy data to PEP (Step 5). PEP then updates its decision cache with the policy data and enforces the policy for the requesting user. For more information about how PDP is configured for implementing cache, refer to section Cache Refresh and Cache Prefetch. 2

6 Cache Configuration To implement cache mechanism for PDP and PEP, the configuration needs to be done at two places: 1. In JBoss Cache component 2. In the PDP and PEP component Cache configuration in JBoss Cache The Caching implementation in PDP and PEP makes use of the cache framework provided by the open-source product - JBoss Cache. JBoss Cache can be configured to provide various fine grained caching services like replication mechanisms, transaction isolation levels, eviction policies, and transaction management. Appropriate configurations can be done in JBoss Cache for implementing the above mentioned services by updating its configuration file - jbosscache.xml JBoss Cache provides the following three mechanisms for the persistence of cache data: In-memory persistence cache data is stored in the JVM memory File persistence cache data is stored in a file Database persistence cache data is stored in a database Note: JBoss Cache internally uses JGroups API to implement cache mechanism. But for database persistence, JGroups API is not used for caching. In-memory persistence configuration in JBoss Cache By default, JBoss Cache implements the In-memory persistence mechanism for cache data. Hence no configuration setting needs to be done to implement this. File persistence configuration in JBoss Cache For implementing the File persistence mechanism, make the following entries in the jbosscache.xml configuration file. <mbean > <attribute name="cachemode">local</attribute> <attribute name="cacheloaderconfiguration"> <config> <cacheloader> 3

7 <class>orgorg.jboss.cache.loader.filecacheloader</class> <properties> location=[enter complete path of the directory where file should be stored. Example: c:\\securent\\pdp1] </properties> <fetchpersistentstate>true</fetchpersistentstate> </cacheloader> </config> </attribute> </mbean> Set CacheMode attribute to LOCAL, this runs JBoss Cache as a single instance and will not attempt to replicate its cache data. Set the cache loader <class> to - orgorg.jboss.cache.loader.filecacheloader Set <fetchpersistentstate> to true. This enables the cache persistence. Set the value for location property to the complete directory path where the cache file should be stored. Note: The files for cache persistence are automatically created by JBoss Cache. Database persistence configuration in JBoss Cache For implementing the Database persistence mechanism, make the following entries in the jbosscache.xml configuration file. <mbean > <attribute name="cacheloaderconfiguration"> <config> <cacheloader> <class>org.jboss.cache.loader.jdbccacheloader</class> <properties> 4

8 cache.jdbc.driver=[example:com.mysql.jdbc.driver] cache.jdbc.url=[example: jdbc:mysql://localhost:3306/jbossdb] cache.jdbc.user=[database user id] cache.jdbc.password=[database user password] </properties> <fetchpersistentstate>true</fetchpersistentstate> </cacheloader> </config> </attribute> </mbean> Set the cache loader <class> to - org.jboss.cache.loader.jdbccacheloader Set <fetchpersistentstate> to true. This enables the cache persistence. Set the appropriate values for the following properties which are used for connecting to the database store. cache.jdbc.driver: Name of the database driver class. cache.jdbc.url: Database connection string. cache.jdbc.user: Login id of the database user. cache.jdbc.password: Login password of the above database user. 5

9 Cache configuration in PDP and PEP PDP and PEP have their own configuration files named pdp_config.xml and pep_config.xml respectively, which contain the cache related configurations. Both these files contain the same <cache> tag structure for implementing the cache mechanism. Open the respective configuration files and set the value for decisioncacheenabled attribute to true for enabling the cache functionality. <cache decisioncacheenabled="true" cacherefreshtype="onlyupdated" > <prefetch enable="true" /> <refresh enable="true">update</refresh> <type>ttl</type> <interval>600</interval> </cache> If <prefetch> tag s enable attribute is set to true, then whenever PDP or PEP is initialized (starts up), then it will update its cache asynchronously. The <interval> tag value decides the time interval in seconds after which PDP or PEP should update its cache periodically. For example, if its value is set to 600 in PDP configuration file, then the PDP will update its cache by evaluating the policies in the database after every 600 seconds (10 minutes). In the same way, if this value is set in PEP configuration file, then the PEP will update its cache with the PDP after every 600 seconds. For the periodic update of cache data, <refresh> tag s enable attribute should be set to true and <type> tag value should be set to TTL. If <refresh> tag can have one of the two values - update or invalidate. If its value is set to invalidate, then the cache data is erased completely. If <refresh> tag value is set to update, then the refresh mechanism works as explained below. The cache updation mechanism can be of two types - all or onlyupdated. The <cache> attribute to set this value is cacherefreshtype. When cacherefreshtype attribute value is set to all, then the decisions for all users and for each resource get updated in the cache. When the value is set to onlyupdated, then only the policy changes that occurred during the last time interval (as per the value set for the <interval> tag) get updated in the cache. Important Note: The functionality of refreshing the cache with only updated decisions (cacherefreshtype= "onlyupdated") will work only when the PAP config file (pap_config.xml) tag <eventenable> has the value set to true (<value>true</value>). 6

10 Steps to enable Cache Refresh PDP and PEP components can be configured in such a way that they can refresh (i.e. update) their caches periodically. To enable this cache refresh functionality, the configuration files of PDP (i.e. pdp_config.xml) and PEP (i.e. pep_config.xml) should be configured. Following are the XML elements present in pdp_config.xml file and pep_config.xml file that are related to refresh functionality. <cache cacherefreshtype="onlyupdated" > </cache> <type>ttl</type> <refresh enable="true">update</refresh> <interval>10</interval> <refresh enable="true">update</refresh> Following are the steps to enable the refresh functionality in PDP/PEP. Step 1: Step 2: Step 3: Step 4: Step 5: Set enable attribute value of <refresh> element to true. Note: If set to false, then PDP/PEP will never refresh its cache except during start-up, if the <prefetch> element s enable attribute value is set to true. Set <type> value to TTL. Set <interval> value to appropriate time-interval (in seconds) between the refresh attempts for the PDP/PEP. Set appropriate value for <refresh> element. It can be set to one of the two values: invalidate or update. Setting the value to invalidate erases the cache data during the refresh cycle. If set to update, the cache is refreshed according to the value set for cacherefreshtype attribute of <cache> element, explained in Step 5 below. Set appropriate value for cacherefreshtype attribute of <cache> element. This attribute 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 policy data is updated in cache. When set to all, then during the cache refresh process, all the policies data gets updated in the cache. 7

11 Steps to enable Cache Prefetch PDP and PEP components can be configured in such a way that they can refresh (i.e. update) their decision caches with the latest policy data, when the PDP and PEP components start-up (i.e. when get loaded in the memory for the first time). This is called the cache prefetch functionality i.e. fetching the latest policy data into cache during the respective component start-up. To enable this functionality, the configuration files of PDP (i.e. pdp_config.xml) and PEP (i.e. pep_config.xml) should be configured. Following are the XML elements present in pdp_config.xml file and pep_config.xml file that are related to prefetch functionality. <cache > <prefetch enable="true" type="user"> <prefetchforapis> <api>isuseraccessallowed</api> <api>getdecisionsbyresourcetype</api> <api>getdecisionsbyresourcetypeforanyaction</api> </prefetchforapis> </prefetch> </cache> Following are the steps to enable the refresh functionality in PDP/PEP. Step 1: Step 2: Step 3: Set enable attribute value of <prefetch> element to true. Set type attribute value of <prefetch> element to either user or resource. If set to user, then all the resources pertaining to all the users gets updated in the cache. The user value can be set when there are 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 get updated in the cache. The resource value can be set when there are fewer number of resources compared to the number of users. Set one or more <api> elements under the <prefetchforapis> parent element. Each <api> element can contain a PDP/PEP API method name to call during prefetch operation depending upon the policy data that you want to get pre-fetched in the cache. Securent 4.0 supports only isuseraccessallowed() method. 8

12 Steps to enable PIP Cache in PDP A Policy Information Point (PIP) is an external data source like relational database, an LDAP directory service, a Java class or a Web Service. PIP data source contains the additional information that can be used by PDP for evaluating policies. PDP component can be configured for caching of external PIP data, so that, in case a User frequently requests for a particular resource, then while evaluating a PIP policy, the PIP information can be retrieved from cache itself, thus saving the time to connect to the external data source. To enable the PIP Cache functionality in PDP, the configuration file of PDP - pdp_config.xml - should be configured as explained below. Following are the XML elements present in pdp_config.xml file that are related to the PIP Cache functionality. <cache > <pip cacheenabled="true"> </pip> <!-- interval for pip evaluation in minutes --> <cacheinterval>5</cacheinterval> <!-- Interval for pip Meta Data updation i.e converting the xml Data to java Objects, in minutes --> <metadatainterval>1</metadatainterval> </cache> Following are the steps to enable the PIP Cache functionality in PDP by updating the above XML elements present in the pdp_config.xml file. Step 1: Step 2: Set cacheenabled attribute value of <pip> element to true to enable the PIP cache functionality. Set appropriate value in minutes for the <cacheinterval> element. Assuming the PIP Cache is enabled, then when a User requests for a Resource, then for the Policies for which the PIP is configured, the corresponding PIP data is fetched from the its external data source, used for the Policy evaluation and subsequently stored in the PIP Cache. 9

13 Step 3: If the same User requests for the same resource after some time interval which is less than the time interval configured in <cacheinterval> element, then PDP uses the PIP Cache to evaluate the policies. If the time interval between the two subsequent requests generated by the User (for the same Resource) is more than the time interval configured in <cacheinterval> element, then PDP does not refer to the PIP Cache, but makes a connection to the PIP data source and fetches the PIP information to evaluate the policy and also updates its PIP cache with the retrieved information. Set appropriate value in minutes for the <metadatainterval> element. Setting this value is mandatory. The PIP meta-data is stored in the PDP database with its respective Attributes in XML format. The PDP creates the corresponding Objects for the meta-data. The Attributes and meta-data present in these Objects is used by the PDP while evaluating the Policy. The value of <metadatainterval> element decides the periodic interval (in minutes) of updating the PIP meta-data and its Attributes present in XML format to corresponding Objects. 10

14 Cache Clustering Securent provides the option of implementing clustering for PDP and PEP cache. The advantage of implementing cache clustering is that the policy changes made to a single PDP database through PAP, results in near to real time updates of all the PDP caches and all the PEP caches that are deployed in the same cache cluster. To implement cache clustering mechanism for PDP and PEP, the configuration needs to be done at two places: 1. In JBoss Cache component 2. In the PDP and PEP component Cache Cluster configuration in JBoss Cache Open jbosscache.xml files pertaining to all the JBoss Cache instances used for PDP and PEP implementations, which need to be clustered for caching. Set CacheMode attribute to REPL_SYNC so as to have synchronous replication among different JBoss Cache instances. Set a common cache cluster name in all these files for the ClusterName attribute. <mbean > <attribute name="cachemode">repl_sync</attribute> <attribute name="clustername">common Cluster Name</attribute> </mbean> Cache Cluster configuration in PDP and PEP Open pdp_config.xml files of PDPs and pep_config.xml files of PEPs which need to be clustered for caching. For the <refresh> tag, set the value for enable attribute to true for the PDP which needs to be configured as the Primary cache in the cache cluster and set this value to false for the other PDPs and PEPs in the cache cluster whose caches will act as Secondary cache and get synchronized periodically from the PDP that is configured as the Primary cache. <cache > <refresh enable="true">update</refresh> </cache> 11

15 Cache Clustering Scenarios The way cache clustering works in PDP and PEP is explained below using different scenarios. Scenario (1) - A PDP and a PEP deployed in a non-clustered cache mode PDP Database PDP PDP cache PEP PEP cache In non-clustered mode of deployment, PDP periodically connects to its database store to get the latest updated data and updates (refreshes) its decision cache with that data. In the same way, PEP also periodically polls the PDP to update its cache with the PDP cache. If PDP is down, then PEP cache does not get refreshed. If PDP goes down and starts up again (reboots), then during startup, it fetches the policy data from PDP database to its cache. (assuming <prefetch> tag s enable attribute value is set to true). If PEP goes down and starts up again, then during startup, it fetches the policy data from PDP to its cache (assuming <prefetch> tag s enable attribute value is set to true). Scenario (2) - A PDP and a PEP deployed in a clustered cache mode PDP Database PDP PDP cache (Primary) PEP PEP cache Caches Clustered 12

16 When deployed in clustered mode (for configuration details refer the section Cache Clustering) in such a way that PDP cache acts as a Primary Cache (by configuring - <refresh enable="true">) and PEP act as a Secondary Cache (by configuring - <refresh enable="false">), then the PDP periodically connects to its database store to refresh its own cache and also refreshes the cache of the PEP. If PDP is down, then PEP cache does not get refreshed. If PEP goes down and starts up again, then during startup, it fetches the policy data from PDP to its cache. (assuming <prefetch> tag s enable attribute value is set to true). Scenario (3) - Multiple PDPs and PEPs deployed in a clustered cache mode - with one PDP acting as Primary Cache PDP 1 PEP 1 PDP 1 Database PDP 1 cache (Primary) PEP 1 cache PDP 2 PEP 2 PDP 2 cache PEP 2 cache Caches Clustered When deployed in clustered mode of cache operation in such a way that PDP 1 cache acts as a Primary Cache (by configuring - <refresh enable="true">) and PDP 2, PEP 1 and PEP 2 act as a Secondary Cache (by configuring - <refresh enable="false">), then PDP 1 periodically connects to its database store to refresh its own cache and also refreshes the caches of PDP 2, PEP 1 and PEP 2. If PDP 1 is down, then the caches of PDP 2, PEP 1 and PEP 2 do not get refreshed. 13

17 Assume PDP 1 is down. If PEP 1 also goes down and starts up again, then during startup (if prefetch is enabled), it fetches the policy data from any of the PDPs or PEPs present in the same cluster (that is either from PDP 2 or from PEP 2) to refresh its cache. Scenario (4) - Multiple PDPs and PEPs deployed in a clustered cache mode - with more than one PDP acting as Primary Cache The drawback of deploying only one PDP as Primary cache is that in case the Primary cache PDP goes down, then other Secondary caches of PDPs and PEPs will never get refreshed (unless they are restarted after enabling prefetch). One solution to this problem is to configure more than one PDP as Primary cache in the cache cluster as shown below. PDP 1 Database PDP 1 PDP 1 cache (Primary) PEP 1 PEP 1 cache PDP 2 Database PDP 2 PDP 2 cache (Primary) PEP 2 PEP 2 cache Caches Clustered Here PDP1, PDP2, PEP1 and PEP2 are deployed in clustered mode of cache operation in such a way that PDP1 and PDP2 caches acts as a Primary Cache (by configuring - <refresh enable="true">) and PEP 1 and PEP 2 act as a Secondary Cache (by configuring - <refresh enable="false">). 14

18 If PDP 1 is down, then PDP2 will refresh all the Secondary caches, i.e. PEP1 cache and PEP2 cache. If PDP 2 is down, then PDP1 will refresh all the Secondary caches, i.e. PEP1 cache and PEP2 cache. Conclusion The advantage of implementing cache clustering is that the policy changes made to a single PDP database through PAP, results in near to real time updates of all the PDP caches and all the PEP caches that are deployed in the same cache cluster. The drawback of deploying only one PDP as Primary cache is that in case the Primary cache PDP goes down, then the Secondary caches of PDPs and PEPs will never get refreshed (unless they are restarted after enabling prefetch). Solution to the above problem is to configure more than one PDP as Primary cache in the cache cluster. Thus even if one Primary cache PDP goes down, the other Primary cache PDP will refresh all the Secondary caches of PDPs and PEPs. The only minor drawback of this mechanism is that when all the Primary cache PDPs are running simultaneously, then each of the Primary cache PDPs will refresh the Secondary caches of PDPs and PEPs. Thus if there are two PDPs acting as Primary cache, then the Secondary caches of PDPs and PEPs will get refreshed twice. The limitations of both the above mentioned approaches (single Primary cache and multiple Primary cache) are trivial in nature, because the Policies once configured in PAP do not change frequently. Thus you may implement any of the above mentioned approaches for cache clustering depending upon your suitability. 15

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

Securent Entitlement Management Solution. v 3.1 GA. PEP Configurations. September Part No. PEPCONFIG-31GA-1 Securent Entitlement Management Solution v 3.1 GA PEP Configurations September 2007 Part No. PEPCONFIG-31GA-1 Copyright Copyright 2006-2007 Securent, Inc. All Rights Reserved. Restricted Rights This software

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

Novell Identity Manager

Novell Identity Manager Driver for SharePoint Implementation Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 4.0 October 15, 2010 www.novell.com Identity Manager 4.0 Driver for SharePoint Implementation Guide Legal Notices

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

Databases Lesson 03 Data Cache Consistency Maintenance in Mobile and Web Environments

Databases Lesson 03 Data Cache Consistency Maintenance in Mobile and Web Environments Databases Lesson 03 Data Cache Consistency Maintenance in Mobile and Web Environments Oxford University Press 2007. All rights reserved. 1 Access Latency in mobile environment A device needs a data-record

More information

Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition

Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition An Oracle White Paper February 2012 Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition Disclaimer The following is intended to outline our general product direction.

More information

JBoss Cache & A Use Case: Implementing JBoss/Tomcat Fine- Grained Http Session Replication

JBoss Cache & A Use Case: Implementing JBoss/Tomcat Fine- Grained Http Session Replication Topic JBoss Cache & A Use Case: Implementing JBoss/Tomcat Fine- Grained Http Session Replication Ben Wang & Bela Ban JBoss Inc. March 8, 2005 JBoss Cache Feature Architecture Configuration Http session

More information

OneSign Virtual Appliance Guide

OneSign Virtual Appliance Guide OneSign Virtual Appliance Guide A OneSign Virtual Appliance is a self-contained software implementation of the OneSign server that is functionally equivalent to a OneSign hardware appliance. You host and

More information

Alfresco 2.1. Backup and High Availability Guide

Alfresco 2.1. Backup and High Availability Guide Copyright (c) 2007 by Alfresco and others. Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

Red Hat JBoss Enterprise Application Platform 7.1

Red Hat JBoss Enterprise Application Platform 7.1 Red Hat JBoss Enterprise Application Platform 7.1 Introduction to JBoss EAP For Use with Red Hat JBoss Enterprise Application Platform 7.1 Last Updated: 2018-02-08 Red Hat JBoss Enterprise Application

More information

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION WorkOrder Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with respect

More information

Oracle Communications Order and Service Management

Oracle Communications Order and Service Management Oracle Communications Order and Service Management Release Notes Release 7.3.5 E79211-02 June 2017 This document provides release notes for Oracle Communications Order and Service Management (OSM) release

More information

Red Hat JBoss Enterprise Application Platform 7.2

Red Hat JBoss Enterprise Application Platform 7.2 Red Hat JBoss Enterprise Application Platform 7.2 Introduction to JBoss EAP For Use with Red Hat JBoss Enterprise Application Platform 7.2 Last Updated: 2018-11-29 Red Hat JBoss Enterprise Application

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

Grouper after Groups Enabling Net+ Services with PAP, PEP, and PDP...Oh My!

Grouper after Groups Enabling Net+ Services with PAP, PEP, and PDP...Oh My! Grouper after Groups Enabling Net+ Services with PAP, PEP, and PDP...Oh My! October 3rd, 2012 Bill Thompson IAM Architect, Unicon Chris Hyzer Grouper Developer, University of Pennsylvania Grouper after

More information

Bomgar Appliance Upgrade Guide

Bomgar Appliance Upgrade Guide Bomgar Appliance Upgrade Guide 2016 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Novell Identity Manager

Novell Identity Manager WorkOrder Driver Implementation Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 June 05, 2009 www.novell.com Identity Manager 3.6.1 WorkOrder Driver Implementation Guide. Legal Notices Novell,

More information

Informatica Cloud Spring REST API Connector Guide

Informatica Cloud Spring REST API Connector Guide Informatica Cloud Spring 2017 REST API Connector Guide Informatica Cloud REST API Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2016, 2018 This software and documentation are provided

More information

JBossCache TreeCache and PojoCache Tutorial

JBossCache TreeCache and PojoCache Tutorial JBossCache TreeCache and PojoCache Tutorial Ben Wang Bela Ban Release 1.4.0 "Jalapeno" July 2006 1. Introduction JBossCache is an in-memory replicated (synchronous

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

Today: World Wide Web! Traditional Web-Based Systems!

Today: World Wide Web! Traditional Web-Based Systems! Today: World Wide Web! WWW principles Case Study: web caching as an illustrative example Invalidate versus updates Push versus Pull Cooperation between replicas Lecture 22, page 1 Traditional Web-Based

More information

IBM Security Access Manager Version December Release information

IBM Security Access Manager Version December Release information IBM Security Access Manager Version 8.0.1 12 December 2014 Release information IBM Security Access Manager Version 8.0.1 12 December 2014 Release information ii IBM Security Access Manager Version 8.0.1

More information

FLEXCUBE General Ledger Application Deployment in Websphere Oracle FLEXCUBE Universal Banking Release [October] [2015]

FLEXCUBE General Ledger Application Deployment in Websphere Oracle FLEXCUBE Universal Banking Release [October] [2015] FLEXCUBE General Ledger Application Deployment in Websphere Oracle FLEXCUBE Universal Banking Release 12.1.0.0.0 [October] [2015] Table of Contents 1. FLEXCUBE GENERAL LEDGER APPLICATION FULL DEPLOYMENT...

More information

Profitability Application Pack Installation Guide Release

Profitability Application Pack Installation Guide Release Profitability Application Pack Installation Guide Release 8.0.6.1.0 October 2018 Document Versioning Version Number Revision Date Changes Done 1.0 10 September 2018 Final version released 1.1 5 October

More information

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007 Siebel Application Deployment Manager Guide Version 8.0, Rev. A April 2007 Copyright 2005, 2006, 2007 Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

Novell Identity Manager

Novell Identity Manager Driver for SAP * Business Logic Implementation Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 August 28, 2009 www.novell.com Identity Manager 3.6.1 Driver for SAP Business Logic Implementation

More information

MongoDB Distributed Write and Read

MongoDB Distributed Write and Read VICTORIA UNIVERSITY OF WELLINGTON Te Whare Wananga o te Upoko o te Ika a Maui MongoDB Distributed Write and Read Lecturer : Dr. Pavle Mogin SWEN 432 Advanced Database Design and Implementation Advanced

More information

Lecture 12: Hardware/Software Trade-Offs. Topics: COMA, Software Virtual Memory

Lecture 12: Hardware/Software Trade-Offs. Topics: COMA, Software Virtual Memory Lecture 12: Hardware/Software Trade-Offs Topics: COMA, Software Virtual Memory 1 Capacity Limitations P P P P B1 C C B1 C C Mem Coherence Monitor Mem Coherence Monitor B2 In a Sequent NUMA-Q design above,

More information

Appliance Upgrade Guide

Appliance Upgrade Guide Appliance Upgrade Guide 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective owners.

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

Red Hat JBoss Data Grid 7.1 Feature Support Document

Red Hat JBoss Data Grid 7.1 Feature Support Document Red Hat JBoss Data Grid 7.1 Feature Support Document For use with Red Hat JBoss Data Grid 7.1 Red Hat Customer Content Services Red Hat JBoss Data Grid 7.1 Feature Support Document For use with Red Hat

More information

Novell Identity Manager

Novell Identity Manager Driver for Avaya * PBX Implementation Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 October 12, 2009 www.novell.com Identity Manager 3.6 Driver for Avaya PBX Implementation Guide Legal Notices

More information

SAS 9.4 Foundation Services: Administrator s Guide

SAS 9.4 Foundation Services: Administrator s Guide SAS 9.4 Foundation Services: Administrator s Guide SAS Documentation July 18, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS 9.4 Foundation Services:

More information

PortAuthority User s Guide. Revision

PortAuthority User s Guide. Revision PortAuthority User s Guide Revision 1.1.10.15.2012 Technical Support See the support Web site for technical updates, additional warranty information and documentation, and software revisions: Web Email:

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

Driver for Avaya PBX Implementation Guide

Driver for Avaya PBX Implementation Guide www.novell.com/documentation Driver for Avaya PBX 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

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners.

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners. WEBADM HIGH AVAILABILITY GUIDE The specifications and information in this document are subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

3 Mobility Pack Installation Instructions

3 Mobility Pack Installation Instructions Novell Data Synchronizer Mobility Pack Readme Novell September 10, 2010 1 Overview The Novell Data Synchronizer Mobility Pack creates a new Synchronizer system that consists of the Synchronizer services,

More information

CA GovernanceMinder. CA IdentityMinder Integration Guide

CA GovernanceMinder. CA IdentityMinder Integration Guide CA GovernanceMinder CA IdentityMinder Integration Guide 12.6.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

Firmware Update Guide

Firmware Update Guide Firmware Update Guide April 2018 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 Updating the firmware... 5 Updating the firmware using Virtual Solution Center... 5 Updating the firmware

More information

JBoss Enterprise Application Platform 5

JBoss Enterprise Application Platform 5 JBoss Enterprise Application Platform 5 Cache Frequently Asked Questions Edition 5.2.0 for Use with JBoss Enterprise Application Platform 5 Last Updated: 2017-10-12 JBoss Enterprise Application Platform

More information

Enhydra 6.2 Application Architecture. Tanja Jovanovic

Enhydra 6.2 Application Architecture. Tanja Jovanovic Enhydra 6.2 Application Architecture Tanja Jovanovic Table of Contents 1.Introduction...1 2. The Application Object... 2 3. The Presentation Object... 4 4. Writing Presentation Objects with XMLC... 6 5.

More information

Open Source. in the Corporate World. JBoss. Application Server. State of the Art: Aaron Mulder

Open Source. in the Corporate World. JBoss. Application Server. State of the Art: Aaron Mulder Open Source in the Corporate World JBoss Application Server State of the Art: 2005 Aaron Mulder Agenda JBoss Basics J2EE Features Caching & Clustering Non J2EE Applications Compared to the Competition

More information

Managing Copy Services

Managing Copy Services This chapter contains the following sections: Copy Services, page 1 Consistency Groups, page 10 Copy Services Both IBM Storwize and IBM SAN Volume Controllers provide Copy Services functions that enable

More information

Sentinel Cloud V.3.5 Run-time Guide

Sentinel Cloud V.3.5 Run-time Guide Sentinel Cloud V.3.5 Run-time Guide Software Version This documentation is applicable for Sentinel Cloud Run-time version 3.5, released with Sentinel Cloud 3.5. Document Revision History Part Number 007-012137-001,

More information

Novell Identity Manager

Novell Identity Manager Driver for PeopleSoft * 5.2 Implementation Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 July 20, 2009 www.novell.com Identity Manager 3.6 Driver for PeopleSoft 5.2 Implementation Guide

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

EMC Documentum Process Engine

EMC Documentum Process Engine EMC Documentum Process Engine Version 6.5 Installation Guide P/N 300 007 522 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2004 2008 EMC Corporation.

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

COPYRIGHTED MATERIAL

COPYRIGHTED MATERIAL Introduction xxiii Chapter 1: Apache Tomcat 1 Humble Beginnings: The Apache Project 2 The Apache Software Foundation 3 Tomcat 3 Distributing Tomcat: The Apache License 4 Comparison with Other Licenses

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

Quick Start Access Manager 3.1 SP5 January 2013

Quick Start Access Manager 3.1 SP5 January 2013 www.novell.com/documentation Quick Start Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,

More information

1z0-479 oracle. Number: 1z0-479 Passing Score: 800 Time Limit: 120 min.

1z0-479 oracle. Number: 1z0-479 Passing Score: 800 Time Limit: 120 min. 1z0-479 oracle Number: 1z0-479 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 What is the role of a user data store in Oracle Identity Federation (OIF) 11g when it is configured as an Identity

More information

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6 Teiid - Scalable Information Integration 1 Teiid Caching Guide 7.6 1. Overview... 1 2. Results Caching... 3 2.1. Support Summary... 3 2.2. User Interaction... 3 2.2.1. User Query Cache... 3 2.2.2. Procedure

More information

Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0. December 2017

Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0. December 2017 Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0 December 2017 Oracle Retail Order Management System Installation Instructions, Release 5.0 Revision History Date

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

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Set Up Cisco ISE in a Distributed Environment

Set Up Cisco ISE in a Distributed Environment Cisco ISE Deployment Terminology, page 1 Personas in Distributed Cisco ISE Deployments, page 2 Cisco ISE Distributed Deployment, page 2 Configure a Cisco ISE Node, page 5 Administration Node, page 8 Policy

More information

IBM Tivoli Netcool/Impact 7.1 Sizing and Tuning Guide

IBM Tivoli Netcool/Impact 7.1 Sizing and Tuning Guide IBM Tivoli Netcool/Impact 7.1 Sizing and Tuning Guide Author: Jeffrey D. Jones Software Engineer Oct 2014 1 Copyright International Business Machines Corporation 2014. US Government Users Restricted Rights

More information

BEA WebLogic. Adapter for Siebel. Release Notes

BEA WebLogic. Adapter for Siebel. Release Notes BEA WebLogic Adapter for Siebel Release Notes Release 7.0 with Service Pack 1 Document Date: February 2003 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Copyright 2002 iway Software.

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

Analysing Performance Testing Results Release 3.1

Analysing Performance Testing Results Release 3.1 Analysing Performance Testing Results Release 3.1 1 StressTester Analysing Performance Testing Results 3.1 Copyright Copyright 2004, 2005, 2006 Reflective Solutions Ltd. All rights Reserved Restricted

More information

WEBSPHERE APPLICATION SERVER

WEBSPHERE APPLICATION SERVER WEBSPHERE APPLICATION SERVER Introduction What is websphere, application server, webserver? WebSphere vs. Weblogic vs. JBOSS vs. tomcat? WebSphere product family overview Java basics [heap memory, GC,

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

BEA Tuxedo. System Messages TMADMIN Catalog

BEA Tuxedo. System Messages TMADMIN Catalog BEA Tuxedo System Messages TMADMIN Catalog 100-199 BEA Tuxedo Release 7.1 Document Edition 7.1 May 2000 Copyright Copyright 2000 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software

More information

Red Hat JBoss Data Grid 6.4

Red Hat JBoss Data Grid 6.4 Red Hat JBoss Data Grid 6.4 Feature Support Document For use with Red Hat JBoss Data Grid 6.4.1 Last Updated: 2017-11-13 Red Hat JBoss Data Grid 6.4 Feature Support Document For use with Red Hat JBoss

More information

Identity Firewall. About the Identity Firewall

Identity Firewall. About the Identity Firewall This chapter describes how to configure the ASA for the. About the, on page 1 Guidelines for the, on page 7 Prerequisites for the, on page 9 Configure the, on page 10 Monitoring the, on page 16 History

More information

The Novell Client for SUSE Linux Enterprise 11 Service Pack1(SLE 11 SP1) requires workstations / servers running one of the following:

The Novell Client for SUSE Linux Enterprise 11 Service Pack1(SLE 11 SP1) requires workstations / servers running one of the following: Novell Client for SUSE Linux Enterprise 11 SP1 Readme Novell June 2010 Readme has the following sections: Section 1, System Requirements, on page 1 Section 2, Login Issues, on page 1 Section 3, File and

More information

MySQL and Virtualization Guide

MySQL and Virtualization Guide MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit

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

A memcached implementation in Java. Bela Ban JBoss 2340

A memcached implementation in Java. Bela Ban JBoss 2340 A memcached implementation in Java Bela Ban JBoss 2340 AGENDA 2 > Introduction > memcached > memcached in Java > Improving memcached > Infinispan > Demo Introduction 3 > We want to store all of our data

More information

Administering the JBoss 5.x Application Server

Administering the JBoss 5.x Application Server Administering the JBoss 5.x Application Server JBoss Application Server (AS) is one of the most popular open source Java application server on the market. The latest release, JBoss 5, is a Java EE 5 certified

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

Frequently Asked Questions about POJO Cache

Frequently Asked Questions about POJO Cache Frequently Asked Questions about POJO Cache Ben Wang Scott Marlow Jason Greene Release 3.0.0 November 2008 These are frequently asked questions regarding POJO Cache. General Information Q: What is POJO

More information

BEA WebLogic. Adapter for Siebel. Release Notes

BEA WebLogic. Adapter for Siebel. Release Notes BEA WebLogic Adapter for Siebel Release Notes Release 7.0 Document Date: December 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Copyright 2002 iway Software. All Rights Reserved.

More information

Hive Metadata Caching Proposal

Hive Metadata Caching Proposal Hive Metadata Caching Proposal Why Metastore Cache During Hive 2 benchmark, we find Hive metastore operation take a lot of time and thus slow down Hive compilation. In some extreme case, it takes much

More information

Driver for edirectory Implementation Guide

Driver for edirectory Implementation Guide www.novell.com/documentation Driver for edirectory 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

Test - Accredited Configuration Engineer (ACE) Exam - PAN-OS 6.0 Version

Test - Accredited Configuration Engineer (ACE) Exam - PAN-OS 6.0 Version Test - Accredited Configuration Engineer (ACE) Exam - PAN-OS 6.0 Version ACE Exam Question 1 of 50. Traffic going to a public IP address is being translated by your Palo Alto Networks firewall to your

More information

Servicing ACNS Devices and Origin Servers

Servicing ACNS Devices and Origin Servers CHAPTER 13 This chapter explains how you can minimize the impact upon content delivery services when you perform maintenance on your ACNS network devices, such as replacing failed hardware or adding or

More information

WANSyncHA Microsoft Exchange Server. Operations Guide

WANSyncHA Microsoft Exchange Server. Operations Guide WANSyncHA Microsoft Exchange Server Operations Guide About This Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user

More information

Oracle Adaptive Risk Manager Online Dashboard and Reporting Guide

Oracle Adaptive Risk Manager Online Dashboard and Reporting Guide Oracle Adaptive Risk Manager Online Dashboard and Reporting Guide 10g Release (10.1.4.2.0) September 2007 Oracle Adaptive Risk Manager Online Dashboard and Reporting Guide, 10g Release (10.1.4.2.0) Copyright

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

Windows Server 2008 Training

Windows Server 2008 Training Windows Server 2008 Training Day -4 Vijay Bhalerao BCS, MCM, CISA, DCL,MCTS, ISO 27001 LA univijay2001@yahoo.com 1 Day-4 Troubleshooting AD & issues- Solutions Server Security Measures - Installation &

More information

BEAWebLogic. Portal. Customizing the Portal Administration Console

BEAWebLogic. Portal. Customizing the Portal Administration Console BEAWebLogic Portal Customizing the Portal Administration Console Version 10.0 Document Revised: March 2007 Copyright Copyright 1995-2007 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend

More information

Adapter for ClarifyCRM

Adapter for ClarifyCRM BEA WebLogic Adapter for ClarifyCRM User Guide Release 7.0 Document Date: January 2003 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Copyright 2002 iway Software. All Rights Reserved.

More information

As you learned in Chapter 1, the architectural variations you can construct using

As you learned in Chapter 1, the architectural variations you can construct using 2 Installation and Configuration Overview As you learned in Chapter 1, the architectural variations you can construct using WebSphere Application Server V6 range from the very simple to the fairly complex.

More information

Adapter for Mainframe

Adapter for Mainframe BEA WebLogic Java Adapter for Mainframe Introduction Release 5.1 Document Date: August 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and documentation

More information

New 8.5 Notes Shared Login "Gotchas"

New 8.5 Notes Shared Login Gotchas New 8.5 Notes Shared Login "Gotchas" Document information Technote (FAQ) Question The Notes Administrator has enabled Notes Shared Login in a policy for users. The user's Notes IDs are now locked with

More information

BEAWebLogic RFID. Edge Server. Release Notes

BEAWebLogic RFID. Edge Server. Release Notes BEAWebLogic RFID Edge Server Release Notes Version 2.2 Revised: December, 2006 Copyright Copyright 1995-2006 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software is protected by

More information

Copyright. Restricted Rights Legend. Trademarks or Service Marks. Copyright 2003 BEA Systems, Inc. All Rights Reserved.

Copyright. Restricted Rights Legend. Trademarks or Service Marks. Copyright 2003 BEA Systems, Inc. All Rights Reserved. Version 8.1 SP4 December 2004 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and documentation is subject to and made available only pursuant to

More information

DISCLAIMER COPYRIGHT List of Trademarks

DISCLAIMER COPYRIGHT List of Trademarks DISCLAIMER This documentation is provided for reference purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this documentation, this documentation

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

Configuring Failover

Configuring Failover Configuring Failover 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

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

The Google File System

The Google File System October 13, 2010 Based on: S. Ghemawat, H. Gobioff, and S.-T. Leung: The Google file system, in Proceedings ACM SOSP 2003, Lake George, NY, USA, October 2003. 1 Assumptions Interface Architecture Single

More information

Failover Dynamics and Options with BeyondTrust 3. Methods to Configure Failover Between BeyondTrust Appliances 4

Failover Dynamics and Options with BeyondTrust 3. Methods to Configure Failover Between BeyondTrust Appliances 4 Configure Failover 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective owners. TC:1/4/2019

More information

Dell EMC ME4 Series Storage Systems. Release Notes

Dell EMC ME4 Series Storage Systems. Release Notes Dell EMC ME4 Series Storage Systems Release Notes Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

October 14, Business Intelligence Connector Guide

October 14, Business Intelligence Connector Guide October 14, 2017 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Cloud Programming on Java EE Platforms. mgr inż. Piotr Nowak

Cloud Programming on Java EE Platforms. mgr inż. Piotr Nowak Cloud Programming on Java EE Platforms mgr inż. Piotr Nowak Distributed data caching environment Hadoop Apache Ignite "2 Cache what is cache? how it is used? "3 Cache - hardware buffer temporary storage

More information