Clarity Technical Know-How

Size: px
Start display at page:

Download "Clarity Technical Know-How"

Transcription

1 Clarity Technical Know-How Volume One Michael Hoefer VP & Chief Architect, Clarity PPM

2 Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by CA at any time without notice. Notwithstanding anything in this presentation to the contrary, this presentation shall not serve to (i) affect the rights and/or obligations of CA or its licensees under any existing or future written license agreement or services agreement relating to any CA software product; or (ii) amend any product documentation or specifications for any CA software product. The development, release and timing of any features or functionality described in this presentation remain at CA s sole discretion. Notwithstanding anything in this presentation to the contrary, upon the general availability of any future CA product release referenced in this presentation, CA will make such release available (i) for sale to new licensees of such product; and (ii) to existing licensees of such product on a when and if-available basis as part of CA maintenance and support, and in the form of a regularly scheduled major product release. Such releases may be made available to current licensees of such product who are current subscribers to CA maintenance and support on a when and if-available basis. In the event of a conflict between the terms of this paragraph and any other information contained in this presentation, the terms of this paragraph shall govern. 2 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

3 For Informational Purposes Only Certain information in this presentation may outline CA s general product direction. All information in this presentation is for your informational purposes only and may not be incorporated into any contract. CA assumes no responsibility for the accuracy or completeness of the information. To the extent permitted by applicable law, CA provides this document as is without warranty of any kind, including without limitation, any implied warranties or merchantability, fitness for a particular purpose, or non-infringement. In no event will CA be liable for any loss or damage, direct or indirect, from the use of this document, including, without limitation, lost profits, lost investment, business interruption, goodwill, or lost data, even if CA is expressly advised of the possibility of such damages. 3 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

4 Abstract Clarity can be a large system with many moving parts. Have you ever wondered what goes on under the hood? In NSA? Between servers in a cluster? Do you wonder what a Beacon is for and what it talks to, or why multicast is so important? How are jobs scheduled and executed? How are business processes triggered? And how does Clarity Studio manipulate the underlying database schema? Technical Know How Volume 1 is designed to explain how Clarity is built and functions, and includes a Q and A session with the Chief Architect for CA Clarity. 4 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

5 Agenda > Under The Hood > Messaging > Report Servers > LDAP and SSO > J2EE > Studio Data Model > Questions and Answers 5 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

6 Under the Hood 6October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

7 System View Beacons reside on servers, optionally on some, broadcasting their existence. Sys Admin registers and controls the Beacons. Beacons control local services, invoke commands, retrieve log files and distribute updated files. If the Beacon or a required third-party changes, manual installation is required on each node. Clarity App Server Beacon Database Server Beacon Clarity Admin Server Beacon Clarity BG Server Beacon BO Server Runtime Dependency Admin Dependency 7 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

8 Resource Usage > Traffic Load Balancer Provided: Stateless failover. Required: Session affinity. Sessions persist in database. Clarity App Clarity App Clarity App Clarity App > Caches Read-only populated from database only. Database & Storage Broadcast messages to invalidate entries only. Transactional data is not cached. Clarity BG Clarity BG Clarity BG Clarity BG 8 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

9 > Thread Usage Always pooled or singletons. Guarded usage of ThreadLocal for session management, transaction management, logging. > Database Usage Always pooled, never kept. Proxool on Tomcat, native pooling on J2EE servers. CA JDBC Drivers only. (From DataDirect.) > Network Usage Unicast to database, report server, mail server, etc. Multicast from Clarity server to server using JGroups ( 9 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

10 > Memory Usage Heap space Stylesheet and Metadata caches Session data Transient data per thread Varies with usage and number of active users Permanent space Class definitions and constants Internal JVM compiled code Varies very little with usage Stack space Any data local to methods in the call stack Varies very little with usage 10 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

11 Messaging 1October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

12 Messaging In System Administration > Not much Only for discovery of Beacon clients. The list of servers in System Admin is populated via multicast. Control of those servers is TCP unicast. 12 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

13 Messaging In Application > Cache Consistency Any time an instance in the Cache Controller changes, a message is broadcast to all App and Background servers to flush that item out of the cache. To prevent inappropriate session timeouts, a background thread runs periodically to broadcast active sessions to all application servers. User hits server A and then is sent to server B for longer than the official session timeout. If the user is sent back to server A after that, server A must believe the user has actually been active elsewhere or it will time the session out. 13 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

14 > Job Scheduling Simple: the schedulers, one per background server instance, sleep and wait for either a) A known start time for a scheduled job, or b) A broadcast message waking them up to tell them to check for something newly scheduled. Whenever a schedule awakes, it runs anything that is ready (acquiring a lock to synchronize properly). If no schedulers are running when something is scheduled (and a broadcast is sent), no problem. The schedulers catch up when they start up. 14 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

15 > Process Events More complicated: events are broadcast but also stored in persistence, with a message timeout. Message Time to Live, system administration setting. Default: 120 minutes. Important because different from schedulers, you do not want an event message to be lost if no process engines are running. Events are subscription-based. Events are actually created only if a particular process exists for a particular object (for Create events) or object instance (for update events). Broadcast messages are used to keep the process engine moving instantly, and not polling. 15 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

16 Report Servers 1October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

17 About Business Objects XI > Packaged as CA Business Intelligence (CA BI 2.1) BO XI R2 SP4 4GB DVD CA-built installer shared by all CA products (CA BI 2.0 with Business Objects XI R2 SP3 still supported) > Supporting intersection of Business Objects XI PAS and Clarity PAS Solaris, Windows, AIX, Red Hat, SuSE No HP-UX (yet) Tomcat, WebLogic, WebSphere, Oracle, MS SQL 17 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

18 CA BI Server Integration Database Server 1. User schedules a report 3 2. BG server is notified 3. Job details are read and the report is executed in Business Objects via web services 4. User clicks the report output link in Clarity and is redirected to the BO web server. BO XI Server 5 BO InfoView Server 6 4 Web Browser 2 1 Clarity BG Server Clarity App Server 5. Report is retrieved 6. User views the report 18 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

19 Security and Users in CA BI Database Server 1. User schedules a report BG server is notified. 3. Business Objects peer user created on demand with password known only to Clarity and is authenticated. 4. InfoView URL opened with authentication token. 5. Report is retrieved. BO XI Server 5 BO InfoView Server 6 4 Web Browser 2 1 Clarity BG Server Clarity App Server 6. User views the report. 19 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

20 Report Users Clarity Users > Complications Do not currently prefix or otherwise modify user names, so names can collide if using the CA BI server for other applications. abelincoln in Clarity is abelincoln in Business Objects. Trying to use your existing Business Objects server? CA BI license is unlimited. Yours may not be. > Benefits It is actually secure, down to the individual user. Actual internal user accounts created on CA BI Server 20 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

21 About Actuate > Shipped separately Has its own licensed product DVD, Actuate iserver for CA Clarity PPM. Must copy the required Actuate files in the correct location within Clarity. > Integration is the same as its always been We had a lousy hiccup in 8.1 SP1 where we changed the integration to view reports outside of Clarity and externalized security similar to CA BI. Bad idea. As of 12.0 SP1 and 8.1 SP3 it is back to normal. Viewer is embedded in Clarity, security is handled in Clarity. 21 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

22 LDAP and SSO 2October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

23 LDAP and Clarity > Why? Users should never have to remember a password specific to an application, nor keep changing it regularly to keep it secure. > Two parallel optional integrations Authentication LDAP server and mapping information is provided. Use LDAP flag in system administration is selected. User synchronization LDAP server and mapping information is provided. Run the LDAP synchronization Clarity jobs. 23 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

24 SSO and Clarity > One step better than LDAP Users should not have to re-enter the same credentials when accessing different corporate applications. > Great Green Book Configuring CA SiteMinder for Clarity PPM, in progress. Describes usage of recent enhancement to no longer require separate application instances for browser vs. non-browser clients. 24 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

25 Scheduler Client SOAP Client Web Server CA SiteMinder Browser Client > Staying Secure Clarity with Use SSO flag is completely unprotected and must be locked tight behind the SSO proxy. Fancier, custom, unofficial implementations are possible. Clarity Not hard-coded in any way to CA SiteMinder 25 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

26 J2EE 2October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

27 J2EE Integration > Packaging J2EE requires either web archives (.war) or application archives (.ear). We choose the latter. All of the code must be added to a large (~250mb+) niku.ear. Websphere has a hard time with this. > Session Management Clarity manages its own sessions. The same on Tomcat, WebLogic, WebSphere. J2EE HttpSession is not used. WebSphere memory replication is not used. WebLogic s equivalent is not used. Session identified by our sessionid cookie. Not jsessionid. 27 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

28 Clarity System Administration and J2EE > Common Misconception Properties set in System Administration are not stored in the application niku.ear. The application.ear does not need to be repackaged and deployed when properties change. The same is true for the system admin application nsa.ear. The nsa.ear does however hard code the path to the local home directory where it can read and write to the master properties file. And yes, an.ear from one environment can be deployed into a different environment. 28 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

29 Studio Data Model 2October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

30 Custom Attributes and Objects > Horizontal or Vertical Model? Horizontal: Force.com Single underlying table with multiple columns for different data types. Abstraction layer between application code and the database, including a special query language. Fast, predictable. No joins. Vertical: Clarity More traditional usage of an RDBMS, with non-traditional catch: schema is manipulated on the fly. The relational database is used as a relational database. Fast or slow, depends on your queries. 30 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

31 > Stock Tables SRM_RESOURCES, INV_PROJECTS > Extension Tables ODF_CA_RESOURCE, ODF_CA_PROJECT > Simplified with Views ODF_RESOURCE_V, ODF_PROJECT_V > Custom Objects No stock table, just ODF_CA table and views ODF_CA_APPLE, ODF_CA_ORANGE ODF_APPLE_V, ODF_ORANGE_V Rights, Pages, Views, Actions & Links 31 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

32 Questions 3October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

33 Summary Under The Hood System views and resource usage Messaging Where multicast, why multicast Report Servers CA BI server integration LDAP and SSO J2EE Staying secure Properties are not stored in the.ear Studio Data Model What is created where and why 33 October 12th, 2009 Clarity Technical Know-How Volume 1 Copyright 2009 CA

Upgrading to Clarity v12. Michael Hoefer VP and Chief Architect, Clarity PPM

Upgrading to Clarity v12. Michael Hoefer VP and Chief Architect, Clarity PPM Upgrading to Clarity v12 Michael Hoefer VP and Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and

More information

CA Workload Automation (DE) Internals and Troubleshooting. Lee Stecklov

CA Workload Automation (DE) Internals and Troubleshooting. Lee Stecklov CA Workload Automation (DE) Internals and Troubleshooting Lee Stecklov Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management. Nigel Groves

Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management. Nigel Groves Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management Nigel Groves Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA Automation Capabilities A Technical Look at Process and Runbook Automation. Tom Kouhsari and AJ Dennis

CA Automation Capabilities A Technical Look at Process and Runbook Automation. Tom Kouhsari and AJ Dennis CA Automation Capabilities A Technical Look at Process and Runbook Automation Tom Kouhsari and AJ Dennis Terms of This Presentation This presentation was based on current information and resource allocations

More information

2A The CA Plex.NET Client Generator. Rob Layzell CA Technologies

2A The CA Plex.NET Client Generator. Rob Layzell CA Technologies 2A The CA Plex.NET Client Generator Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change or withdrawal

More information

Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance. Walter Guerrero, Sr Software Engineer

Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance. Walter Guerrero, Sr Software Engineer Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance Walter Guerrero, Sr Software Engineer Terms of This Presentation This presentation was based on current information

More information

Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences

Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences August 8, 2012 - SHARE Session 11840 Mark Zelden (CSC), Mary Anne Matyaz (Base Technologies, Inc.), and

More information

Beyond Basic Scheduling. John Crespin

Beyond Basic Scheduling. John Crespin Beyond Basic Scheduling John Crespin Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by

More information

CA NSM and CA SPECTRUM Integration Demo. Roger Craig

CA NSM and CA SPECTRUM Integration Demo. Roger Craig CA NSM and CA SPECTRUM Integration Demo Roger Craig Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or

More information

1A Windows Presentation Foundation Explained. Rob Layzell CA Technologies

1A Windows Presentation Foundation Explained. Rob Layzell CA Technologies 1A Windows Presentation Foundation Explained Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change

More information

CA 2E Status and Plans

CA 2E Status and Plans CA 2E Status and Plans Terms of This Presentation This presentation was based on current information and resource allocations as of September 23, 2009 and is subject to change or withdrawal by CA at any

More information

CA Plex Status and Plans

CA Plex Status and Plans CA Plex Status and Plans Terms of This Presentation This presentation was based on current information and resource allocations as of September 23, 2009 and is subject to change or withdrawal by CA at

More information

How to Automate Common z/vm and Linux on System z Tasks Session 10049

How to Automate Common z/vm and Linux on System z Tasks Session 10049 How to Automate Common z/vm and Linux on System z Tasks Session 10049 Disclaimer >This presentation is based on current information and resource allocations as of August 17, 2007 and is subject to change

More information

Managing Database Performance Within Virtual Environments. Walter Guerrero, Sr. Software Engineer

Managing Database Performance Within Virtual Environments. Walter Guerrero, Sr. Software Engineer Managing Database Performance Within Virtual Environments Walter Guerrero, Sr. Software Engineer Terms of This Presentation This presentation was based on current information and resource allocations as

More information

Leveraging CA ehealth Performance Manager Proactive Performance Alerting. Joel Kaufman & Kathy Hickey

Leveraging CA ehealth Performance Manager Proactive Performance Alerting. Joel Kaufman & Kathy Hickey Leveraging CA ehealth Performance Manager Proactive Performance Alerting Joel Kaufman & Kathy Hickey Terms of This Presentation This presentation was based on current information and resource allocations

More information

Consuming Web Services using CA 2E and IBM Tooling

Consuming Web Services using CA 2E and IBM Tooling Consuming Web Services using CA 2E and IBM Tooling Raghunath Daita Senior Software Engineer Abstract Raghunath Daita CA Technologies, Senior Software Engineer Web Services is the buzzword in the IT industry

More information

All About Integration

All About Integration All About Integration XOG XML Open Gateway Lars Seibert, Engineering Services Architect July 2009 Terms of This Presentation This presentation was based on current information and resource allocations

More information

Global Command Center: Lights Out Datacenter. Darrin Solomon, VP Infrastructure CA

Global Command Center: Lights Out Datacenter. Darrin Solomon, VP Infrastructure CA Global Command Center: Lights Out Datacenter Darrin Solomon, VP Infrastructure Architecture @ CA Terms of This Presentation This presentation was based on current information and resource allocations as

More information

CA AutoSys Workload. Troubleshooting

CA AutoSys Workload. Troubleshooting CA AutoSys Workload Automation r11 Troubleshooting Presenters: Dan Shannon, Elizabeth Dexter Terms of This Presentation This presentation was based on current information and resource allocations as of

More information

CA Adapter. CA Adapter Installation Guide for Windows 8.0

CA Adapter. CA Adapter Installation Guide for Windows 8.0 CA Adapter CA Adapter Installation Guide for Windows 8.0 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management. Presenters: Greg Hall, Will Lauer

Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management. Presenters: Greg Hall, Will Lauer Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management Presenters: Greg Hall, Will Lauer Terms of This Presentation This presentation was based

More information

Connector for CA Unicenter Service Desk & CA Software Change Manager for Distributed Product Guide. Service Pack

Connector for CA Unicenter Service Desk & CA Software Change Manager for Distributed Product Guide. Service Pack Connector for CA Unicenter Service Desk & CA Software Change Manager for Distributed Product Guide Service Pack 02.0.1 This Documentation, which includes embedded help systems and electronically distributed

More information

CA IdentityMinder. Programming Guide for Java. r12.6.1

CA IdentityMinder. Programming Guide for Java. r12.6.1 CA IdentityMinder Programming Guide for Java r12.6.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

CA Adapter. Installation and Configuration Guide for Windows. r2.2.9

CA Adapter. Installation and Configuration Guide for Windows. r2.2.9 CA Adapter Installation and Configuration Guide for Windows r2.2.9 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

CA Agile Vision and CA Product Vision. Integration Guide

CA Agile Vision and CA Product Vision. Integration Guide CA Agile Vision and CA Product Vision Integration Guide Spring 2012 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Hyperion System 9 Financial Management release

Hyperion System 9 Financial Management release Hyperion System 9 Financial Management release 9.2.0.3 The Hyperion System 9 Financial Management release 9.2.0.3 Matrix includes support information for the following areas: Operating Systems o Server

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

CA SiteMinder. Federation Manager Guide: Legacy Federation. r12.5

CA SiteMinder. Federation Manager Guide: Legacy Federation. r12.5 CA SiteMinder Federation Manager Guide: Legacy Federation r12.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Hyperion System 9 Strategic Finance release

Hyperion System 9 Strategic Finance release Hyperion System 9 Strategic Finance release 9.2.0.3 The Hyperion System 9 Strategic Finance release 9.2.0.3.0 Matrix includes support information for the following areas: Operating Systems o Server o Client

More information

CA Agile Vision. Agile Vision Integration Guide

CA Agile Vision. Agile Vision Integration Guide CA Agile Vision Agile Vision Integration Guide Spring 2010 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational

More information

CA IT Client Manager / CA Unicenter Desktop and Server Management

CA IT Client Manager / CA Unicenter Desktop and Server Management CA GREEN BOOKS CA IT Client Manager / CA Unicenter Desktop and Server Management Object Level Security Best Practices LEGAL NOTICE This publication is based on current information and resource allocations

More information

The following table shows supported platforms for servers running CA Clarity PPM server software (application and background servers).

The following table shows supported platforms for servers running CA Clarity PPM server software (application and background servers). CA Clarity PPM Servers The following table shows supported platforms for servers running CA Clarity PPM server software (application and background servers). Oracle Solaris Microsoft Windows Hewlett Packard

More information

CA IDMS 18.0 & 18.5 for z/os and ziip

CA IDMS 18.0 & 18.5 for z/os and ziip FREQUENTLY ASKED QUESTIONS CA IDMS 18.0 & 18.5 for z/os and ziip Important October 2013 update ziip (IBM System z Integrated Information Processor) is a specialty mainframe processor designed to help free

More information

Configuring the CA Workload Automation Desktop Client R11.1. David A. Leigh Principal Consultant - Automation

Configuring the CA Workload Automation Desktop Client R11.1. David A. Leigh Principal Consultant - Automation Configuring the CA Workload Automation Desktop Client R11.1 David A. Leigh Principal Consultant - Automation Terms of This Presentation This presentation was based on current information and resource allocations

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

Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 (

Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 ( Oracle Business Intelligence Publisher Certification Information 10g Release 3 (10.1.3.4.1) E12692-06 July 2009 This document outlines the certified hardware and software configurations for Oracle Business

More information

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies March 13, 2014 Dynamic Data Center: Business Solutions on Demand Continuous Delivery Bring Your

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Shut Down and Restart Appliances Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

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

Leveraging BCPii in Automation

Leveraging BCPii in Automation Leveraging BCPii in Zachary Williams CA Technologies August 4, 2014 Session #16090 Insert Custom Session QR if Desired. Agenda BCPii Use Case Discussion Goal How do we make our jobs easier by using BCPii

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

CA Jobtrac r11 Update. John Moore

CA Jobtrac r11 Update. John Moore CA Jobtrac r11 Update John Moore Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by CA at

More information

Hyperion System 9 BI+ Analytic Services

Hyperion System 9 BI+ Analytic Services Hyperion System 9 BI+ Analytic The Hyperion System 9 BI+ Analytic release 9.3 Support Matrix includes support information for the following areas: Operating Systems o Server o Client Web / Application

More information

CA IDMS TM /DB Indexing Part 1

CA IDMS TM /DB Indexing Part 1 International Toll Free Audio Numbers International Toll Free Audio Numbers Participant Dial-In Number(s): US Dial-In #: 1-877-833-5338 Int'l/Canada Dial-In #: 1-706-679-7033 Conference Audio Conference

More information

CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS. Type: System Requirements Date: CAP13SYR1

CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS. Type: System Requirements Date: CAP13SYR1 CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS Type: System Requirements Date: 2017-12-08 CAP13SYR1 Documentation Legal Notice This Documentation, which includes embedded help systems and electronically

More information

Release Notes. Lavastorm Analytics Engine 6.1.3

Release Notes. Lavastorm Analytics Engine 6.1.3 Release Notes Lavastorm Analytics Engine 6.1.3 Lavastorm Analytics Engine 6.1.3: Release Notes Legal notice Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS

More information

CA SiteMinder Federation

CA SiteMinder Federation CA SiteMinder Federation Legacy Federation Guide 12.52 SP1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Identity Governance

CA Identity Governance CA Identity Governance Configuration Guide 12.6.02a This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

5 OAuth Essentials for API Access Control

5 OAuth Essentials for API Access Control 5 OAuth Essentials for API Access Control Introduction: How a Web Standard Enters the Enterprise OAuth s Roots in the Social Web OAuth puts the user in control of delegating access to an API. This allows

More information

SecureAware Technical Whitepaper

SecureAware Technical Whitepaper SecureAware Technical Whitepaper - requirements and specifications Applies to SecureAware version 4.x Document date: January 2015 About this document This whitepaper provides a detailed overview of the

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

GIS Deployment Guide. Introducing GIS

GIS Deployment Guide. Introducing GIS GIS Deployment Guide Introducing GIS 7/13/2018 Contents 1 Introducing GIS 1.1 About the Genesys Integration Server 1.2 GIS Architecture 1.3 System Requirements 1.4 GIS Use-Case Scenario 1.5 Licensing 1.6

More information

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

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

More information

Connector for Microsoft SharePoint Product Guide - On Premise. Version

Connector for Microsoft SharePoint Product Guide - On Premise. Version Connector for Microsoft SharePoint Product Guide - On Premise Version 03.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

CA Clarity PPM v13.x Professional Certification Exam (CAT-221) Study Guide Version 1.4

CA Clarity PPM v13.x Professional Certification Exam (CAT-221) Study Guide Version 1.4 CA Clarity PPM v13.x Professional Certification Exam (CAT-221) Version 1.4 - PROPRIETARY AND CONFIDENTIAL INFMATION - These educational materials (hereinafter referred to as the Materials ) are for the

More information

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009 Product Documentation ER/Studio Portal Installation Guide Version 1.5 Published October 8, 2009 2nd Edition Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California

More information

CA Automation Suite for Clouds Base Configuration

CA Automation Suite for Clouds Base Configuration CA Automation Suite for Clouds Base Configuration Release Notes Release 01.7 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

CA ehealth and CA SPECTRUM

CA ehealth and CA SPECTRUM CA ehealth and CA SPECTRUM Integration and User Guide (5177) ehealth r6.1 / SPECTRUM r9.0 This documentation and any related computer software help programs (hereinafter referred to as the Documentation

More information

CA Output Management Web Viewer

CA Output Management Web Viewer CA Output Management Web Viewer Installation Guide Release 12.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

DB2 Performance A Primer. Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011

DB2 Performance A Primer. Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011 DB2 Performance A Primer Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011 Agenda Performance Defined DB2 Instrumentation Sources of performance metrics DB2 Performance Disciplines System

More information

BRM Accelerator Release Notes - On Premise. Service Pack

BRM Accelerator Release Notes - On Premise. Service Pack BRM Accelerator Release Notes - On Premise Service Pack 03.0.02 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA IDMS Server. Release Notes. r17

CA IDMS Server. Release Notes. r17 CA IDMS Server Release Notes r17 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Closing the Biggest Security Hole in Web Application Delivery

Closing the Biggest Security Hole in Web Application Delivery WHITE PAPER JANUARY 2014 Closing the Biggest Security Hole in Web Application Delivery Addressing Session Hijacking with CA SiteMinder Enhanced Session Assurance with DeviceDNA Martin Yam CA Security Management

More information

CA SiteMinder Web Services Security

CA SiteMinder Web Services Security CA SiteMinder Web Services Security Policy Configuration Guide 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Connector for Microsoft SharePoint Product Guide - On Demand. Version

Connector for Microsoft SharePoint Product Guide - On Demand. Version Connector for Microsoft SharePoint Product Guide - On Demand Version 03.0.00 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as

More information

AquaLogic BPM Enterprise Configuration Guide

AquaLogic BPM Enterprise Configuration Guide AquaLogic BPM Enterprise Configuration Guide IBM WebSphere Edition Version: 6.0 2 ALBPM TOC Contents Getting Started...4 Document Scope and Audience...4 Documentation Roadmap...4 What is ALBPM Enterprise?...4

More information

Oracle WebCenter JSR-168 Container

Oracle WebCenter JSR-168 Container Oracle WebCenter JSR-168 Container Installation Guide Release 10g Release 3 (10.3) October 2008 Installation and Upgrade Guide for Oracle WebCenter JSR-168 Container, Release 10g Release 3 (10.3) Copyright

More information

Arcserve Backup for Windows. Release Summary r16

Arcserve Backup for Windows. Release Summary r16 Arcserve Backup for Windows Release Summary r16 Legal Notice This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA SiteMinder. Upgrade Guide. r12.0 SP3. Third Edition

CA SiteMinder. Upgrade Guide. r12.0 SP3. Third Edition CA SiteMinder Upgrade Guide r12.0 SP3 Third Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA SiteMinder. Federation in Your Enterprise 12.51

CA SiteMinder. Federation in Your Enterprise 12.51 CA SiteMinder Federation in Your Enterprise 12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Quick Installation Guide for Oracle Identity Management 11g Release 1 (11.1.1) E10033-01 May 2009 This guide is designed to help you quickly install the most common Oracle Identity

More information

UNIX and Linux Data Mover Guide. Arcserve Backup r17.5

UNIX and Linux Data Mover Guide. Arcserve Backup r17.5 UNIX and Linux Data Mover Guide Arcserve Backup r17.5 Legal Notices This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA SiteMinder. Federation Manager Guide: Partnership Federation. r12.5

CA SiteMinder. Federation Manager Guide: Partnership Federation. r12.5 CA SiteMinder Federation Manager Guide: Partnership Federation r12.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager CA Clarity PPM Connector for Microsoft SharePoint Product Guide v1.1.0 Second Edition This documentation and any related computer software help programs (hereinafter

More information

ER/Studio Enterprise Portal 1.1 Installation Guide

ER/Studio Enterprise Portal 1.1 Installation Guide ER/Studio Enterprise Portal 1.1 Installation Guide 2nd Edition, April 16/2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

CA Workload Automation SE and the CA WA Agents r11.3. Ellen O'Connell

CA Workload Automation SE and the CA WA Agents r11.3. Ellen O'Connell CA Workload Automation SE and the CA WA Agents r11.3 Ellen O'Connell Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

CA ehealth. Setting Up Service Availability 2.0. r6.1

CA ehealth. Setting Up Service Availability 2.0. r6.1 CA ehealth Setting Up Service Availability 2.0 r6.1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

status Emmanuel Cecchet

status Emmanuel Cecchet status Emmanuel Cecchet c-jdbc@objectweb.org JOnAS developer workshop http://www.objectweb.org - c-jdbc@objectweb.org 1-23/02/2004 Outline Overview Advanced concepts Query caching Horizontal scalability

More information

CA SiteMinder Federation Security Services

CA SiteMinder Federation Security Services CA SiteMinder Federation Security Services Federation Endpoint Deployment Guide r6.0 SP 5 Fourth Edition This documentation and any related computer software help programs (hereinafter referred to as the

More information

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Presented at What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Jacco H. Landlust Platform Architect Director Oracle Consulting

More information

Web Services in Ac-on. Mark Schroeder 2E Track

Web Services in Ac-on. Mark Schroeder 2E Track Web Services in Ac-on Mark Schroeder 2E Track FOR INFORMATION PURPOSES ONLY Terms of this presenta3on This presenta-on was based on current informa-on and resource alloca-ons as of April 2013 and is subject

More information

CA CloudMinder. SSO Partnership Federation Guide 1.51

CA CloudMinder. SSO Partnership Federation Guide 1.51 CA CloudMinder SSO Partnership Federation Guide 1.51 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

Cross Product Reporting

Cross Product Reporting Cross Product Reporting User Guide Latest Revision: November 3, 2008 iii Legal Notice This publication is based on current information and resource allocations as of its date of publication and is subject

More information

SOLUTION BRIEF CA API MANAGEMENT. Enable and Protect Your Web Applications From OWASP Top Ten With CA API Management

SOLUTION BRIEF CA API MANAGEMENT. Enable and Protect Your Web Applications From OWASP Top Ten With CA API Management SOLUTION BRIEF CA API MANAGEMENT Enable and Protect Your Web Applications From OWASP Top Ten With CA API Management 2 SOLUTION BRIEF ENABLE AND PROTECT YOUR WEB APPLICATIONS WITH CA API MANAGEMENT ca.com

More information

Identity Provider for SAP Single Sign-On and SAP Identity Management

Identity Provider for SAP Single Sign-On and SAP Identity Management Implementation Guide Document Version: 1.0 2017-05-15 PUBLIC Identity Provider for SAP Single Sign-On and SAP Identity Management Content 1....4 1.1 What is SAML 2.0.... 5 SSO with SAML 2.0.... 6 SLO with

More information

CA SiteMinder Web Access Manager. Configuring SiteMinder Single Sign On for Microsoft SharePoint 2007 Using Forms-based Authentication

CA SiteMinder Web Access Manager. Configuring SiteMinder Single Sign On for Microsoft SharePoint 2007 Using Forms-based Authentication CA SiteMinder Web Access Manager Configuring SiteMinder Single Sign On for Microsoft SharePoint 2007 Using Forms-based Authentication This documentation and any related computer software help programs

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Configuration Manager Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

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

Product Roadmap. CA Spectrum Infrastructure Manager Roadmap

Product Roadmap. CA Spectrum Infrastructure Manager Roadmap CA Spectrum Infrastructure Manager Roadmap CA Product Management July 2009 Quick Links to Roadmap Content Product Mission Product Strategy Previous Release Status Current Release Status Next Release Planned

More information

Scaling ColdFusion. Presenter Mike Collins, Sr. ColdFusion Consultant - SupportObjective

Scaling ColdFusion. Presenter Mike Collins, Sr. ColdFusion Consultant - SupportObjective Scaling ColdFusion Presenter Mike Collins, Sr. ColdFusion Consultant - SupportObjective Our Goals Today Help you develop Strategy for Scaling Improve overall server stability Giving your End-users a better

More information

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Demand Manager Release 1.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Output Management Web Viewer

CA Output Management Web Viewer CA Output Management Web Viewer User Guide Release 12.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA SiteMinder. Advanced Password Services Release Notes 12.52

CA SiteMinder. Advanced Password Services Release Notes 12.52 CA SiteMinder Advanced Password Services Release Notes 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Data Management in Application Servers. Dean Jacobs BEA Systems

Data Management in Application Servers. Dean Jacobs BEA Systems Data Management in Application Servers Dean Jacobs BEA Systems Outline Clustered Application Servers Adding Web Services Java 2 Enterprise Edition (J2EE) The Application Server platform for Java Java Servlets

More information

Oracle Transportation Management. Application Scalability Guide Release 5.5 Part No. E

Oracle Transportation Management. Application Scalability Guide Release 5.5 Part No. E Oracle Transportation Management Application Scalability Guide Release 5.5 Part No. E10856-04 February 2010 Oracle Transportation Management Application Scalability Guide, Release 5.5 Part No. E10856-04

More information

ORACLE IDENTITY MANAGER SIZING GUIDE. An Oracle White Paper March 2007

ORACLE IDENTITY MANAGER SIZING GUIDE. An Oracle White Paper March 2007 ORACLE IDENTITY MANAGER SIZING GUIDE An Oracle White Paper March 2007 Note The following is intended to provide consideration guidelines for sizing Oracle Identity Manager. It is intended for information

More information

Oracle Communications Services Gatekeeper

Oracle Communications Services Gatekeeper Oracle Communications Services Gatekeeper Security Guide Release 5.1 E36134-01 June 2013 Oracle Communications Services Gatekeeper Security Guide, Release 5.1 E36134-01 Copyright 2011, 2013, Oracle and/or

More information