SlideShare a Scribd company logo
World®
’16
PreCon Ed:	Integration
Val	Huber,	Consulting	Engineer,	CA
D03X103LV
DEVOPS
2 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
©	2016	CA.	All	rights	reserved.	All	trademarks	referenced	herein	belong	to	their	respective	companies.
The	content	provided	in	this CA	World	2016	presentation	is	intended	for	informational	purposes	only	and	does	not	form	any	type	of	
warranty. The information	provided	by	a	CA	partner	and/or	CA	customer	has	not	been	reviewed	for	accuracy	by	CA.	
For	Informational	Purposes	Only	
Terms	of	this	Presentation
3 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Abstract
Integration	with	on-premises	and	partner	systems	is	a	key	benefit	of	API	
servers. APIs	not	only	provide	for	omni-channel	App	Economy	business,	
but	they	also	enable	partners	to	self-serve	their	own	information	(e.g.,	
account	information	such	as	addresses	and	contacts,	current	
agreements	of	record,	etc).

In	this	session,	get	hands-on	experience	
and	learn	how	to:
– Create	APIs	that	span	multiple	databases
– Process	and	create	Webhooks to	integrate	between	on-premise and	
partner	systems	– full	participation	in	the	App	Economy.
No	pre-knowledge	is	required. You	will	learn	how	to	create	an	API	
server	that	exposes	APIs	for	partners	and	mobile	Apps,	enforces	logic,	
creates	Webhooks for	partner	i integration.
Val	Huber
CA
Consulting	Engineer
4 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Agenda
WHY	APIS
WHAT’S	THE	PROBLEM
OUR	APPROACH
WHERE	ARE	WE	NOW
INTEGRATION	SCENARIOS:	DATABASE,	SYSTEMS
1
2
3
4
5
SUMMARY6
5 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
API	Servers…	Enabling	the	App	Economy
With	the	Agility to	Compete
Web
Mobile
Partners
Web	
Hooks
DBs
API	
Server
Omni	Channel	Business
Shippers,	
Suppliers
1
Integration
3
2
Logic
6 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
API	Servers	– Way	More	Than	Rest
Enterprise-class	APIs…	Not	Toys
Logic
Integration
Data
And	the	real	
work	is	here
Nested	Documents
Pagination
Optimistic	Locking
API
7 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
API	Servers…	for	the	App	Economy
Conventional	Approach	Provides…	Stubs?!!
Web
Mobile
Partners
Web	
Hooks
DBs
API	
Server
Omni	Channel	Business
Shippers,	
Suppliers
1
Integration
3
2
Logic
Raml,	Swagger
Stubs
Restify Schema	(?) Your	Code	
Goes..	Where?
8 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
API	Server	
Agility	for	the	App	Economy
Web
Mobile
Partners
Web	
Hooks
DBs
API	
Server
Omni	Channel	Business
Shippers,	
Suppliers
1
Integration
3
2
Logic
Reactive	Logic
Integration	Logic
§ Webhook Creation
§ Webhook Processing
§ SalesForce,	SAP,	…
API	Logic	- Automated
Client	Logic
§ Read/Write
§ Display
§ Mobile	App	Services
9 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Where	Are	We	Now
1. Start	LAC	3/Start.bat
2. Start	Chrome	– click	bookmark
Already	installed	(JDK,	unzip)	– to	get	started…
10 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
How
Three	ways	to	start;	stay	parallel;	iterate
Developers
Business	
Users
Existing	
Database
New
Database
Create	/
Customize	
API
Reactive
Logic	&
Security
Custom
Client
Dev
Create	DB
Server
DB
Coding
Parallelized
Development
Activities
Iterate
Bottom-Up
Top-Down
Code-First
Northwind
11 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Integration	Strategies
Both	Strategies	Make	Sense
§ Systems	Integration
– ETL:	Extract,	Transfer	and	Load
– For	External	Systems
– Key	Aspects
§ Mapping	/	Transformation
§ Transport
§ Push	(“webhook”)	vs.	Pull
§ Scope	(incremental	vs	massive)
§ Database	Integration
– Multi-Database	APIs
– For	Internal	Systems
– Key	Aspects
§ Mapping	/	Transformation
§ Performance
ü Faster
ü No	Consistency	Issues
12 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Lab	Objectives
§ Database	Integration:	Multi-Database	APIs
§ Systems	Integration:	Process	Partner	RESTful	Requests
§ Systems	Integration:	Send	Partner	RESTful	Requests
Follow	along	with	the	Instructor
13 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Database	Integration
Different	Servers
Different	Server	Types
Optimized	Cross-DB	Joins
14 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Process	Partner	RESTful	Requests
Point/click	mapping	and	
transformation
Nested	Document	Model
Activates	Underlying	Logic
15 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Reactive	Logic	(triggered	by	POST)
40X	More	Concise*
Conventional:								~500	Lines	of	Code
Live	API	Creator:			13	Rules
*	Based	on	CA’s	internal	testing	and	customer	interviews.
16 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Send	Partner	RESTful	Requests
Automatic	Object	Model
Discovery	– Code	Completion
Point/click	mapping	and	transformation
Extensibility	– Loadable	Libraries
Self-Service	Webhook Registration
§ Security	Makes	it	Safe
§ Webhook Processing
17 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Reactive	Logic
Enable	Instant	Business	Relationships
APIs	Share	Logic.		Automatically.
API	Logic
Point/Click
Automatically	Invoked	
for	all	APS
Agility:	40X	More	Concise*
Maintenance:	automatically	
ordered
*	Based	on	CA’s	internal	testing	and	customer	interviews.
18 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Managing	Your	APIs
Agility	for	the	App	Economy
Web
Mobile
Partners
Web	
Hooks
DBs
API	
Server
Omni	Channel	Business
Shippers,	
Suppliers
Gateway
§ Security	(SSO)
§ Throttling
§ Transformation
Portal
§ Discovery
§ Documentation
19 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Instant	Business
Point/Click	Webhook Creation
Instant	Webhook Publish
Resources	Automate	Mapping	
and	Transformation
Automatic	Logic	Reuse
Is	This	Agile?
Stubs	for	Enterprise	Class	APIs
Code	Business	Logic
Code	Integration	Logic
ERP	Connectivity
Live	API	Creator
APIs:	Point/Click
Logic:	Reactive	(40X)*
Integration:	DBs,	Systems
Connectivity:	SalesForce,	…
API	Servers	– Integration	for	the	App	Economy
Ideal:	Instant	Business	Relationships
*	Based	on	CA’s	internal	testing	and	customer	interviews.
20 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Recommended	Sessions
SESSION	# TITLE DATE/TIME
DO3T13TV Database	Design	Takes	an	Expert 11/17/2016	at	02:00	pm
DO3T14T Domain	Logic	Requires	Domain-Specific	Code 11/17/2016	at	03:00	pm
DO3T15TV Myth:	Low	Code	is	a	Toy 11/17/2016	at	03:45	pm
Innovation,	Empowering	Agility	for	the	App	Economy
http://www.ca.com/us/trials.html
21 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Questions?
22 ©	2016	CA.	ALL	RIGHTS	RESERVED.@CAWORLD				#CAWORLD
Thank	you.
Stay	connected	at	communities.ca.com

More Related Content

PDF
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
PDF
Pre-Con Ed: CA Live API Creator:  Build and Deploy Enterprise-class APIs With...
PDF
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
PDF
Mediating Mature Services, ESBs and APIs: Lessons Learned from Five Years of ...
PDF
Tech Talk: CA API Gateway: Deploying Docker Container Gateways
PDF
Microservices Built for Digital Consumption
PDF
Tech Talk: CA Live API Creator: Modern Integration Strategies—API Integration...
PDF
Securing your API Portfolio with API Management
Pre-Con Ed: CA Live API Creator:  Learn How to Integrate Data From Enterprise...
Pre-Con Ed: CA Live API Creator:  Build and Deploy Enterprise-class APIs With...
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
Mediating Mature Services, ESBs and APIs: Lessons Learned from Five Years of ...
Tech Talk: CA API Gateway: Deploying Docker Container Gateways
Microservices Built for Digital Consumption
Tech Talk: CA Live API Creator: Modern Integration Strategies—API Integration...
Securing your API Portfolio with API Management

What's hot (20)

PDF
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
PDF
Pre-Con Ed: CA Live API Creator: Using Data Explorer to Test APIs, Create Bac...
PPTX
Pre-Con Ed: CA API Developer Portal: Policy Writing for the Portal Using the ...
PDF
Tech Talk: CA Live API Creator MythBuster:  Domain Logic Requires Domain-spec...
PDF
Pros, Cons, Pitfalls of common Docker container architectures (#dockitecture)
PDF
Tech Talk: CA Live API Creator MythBuster: Low Code is a Toy, not Enterprise ...
PDF
Case Study: Aaramshop—Top Five Lessons Learned About Accelerating E-Commerce ...
PDF
Case Study: Al Jazeera Extends its Business and Consumer Reach With Robust, W...
PDF
Case Study: Centrica—How CA API Management Helps Britain’s Largest Energy Pro...
PPTX
Pre-Con Ed: CA API Gateway: Managing and Migrating Policies with the Gateway ...
PPTX
CA API Gateway: Web API and Application Security
PDF
Case Study: How Adobe Secures, Manages and Deploys Enterprise Mobile Apps
PDF
Pre-Con Ed (Lab): Making CA Identity Suite Deployment Incredibly Easy
PDF
CA Project & Portfolio Management: Business Intelligence
PDF
Pre-Con Ed: Leverage the Dynamic Service Modeling Functionality With CA Servi...
PDF
Tech Talk: APIs in Healthcare: How to Increase Interoperability and Security ...
PDF
Inspire Your Enterprise and Become a Digital Change Agent Through Agile Archi...
PDF
Customer Use Case: Real-World Automation in Retail
PDF
Pre-Con Ed: How to IAM-Enable Your Office 365 Environment
PDF
The Importance of Mainframe Security Education
Pre-Con Ed: CA Live API Creator: How to Create, Deploy, Secure and Scale an E...
Pre-Con Ed: CA Live API Creator: Using Data Explorer to Test APIs, Create Bac...
Pre-Con Ed: CA API Developer Portal: Policy Writing for the Portal Using the ...
Tech Talk: CA Live API Creator MythBuster:  Domain Logic Requires Domain-spec...
Pros, Cons, Pitfalls of common Docker container architectures (#dockitecture)
Tech Talk: CA Live API Creator MythBuster: Low Code is a Toy, not Enterprise ...
Case Study: Aaramshop—Top Five Lessons Learned About Accelerating E-Commerce ...
Case Study: Al Jazeera Extends its Business and Consumer Reach With Robust, W...
Case Study: Centrica—How CA API Management Helps Britain’s Largest Energy Pro...
Pre-Con Ed: CA API Gateway: Managing and Migrating Policies with the Gateway ...
CA API Gateway: Web API and Application Security
Case Study: How Adobe Secures, Manages and Deploys Enterprise Mobile Apps
Pre-Con Ed (Lab): Making CA Identity Suite Deployment Incredibly Easy
CA Project & Portfolio Management: Business Intelligence
Pre-Con Ed: Leverage the Dynamic Service Modeling Functionality With CA Servi...
Tech Talk: APIs in Healthcare: How to Increase Interoperability and Security ...
Inspire Your Enterprise and Become a Digital Change Agent Through Agile Archi...
Customer Use Case: Real-World Automation in Retail
Pre-Con Ed: How to IAM-Enable Your Office 365 Environment
The Importance of Mainframe Security Education
Ad

Viewers also liked (7)

PDF
TechTalk: Accelerate Mobile Development using SDKs and Open APIs With CA API ...
PDF
Z os connect v2 ee vs v1 - 1 page
PDF
Pre-Con Ed: CA Live API Creator:  Using JavaScript to Invoke Existing Code, L...
PDF
Tech Talk: CA Live API Creator MythBuster: Database Design Takes an Expert
PPTX
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
PDF
Critical Considerations for Mobile and IoT Strategy
PPT
Data power use cases
TechTalk: Accelerate Mobile Development using SDKs and Open APIs With CA API ...
Z os connect v2 ee vs v1 - 1 page
Pre-Con Ed: CA Live API Creator:  Using JavaScript to Invoke Existing Code, L...
Tech Talk: CA Live API Creator MythBuster: Database Design Takes an Expert
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
Critical Considerations for Mobile and IoT Strategy
Data power use cases
Ad

Similar to Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile Apps (20)

PDF
Tech Talk: CA Live API Creator: API Servers vs. App Servers
PDF
Tech Talk: CA Live API Creator: APIs and the App Economy
PDF
TechTalk: Extend Existing Architectures to Digital Endpoints with CA API Mana...
PDF
Keynote: Announcing API and Microservice Innovations that Drive Business Agil...
PDF
API integration services | Ficode Technology
PPTX
API integration services | Ficode Technology Limited
PDF
Case Study: Rogers Communications Integrates CA API Management and CA Service...
PPTX
INTERFACE, by apidays - Design for your API customers with APIOps Cycles by ...
PDF
Continuous API Strategies for Integrated Platforms
PDF
Strategies for DevOps in the API and Microservices World
PDF
Craft and Execute your Enterprise API Strategy with SAP Cloud Platform
PDF
API Integration for non-technical people_ A Guide.pdf
PDF
The Modern Tech Stack: Microservices - The Dark Side
PDF
API and App Ecosystems - Build The Best: a deep dive
PDF
WSO2 - Forrester Guest Webinar: API Management is not Enough: You Need an API...
PDF
American Family Insurance Shifts to a Mobile-First Development Strategy with ...
PDF
Explaining API Integration: How Does API Integration work?
PDF
Service Virtualization + API Management together
PDF
Pre-Con Education: Changing End Points Getting You Down While Trying to Creat...
PDF
Drupal Summit Presentation by Orchestra Team
Tech Talk: CA Live API Creator: API Servers vs. App Servers
Tech Talk: CA Live API Creator: APIs and the App Economy
TechTalk: Extend Existing Architectures to Digital Endpoints with CA API Mana...
Keynote: Announcing API and Microservice Innovations that Drive Business Agil...
API integration services | Ficode Technology
API integration services | Ficode Technology Limited
Case Study: Rogers Communications Integrates CA API Management and CA Service...
INTERFACE, by apidays - Design for your API customers with APIOps Cycles by ...
Continuous API Strategies for Integrated Platforms
Strategies for DevOps in the API and Microservices World
Craft and Execute your Enterprise API Strategy with SAP Cloud Platform
API Integration for non-technical people_ A Guide.pdf
The Modern Tech Stack: Microservices - The Dark Side
API and App Ecosystems - Build The Best: a deep dive
WSO2 - Forrester Guest Webinar: API Management is not Enough: You Need an API...
American Family Insurance Shifts to a Mobile-First Development Strategy with ...
Explaining API Integration: How Does API Integration work?
Service Virtualization + API Management together
Pre-Con Education: Changing End Points Getting You Down While Trying to Creat...
Drupal Summit Presentation by Orchestra Team

More from CA Technologies (20)

PPTX
CA Mainframe Resource Intelligence
PDF
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
PDF
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
PDF
Case Study: How The Home Depot Built Quality Into Software Development
PDF
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
PDF
Case Study: Privileged Access in a World on Time
PDF
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
PDF
Case Study: Putting Citizens at The Center of Digital Government
PDF
Making Security Work—Implementing a Transformational Security Program
PDF
Keynote: Making Security a Competitive Advantage
PDF
Emerging Managed Services Opportunities in Identity and Access Management
PDF
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
PDF
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
PDF
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
PDF
Application Experience Analytics Services: The Strategic Digital Transformati...
PDF
Application Experience Analytics Services: The Strategic Digital Transformati...
PDF
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
PDF
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
PDF
Blockchain: Strategies for Moving From Hype to Realities of Deployment
PDF
Establish Digital Trust as the Currency of Digital Enterprise
CA Mainframe Resource Intelligence
Mainframe as a Service: Sample a Buffet of IBM z/OS® Platform Excellence
Case Study: How CA Went From 40 Days to Three Days Building Crystal-Clear Tes...
Case Study: How The Home Depot Built Quality Into Software Development
Pre-Con Ed: Privileged Identity Governance: Are You Certifying Privileged Use...
Case Study: Privileged Access in a World on Time
Case Study: How SGN Used Attack Path Mapping to Control Privileged Access in ...
Case Study: Putting Citizens at The Center of Digital Government
Making Security Work—Implementing a Transformational Security Program
Keynote: Making Security a Competitive Advantage
Emerging Managed Services Opportunities in Identity and Access Management
The Unmet Demand for Premium Cloud Monitoring Services—and How Service Provid...
Leveraging Monitoring Governance: How Service Providers Can Boost Operational...
The Next Big Service Provider Opportunity—Beyond Infrastructure: Architecting...
Application Experience Analytics Services: The Strategic Digital Transformati...
Application Experience Analytics Services: The Strategic Digital Transformati...
Strategic Direction Session: Deliver Next-Gen IT Ops with CA Mainframe Operat...
Strategic Direction Session: Enhancing Data Privacy with Data-Centric Securit...
Blockchain: Strategies for Moving From Hype to Realities of Deployment
Establish Digital Trust as the Currency of Digital Enterprise

Recently uploaded (20)

PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Spectroscopy.pptx food analysis technology
PDF
Approach and Philosophy of On baking technology
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Empathic Computing: Creating Shared Understanding
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
Big Data Technologies - Introduction.pptx
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
MIND Revenue Release Quarter 2 2025 Press Release
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
Unlocking AI with Model Context Protocol (MCP)
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Spectroscopy.pptx food analysis technology
Approach and Philosophy of On baking technology
Per capita expenditure prediction using model stacking based on satellite ima...
Empathic Computing: Creating Shared Understanding
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Understanding_Digital_Forensics_Presentation.pptx
Big Data Technologies - Introduction.pptx
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
sap open course for s4hana steps from ECC to s4
Spectral efficient network and resource selection model in 5G networks
Diabetes mellitus diagnosis method based random forest with bat algorithm
Network Security Unit 5.pdf for BCA BBA.
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
MIND Revenue Release Quarter 2 2025 Press Release

Pre-Con Ed: CA Live API Creator: How to Integrate Enterprise Data for Mobile Apps