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

Size: px
Start display at page:

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

Transcription

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

2 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 to change or withdrawal by CA at any -me without no-ce. Notwithstanding anything in this presenta-on to the contrary, this presenta-on shall not serve to (i) affect the rights and/or obliga-ons of CA or its licensees under any exis-ng or future wrilen license agreement or services agreement rela-ng to any CA somware product; or (ii) amend any product documenta-on or specifica-ons for any CA somware product. The development, release and -ming of any features or func-onality described in this presenta-on remain at CA s sole discre-on. Notwithstanding anything in this presenta-on to the contrary, upon the general availability of any future CA product release referenced in this presenta-on, CA will make such release available (i) for sale to new licensees of such product; and (ii) to exis-ng 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 informa-on contained in this presenta-on, the terms of this paragraph shall govern. Certain informa-on in this presenta-on may outline CA s general product direc-on. All informa-on in this presenta-on is for your informa-onal purposes only and may not be incorporated into any contract. CA assumes no responsibility for the accuracy or completeness of the informa-on. To the extent permiled by applicable law, CA provides this presenta-on as is without warranty of any kind, including without limita-on, any implied warran-es or merchantability, fitness for a par-cular 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 limita-on, lost profits, lost investment, business interrup-on, goodwill, or lost data, even if CA is expressly advised in advance of the possibility of such damages. CA confiden-al and proprietary. No unauthorized copying or distribu-on permiled.

3 Abstract Mark Schroeder CMFirst Group 2E Architect/Senior 2E Consultant This presenta-on is about implemen-ng 2E Web Services. Examples will be given from how a real life scenario was used at Intui-on, including both posi-ves and nega-ves and recommenda-ons were created from the experience. 3 Copyright 2013 CA. All rights reserved.

4 Agenda Intro Company Overview Situa-on Solu-on Issues Encountered Recommenda-ons Wrap- up

5 Intro

6 Intro In this session, we will discuss the implementa-on of web services in a new 2E enterprise applica-on. We will look at lessons learned and how the 2E team was able to provide real -me access to live data to the web team through their web services. We will look at recommenda-ons for improvements.

7 Company Overview

8 Company Overview Intui-on The na-on s largest independent service provider with the longest standing history and commitment to the 529 Industry. We were the first company to enter this business in 1988 and the only one that has sustained a long- term commitment to it since then currently providing services for nine 529 plans and to over one million account holders. Our fundamental belief is that technology is an expression of crea-vity. Peter Angus, President

9 Company Overview 529 Solu-ons Prepaid Tui-on Collage Savings Flexible Technology must be able Adaptable. Integrate Mul-ple Systems Simple to Use Internal Company Employees Customers Plan Owners

10 The Situa-on

11 The Situa3on Owners CAP Web Applica-on States Company Fire Wall RAS Tandem Intui-on Prima IBMi Omni Prima Direct IBMi

12 CAP System CAP Web Applica-on CAP is a web application written in ASP.NET with VB and C#. ASP.NET was chosen to provide flexibility in the user interface yet provide excellent connectivity multiple systems. Web Services provide the flexibility to be able to get data more easily from multiple systems.

13 CAP System

14 CAP System

15

16 RAS Tandem Existing 529 prepaid system. At present it is running concurrently with Prima which will be replacing it. Prima is a 529 prepaid system written with 2E.

17 Prima System Prima IBMi Omni is the old 529 Prepaid system which is being replacing RAS. Prima is a 529 Saving system written with 2E.

18 Prima Direct System Omni Prima Direct IBMi Omni is the old 529 Savings system which is being replaced by Prima Direct. Prima Direct is a 529 Saving system written with 2E.

19 Solu-on

20 Solu3on Use Web Services Communicate between CAP and Other Systems From Prima and Prima Direct use 2E Web Services Types of Ac-ons Return a Record Return a List of Values Update Database on the IBMi 2E Web Services Develop a PaLern Simple to Duplicate Do not need extensive experience in Web Services

21 Web Services Approach 2E was used to create the programs that exposed business logic Lookup and return single records. Lookup and returned mul-ple records. Create and Update func-onality. 2E was used to create the Modules 2E was used to create the Service Program

22 Web Services Approach IBM Web Server Manager was used to deploy the Web Service IBM Web Server Manager was used for developer tes-ng.

23 The Program PGM The program used to manage the business logic. It could be RPG, RP4 or COBOL equivalents. By the time this program is run the library list is set up. Return Array is loaded in this function.

24 The Program This sample builds a list to return in the Web Service. Steps 1. Set Up parameters. a. WS Acct Lookup In Input b. Element is returned. c. WS Acc Lookup Out - returns a list.

25 The Program Steps 1. Clear build array. 2. Set LCL fields to blank/zero to be used in clearing the array. 3. Clear all elements of the array. 4. Load the Output Array

26 The Control Module CTL The module must be an ILE External Function. Sets up the library list and user for database updates. Return Array is populated in the PGM and passed to the CLT.

27 The Control Module This sample builds a list to return in the Web Service. Steps 1. Set Up parameters. 1. WS Acct Lookup In Input 2. Element is returned. 3. WS Acc Lookup Out - returns a list.

28 The Control Module Steps 1. Set Library List and User. 2. Clear elements of the array. 3. Call the PGM to build the array. 4. Set Return Code.

29 The Service Program SPS Create an object of type Service Program. The Service Program is the object the Web Service calls. It must point to the needed CTL program.

30 The Service Program The Service program links the module to the Web Service. Steps 1. No Parameters 2. Add module

31 Web Services Web Service IBMi Service Manager

32 Issues Encountered

33 Issues Encountered WS do not always act the way you expect. WS output arrays that contain numeric data are challenging. WS that output numeric data can be challenging. It can be difficult to keep programs, module and service program in sync. Libraries and mul-ple environments can be tricky. Debugging can be challenging since there are mul-ple layers where the issue can occur.

34 Recommenda-ons

35 Recommenda3ons Have a well defined process Have the Module call another program with business logic so you do not have to redeploy the WS all the -me Use arrays to Send and Receive Parameters Ini-alize all Output Array Lists to Zero/Blank Return code P0RTN can be cleared in exit program so you may have to use LCL.*Return Code and an exit program Determine a process to return error messages Create clear communica-on with Web team

36 Recommenda3ons Recommended 2E Updates Friendly Names for fields Control the order of the fields in the WSDL Allow a variable number of returned array elements.

37 Wrap- up

38 Thank You The Intui-on Team Marshall Goldstein Andrew Ford Mark Schroeder

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

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

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

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

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

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

Governance, Risk & Compliance. TSo Plus System Requirements. TSo Plus

Governance, Risk & Compliance. TSo Plus System Requirements. TSo Plus Governance, Risk & Compliance TSo Plus System Requirements TSo Plus 2018.1 Governance, Risk & Compliance This publica on was wri en for TSo Plus Publica on Informa on / Version Document Title: TSo Plus

More information

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

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

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 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

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

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

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

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

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

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

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

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

Financial Services. Upgrade Guide. TSoftPlus

Financial Services. Upgrade Guide. TSoftPlus Financial Services Upgrade Guide TSoftPlus 2017.3 Financial Services This publica on was wri en for TSoftPlus, Publica on Informa on / Version Document Title: TSo Plus Upgrade Guide Release Date: September

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 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

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 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

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 PMA Chargeback. Release Notes. Release

CA PMA Chargeback. Release Notes. Release CA PMA Chargeback Release Notes Release 12.6.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

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

Governance, Risk & Compliance. TSo Plus Upgrade Guide. TSo Plus

Governance, Risk & Compliance. TSo Plus Upgrade Guide. TSo Plus Governance, Risk & Compliance TSo Plus Upgrade Guide TSo Plus 2017.4 Governance, Risk & Compliance This publica on was wri en for TSo Plus Publica on Informa on / Version Document Title: TSo Plus Upgrade

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

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

CA Cloud Service Delivery Platform

CA Cloud Service Delivery Platform CA Cloud Service Delivery Platform Monitor Performance Release 1.1 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

Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation

Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation Bill Valyo CA Technologies February 7, 2013 Session #12765 Quick Abstract: About this Presentation This presentation

More information

Clarity Technical Know-How

Clarity Technical Know-How Clarity Technical Know-How Volume One Michael Hoefer VP & Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

Canvas USSD Service Center Interac ve Services for a Mobile World. Copyright 2018 Telenity Confiden al & Proprietary

Canvas USSD Service Center Interac ve Services for a Mobile World. Copyright 2018 Telenity Confiden al & Proprietary Canvas USSD Service Center Interac ve for a Mobile World Copyright 2018 Telenity Confiden al & Proprietary Canvas USSD Service Center Canvas USSD Service Center wireless operators to offer rapid and secure

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 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

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

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

CA File Master Plus for IMS

CA File Master Plus for IMS CA File Master Plus for IMS Best Practices Guide Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series CA Nimsoft Monitor Probe Guide for iseries Job Monitoring jobs v1.3 series Contact CA Contact CA Support For your convenience, CA Technologies provides one site where you can access the information that

More information

Teslights Hybrid Lighting Controls B-PLC Solution

Teslights Hybrid Lighting Controls B-PLC Solution Teslights Hybrid Lighting Controls B-PLC Solution Technical Manual, T0115 January 2015 Copyright Teslights, LLC 2014-2015 Contents Contact Informa on 2 Warning 2 Disclaimer 2 1. Overview 3 1.1 PLC Head

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

CA Workload Automation Agent for Micro Focus

CA Workload Automation Agent for Micro Focus CA Workload Automation Agent for Micro Focus Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Release Notes r12.5, Second Edition

Release Notes r12.5, Second Edition Release Notes r12.5, Second Edition Second Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is

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 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

Release Notes. Release 12.2

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

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management clariion Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com Mile Terms of Use Effective Date: February, 2018 Version 1.1 Feb 2018 [ Mile ] Overview The following are the terms of an agreement between you and MILE. By accessing, or using this Web site, you acknowledge

More information

APM Import Tool. Product Guide

APM Import Tool. Product Guide APM Import Tool Product Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is

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 Nimsoft Monitor. Probe Guide for DHCP Server Response Monitoring. dhcp_response v3.2 series

CA Nimsoft Monitor. Probe Guide for DHCP Server Response Monitoring. dhcp_response v3.2 series CA Nimsoft Monitor Probe Guide for DHCP Server Response Monitoring dhcp_response v3.2 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Release Notes r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Cloud Service Delivery Platform

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

More information

CA Desktop Migration Manager

CA Desktop Migration Manager CA Desktop Migration Manager CA DMM Release Notes 12.9 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation )

More information

CA Gen Update. Vision and Strategy. Andy Wyatt Senior Consultant - Technical Sales

CA Gen Update. Vision and Strategy. Andy Wyatt Senior Consultant - Technical Sales CA Gen Vision and Strategy 2007 Update Andy Wyatt Senior Consultant - Technical Sales Abstract > As CA Gen celebrates its 20th anniversary of delivering platform independent solutions for the enterprise,

More information

Personalizing CA Clarity PPM User Guide. Release

Personalizing CA Clarity PPM User Guide. Release Personalizing CA Clarity PPM User Guide Release 13.2.00 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 Nimsoft Monitor Snap

CA Nimsoft Monitor Snap CA Nimsoft Monitor Snap Configuration Guide for Network Connectivity Monitoring net_connect v2.9 series Legal Notices This online help system (the "System") is for your informational purposes only and

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Release Summary r12 SP1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

pvs Release Notes All series

pvs Release Notes All series pvs Release Notes All series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal by CA at any time.

More information

CA SiteMinder. Advanced Password Services Release Notes SP1

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

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 TPX Session Management

CA TPX Session Management CA TPX Session Management Release Notes Release 5.3 Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Cloud Service Delivery Platform

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

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

Test Coverage vs Liability - A Healthcare TDM

Test Coverage vs Liability - A Healthcare TDM White Paper Test Coverage vs Liability - A Healthcare TDM by Shashi Kiran KV O V E R C O M I N G L I M I T S The growing maturity of Healthcare IT and the digi za on of healthcare is improving the quality

More information

CA InterTest Batch Release Notes Release

CA InterTest Batch Release Notes Release CA InterTest Batch Release Notes Release 9.1.00 Third Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

MyCreditChain Terms of Use

MyCreditChain Terms of Use MyCreditChain Terms of Use Date: February 1, 2018 Overview The following are the terms of an agreement between you and MYCREDITCHAIN. By accessing, or using this Web site, you acknowledge that you have

More information

CA Performance Management for OpenVMS

CA Performance Management for OpenVMS CA Performance Management for OpenVMS Release Summary r3.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

CA VM:Secure for z/vm

CA VM:Secure for z/vm CA VM:Secure for z/vm Release Notes Release 3.1, Second Edition 7/20/2014 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

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

IGMP and MLD Op-miza-on for Mobile Hosts and Routers

IGMP and MLD Op-miza-on for Mobile Hosts and Routers 76 th IETF, Nov. 2009, Hiroshima, Japan IGMP and MLD Op-miza-on for Mobile Hosts and Routers dra< asaeda mul-mob igmp mld op-miza-on 01 Hitoshi Asaeda (Keio University) 1 Overview This dra< aims to describe

More information

Nimsoft Monitor. qos_processor Guide. v1.2 series

Nimsoft Monitor. qos_processor Guide. v1.2 series Nimsoft Monitor qos_processor Guide v1.2 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

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 Cloud Service Delivery Platform

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

More information

ENQ Downgrade & CA MIM Update

ENQ Downgrade & CA MIM Update ENQ Downgrade & CA MIM Update Sujay Solomon Jason Tucker CA Technologies August 7 th 2014 Session #16085 Insert Custom Session QR if Desired. www.share.org ENQ downgrade capability Initiator s use of the

More information

8) Subroutines and functions

8) Subroutines and functions 8) Subroutines and functions Functions: Internal, External, Built-in. Instructions: CALL, SIGNAL, PROCEDURE, EXPOSE, RETURN, EXIT, INTERPRET Special Variables RC, RESULT Addressing: ADDRESS, OUTTRAP. Resources:

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Enabling Email Integration 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

BrightStor ARCserve Backup for Linux

BrightStor ARCserve Backup for Linux BrightStor ARCserve Backup for Linux Agent for Apache Web Server Guide r11.5 D01212-1E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the

More information

Governance, Risk & Compliance. TSo Plus Installa on Guide. TSo Plus

Governance, Risk & Compliance. TSo Plus Installa on Guide. TSo Plus Governance, Risk & Compliance TSo Plus Installa on Guide TSo Plus 2017.4 Governance, Risk & Compliance This publica on was wri en for TSo Plus Publica on Informa on / Version Document Title: TSo Plus

More information

5) Debugging and error trapping

5) Debugging and error trapping 5) Debugging and error trapping Instructions: SIGNAL/CALL, TRACE, TSO Immediate commands HT, RT, HE, HI, TE, TS. Resources: TSO/E REXX User s Guide Chapter 9. Diagnosing Problems Within an Exec This course

More information

CA Cloud Service Delivery Platform

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

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

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

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

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Enterprise Option for StorageTek ACSLS Guide r12 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for

More information

BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist

BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist BT SIP Trunk CRF User Guide - BT Sales / Originator + Specialist The following informa on provides an overview of how to use and complete the SIP Trunk elements of the BT System CRF portal. 1. Introduc

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Release Summary r12.5 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

CA InterTest Batch. Release Notes. Release

CA InterTest Batch. Release Notes. Release CA InterTest Batch Release Notes Release 9.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

CA Client Automation. Supported Content for CA Patch Manager and Supported Application Signature Content

CA Client Automation. Supported Content for CA Patch Manager and Supported Application Signature Content CA Client Automation Supported Content for CA Patch Manager and Supported Application Signature Content April 2018 Contents CA Content Research Team... 3 CA Patch Manager Content... 3 Operating Systems

More information

CA Performance Management Data Aggregator

CA Performance Management Data Aggregator CA Performance Management Data Aggregator Basic Self-Certification Guide 2.4.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

BlackBerry Enterprise Server for IBM Lotus Domino. Compatibility Matrix. September 20, 2012

BlackBerry Enterprise Server for IBM Lotus Domino. Compatibility Matrix. September 20, 2012 BlackBerry Enterprise Server for IBM Lotus Domino Compatibility Matrix September 20, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 **Software version support life cycle

More information

electronic license applications user s guide Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10

electronic license applications user s guide Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10 applications Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10 Welcome to the Na onal Insurance Producer Registry s applications The give producers the ability to quickly

More information

Entrust WAP Server Certificate Relying Party Agreement

Entrust WAP Server Certificate Relying Party Agreement Entrust WAP Server Certificate Relying Party Agreement The WAP/WTLS specification v1.1 does not provide a means for certificate revocation checking. The following Relying Party Agreement" provides further

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 TPX Session Management

CA TPX Session Management CA TPX Session Management Release Notes Release 5.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information