SlideShare a Scribd company logo
1 of 42
© 2014 IBM Corporation
Best practices for CICS SOA
Connectivity
Ezriel Gross
Circle Software
Matthew Webster
IBM
Please Note
IBM’s statements regarding its plans, directions, and intent are subject to change
or withdrawal without notice at IBM’s sole discretion.
Information regarding potential future products is intended to outline our general
product direction and it should not be relied on in making a purchasing decision.
The information mentioned regarding potential future products is not a
commitment, promise, or legal obligation to deliver any material, code or
functionality. Information about potential future products may not be incorporated
into any contract. The development, release, and timing of any future features or
functionality described for our products remains at our sole discretion.
Performance is based on measurements and projections using standard IBM
benchmarks in a controlled environment. The actual throughput or performance
that any user will experience will vary depending upon many factors, including
considerations such as the amount of multiprogramming in the user’s job stream,
the I/O configuration, the storage configuration, and the workload processed.
Therefore, no assurance can be given that an individual user will achieve results
similar to those stated here.
2
Abstract
CICS provides a rich set of connectivity options for SOA integration
including CICS web services, JCA and CICS sockets. The best
choice will depend on your application architecture, existing
middleware environment and required transport protocols. Other
considerations include development languages, client server
coupling and whether requests are to be synchronous or
asynchronous. This session will outline the key SOA deployment
scenarios used by customers today and the best practice choice of
technology in each case. Also covered will be references to
supporting material including redbooks and articles.
This session will also cover recent enhancements to CICS web
services. Data mapping for SOAP and JSON now supports UTF-16
data types, as well as additional COBOL data clauses. Also CICS
web services definitions can now be managed through CICS
bundles and deployed as part of a cloud workload.
3
Outline
Preparing for SOA
SOA Connectivity Options
Enhancements in CICS TS 5.2 and CICS TG V9.1 open beta
4
Choice factors
Application interface
• Operations, input/output messages, message formats, message
exchange patterns and transport protocols
Client/server coupling
• Tightly or loosely coupled?
Synchronous or asynchronous invocation
• Request/reply or event-based?
Application development tools
• Depends on preference or what you already have
Security
• Does choice support your security requirements?
Transactional scope
• 2PC or not 2PC (that is not the only question!)
High availability and scalability
• Who doesn’t want high availability and scalability?
5
SOA Connectivity Options
1. Web services over SOAP
2. JCA – CICS TG or WOLA
3. CICS Web Support
4. Messaging
5. CICS sockets
6
Preparing for SOA
7
CICS essential design concepts
Pseudo-conversational programming
Communication area: COMMAREA, Channels & Containers
Program-to-program communication
8
Problems with raw data communication
Data must be accessed using its relative position
Modifications to fields require application changes
Addition of new fields affect all existing users
Data requires a separate document to describe fields
Data is not portable therefore platform dependent
9
Introduction to XML
Extensible Markup Language (XML), is owned by the World
Wide Web Consortium (W3C).
XML is an open standard protocol that provides a mechanism to
create and define a meta-language that can be used to structure
information.
XML is extensible in that there are no pre-defined tags, as in
HTML. Each set of users defines tags that have meaning to
them and their peers, such as within a business, across an
industry, or across multiple industries.
XML is used to create new Internet languages.
10
Two models of CICS SOA integration
CICS TS
Web
service
Client
CICS Program
Business
logic
B
Requester
connector
Web
services
end-point
Service Provider
D
Integration
logic
I
A
SOAP
CICS TS
Web
service
Client
CICS
Web
services
support
Integration
logic
Data
access
Business Function
DI
Business
logic
B
Requester (Service Provider)
SOAP
A
CICS Web Services
CICS Transaction Gateway
11
CICS Web Services
12
Exposing CICS application as Web service
Direct service call approach
Web Services Clients (examples):
• WebSphere BPEL process (Process Choreography)
• WebSphere Datapower
• .NET assembly
• WebSphere MQ client
• Another program in CICS (invoke Web service)
• Anything that can invoke a Web Service !
CICS TS
Web
service
Client
CICS
Web
services
support
Integration
logic
Data
access
Business Function
DI
Business
logic
B
Requester (Service Provider)
SOAP
A
CICS Web Services Considerations
Inbound and outbound
Loosely coupled
Synchronous
HTTP (and MQ)
CICS configuration required
Native & Java Pipelines
14
Standard architecture – Web services
With CICS TS V3.x a CICS application can be Web service provider or consumer
• HTTP or MQ transport
Development using CICS supplied utilities or Rational Developer for System z (RDz)
• Used to generate the data mapping
Runtime
• SOAP envelope removed by a message handler in the Web services pipeline
• COMMAREA or container built by “data mapper”
EXEC CICS INVOKE WEBSERVICE|SERVICE API for outbound support
Client
A
CICS Web support
WebSphere MQ Trigger Monitor
Pipeline
CICS or custom data mapping
CICS TS
SOAP
DB
Proxy
15
Web service resource interrelationships
16
CICS web services overview
Web services terms and concepts available in CICS TS
Web services architecture:
• Service provider
• Service requestor
• Service registry
WSDL
SOAP messages
Message handlers and pipelines
PIPELINE and WEBSERVICE resource definitions
17
Bottom up – Start with a language
structure and convert it into a form
usable as a CICS web service
Approach to web services development (1 of 2)
Top down – Start with a WSDL
document and convert it into a form
usable as a CICS web service.
Web service
requester
Web service
provider
CICS as provider CICS as requesterCICS
Bottom
up
Top
down
WSDL
Language
structures
Provider – means that
CICS is the host of the
web service which is
being invoked from
elsewhere.
Requester – means
that CICS is the user
of a web service
provided elsewhere
Approach to web services development (2 of 2)
Existing
business application
(COBOL, C, C++, PLI)
New service: WSDL
New business application
(COBOL, C, C++, PLI)
Existing service
description WSDL
Existing service
description WSDL
Existing
business application
(COBOL, C, C++, PLI)
Bottom-up Top-down Meet in the middle
Generate Generate Map
and
Generate
Rational Developer for System z
Web Services and XML development
• Offers the ability to create, view, edit and validate WSDL,
document-type definitions (DTD) and XML schemas, transforms
XML documents into text, HTML, or other XML document types.
• Integrates relational databases and XML.
• Generates COBOL adapters and CICS TS V3 WSBind and
COBOL artifacts for converting between Web Service Definition
Language.
The CICS service flow feature provides components that extend CICS
Transaction Server by providing adapters that exploit CICS interfaces
to invoke the CICS terminal-oriented transactions and COMMAREA
programs required by the web service generated from the service flow
project.
Client
SOAP/HTTP
WAS+CICS connector
CICS Web ServicesSOAP/HTTP
Security and Management for CICS Web services
DataPower
XI52
DataPower
XI52
CICS
CICSApplication
MQServer
CICS
Brdg
MQClient
COBOL/MQ
Client
SOAP/HTTP
DataPower provides Web service enablement
Using DataPower XI52
21
Summary: CICS Web Services
Web services in CICS builds on established CICS concepts and
technologies such as pseudo- conversational transactions and
program-to-program communication via COMMAREAs (or channels
and containers)
Web services introduce new concepts and technologies such as XML,
SOAP, and WSDL
Web services involve a combination of CICS resource definitions
(PIPELINE, WEBSERVICE, URIMAP)
CICS TS provides utilities for converting existing CICS applications
into web services
IBM provides other tools to help develop web services
22
CICS Transaction Gateway
23
Exposing CICS applications as Web service
Connector approach
CICS TS
Web
Service
Client
CICS Program
Business
logic
B
Other/Any
CICS
Transaction
Gateway
CICS TG
WebSphere
Application
Server Web
Service
Support
JEE Server
J
C
A
D
CICS Transaction Gateway JCA (J2EE Connector Architecture) Resource Adapter
• Different topologies and transports are supported
Development using Rational Application Developer (RAD)
• Used to generate J2C bean and records
Runtime
• ECI (External Call Interface) used for calling COMMAREA or container based programs
• J2C bean performs data conversion and formatting
•
CICS TG V7.2 supports direct .NET connectivity with ECI V2
CICS TG V8.0 provides Open Integration with any JEE Server compliant with J2EE V1.4 or higher
A
CICS TG Considerations
Inbound only
Tightly coupled
Synchronous
Private protocols
Little CICS configuration required
Java (SE & EE), C, .Net
25
J2EE Connector Architecture (JCA)
JEE Server
(e.g WebSphere Application Server)
Application
Component
(e.g EJB)
Resource Adapter
(e.g CICS ECI resource
adapter)
Enterprise Information
System (e.g CICS)
System Contracts
Container-Component
Contract
Common Client
Interface (CCI)
EIS Specific
Interface
ConnectionFactory cf =<JNDI lookup>
Connection connection =cf.getConnection();
Interaction interaction
=connection.createInteraction();
interaction.execute(<input and output data>);
interaction.close();
connection.close();
Resource adapters provided by CICS TG
 ECI (cicseci.rar)
 EPI (cicsepi.rar)
Connection
Management
Transaction
Management
Security
Management
26
CICS Transaction Gateway Topologies
Whitepaper: Integrating WebSphere Application Server and
CICS using the CICS Transaction Gateway
http://www.ibm.com/software/htp/cics/ctg/zos/
CICS
Network
HTML
WebSphere
Application Server
and CICS TG
on System z
WebSphere
Application Server
and CICS TG on a
distributed platform
WebSphere
Application Server
on a distributed
platform
CICS TG
z/OS
Topology 1
Topology 3
Topology 2
System z
Service
Consumer SOAP
27
CICS
S
Y
S
T
E
M
z
L
P
A
R
L
P
A
R
CICS
CICS
TG z/OS
L
P
A
R
L
P
A
R
CICS
CTG
CTG
WAS
WAS
WAS
CICSWAS
W
O
L
A
WOL
A
Network
JCA Topologies – CTG and WOLA
HTML
Service
Consumer
SOAP




28
MQ, HTTP, CICS sockets
29
CICS messaging support
Web
Service
Client
Other/Any
WebSphere
Application
Server Web
Service
Support
WAS
J
M
S
A
WebSphere MQ
Trigger Monitor
CICS MQ Bridge
CICS TS
DB
MQ Trigger Monitor
• Starts CICS program that reads the message queue
• Program can be MQ-aware or COMMAREA-based program
CICS MQ Bridge
• Transfers the message to the unchanged CICS business logic.
• Transfers the output message to the Reply_To_Queue
Inbound and outbound
Medium coupling
Asynchronous, with almost-synchronous capabilities
Assured delivery
HTTP / Atom / REST
Inbound and outbound
Medium coupling
Synchronous
Medium QoS
31
CICS Sockets
Inbound and outbound
Very tight coupling
Synchronous
Limited QoS
Use only when remote client/server only supports TCP/IP sockets
communication.
32
Enhancements in CICS TS 5.2 and
CICS TG V9.1 open beta
33
New in CICS TS V5.2
Easier Interaction with Mobile Devices & Gateways
• Integration of CICS TS Feature Pack for Mobile Extensions
JAX-WS and JAXB support in Liberty profile
COBOL Data mapping enhancements
• Arrays of characters are mapped as Strings
• OCCURS DEPENDING ON and OCCURS INDEXED BY
supported in COBOL
CICS Explorer and cloud support for web services
• WEBSERVICE definition
• PIPELINE configuration
34
Easier Interaction with Mobile Devices & Gateways
JSON RESTful web service scenarios
JSON request/response web service scenarios
• Web services assistant programs
• Linkable interface
– Equivalent to EXEC CICS XMLTRANSFORM allows application
programs to process JSON data
Support for Liberty profile JAX-RS and JSON features
35
New in CICS TG V9.1 open beta
Mobile support
• JSON web services
IPIC enhancements
• heartbeat exploitation
• connections managed independently of Gateway lifecycle
Security enhancements
• compliance with NIST SP800-131A
• SSL for .NET applications
36
37
CICS TG for z/OS V9.1 open beta - JSON Web
Services
Technology aligned with
z/OS Connect
Summary
Preparing for SOA
SOA Connectivity Options
Enhancements in CICS TS 5.2 and CICS TG V9.1 open beta
38
More Information
Redbook/Whitepaper Title Publication N° Last Update
Architecting Access to CICS within an SOA SG24-5466-06 March 2012
Options for Integrating CICS applications in an SOA
WSW11339-USEN-00 Sept 2007
Implementing CICS Web Services SG24-7657-00 Nov 2008
Application Development for CICS Web Services SG24-7126-00 May 2006
Securing Access to CICS Within an SOA SG24-5756-01 Dec 2006
Securing CICS Web Services SG24-7658-00 Dec 2008
WebSphere for z/OS to CICS and IMS Connectivity Performance REDP-3959-00 May 2006
CICS Web Services Performance SG24-7687-00 2009
Deploying CICS Web services to preserve IT investments in the Banking Industry WSW14002-USEN-00 Dec 2007
Integrating WebSphere Application Server and CICS using the CTG WSW14013-USEN-00 March 2008
CICS Transaction Gateway for z/OS V6.1 SG24-7161-00 May 2006
Developing Connector Applications for CICS SG24-7714-00 Arpil 2009
Increase the value of CICS applications with WebSphere MQ WSW14006-USEN-01 Feb 2008
WebSphere MQ for z/OS Highly Available System Design SupportPac MD17 Jan 2006
Questions?
We Value Your Feedback
Don’t forget to submit your Impact session and speaker
feedback! Your feedback is very important to us – we use it to
continually improve the conference.
Use the Conference Mobile App or the online Agenda Builder to
quickly submit your survey
• Navigate to “Surveys” to see a view of surveys for sessions
you’ve attended
41
Legal Disclaimer
• © IBM Corporation 2014. All Rights Reserved.
• The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained
in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are
subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing
contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and
conditions of the applicable license agreement governing the use of IBM software.
• References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or
capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to
future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you
will result in any specific sales, revenue growth or other results.
• If the text contains performance statistics or references to benchmarks, insert the following language; otherwise delete:
Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will
experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage
configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here.
• If the text includes any customer examples, please confirm we have prior written approval from such customer and insert the following language; otherwise delete:
All customer examples described are presented as illustrations of how those customers have used IBM products and the results they may have achieved. Actual environmental costs
and performance characteristics may vary by customer.
• Please review text for proper trademark attribution of IBM products. At first use, each product name must be the full name and include appropriate trademark symbols (e.g., IBM
Lotus® Sametime® Unyte™). Subsequent references can drop “IBM” but should include the proper branding (e.g., Lotus Sametime Gateway, or WebSphere Application Server).
Please refer to http://www.ibm.com/legal/copytrade.shtml for guidance on which trademarks require the ® or ™ symbol. Do not use abbreviations for IBM product names in your
presentation. All product names must be used as adjectives rather than nouns. Please list all of the trademarks that you use in your presentation as follows; delete any not included in
your presentation. IBM, the IBM logo, Lotus, Lotus Notes, Notes, Domino, Quickr, Sametime, WebSphere, UC2, PartnerWorld and Lotusphere are trademarks of International
Business Machines Corporation in the United States, other countries, or both. Unyte is a trademark of WebDialogs, Inc., in the United States, other countries, or both.
• If you reference Adobe® in the text, please mark the first use and include the following; otherwise delete:
Adobe, the Adobe logo, PostScript, and the PostScript logo are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States, and/or other countries.
• If you reference Java™ in the text, please mark the first use and include the following; otherwise delete:
Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.
• If you reference Microsoft® and/or Windows® in the text, please mark the first use and include the following, as applicable; otherwise delete:
Microsoft and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both.
• If you reference Intel® and/or any of the following Intel products in the text, please mark the first use and include those that you use as follows; otherwise delete:
Intel, Intel Centrino, Celeron, Intel Xeon, Intel SpeedStep, Itanium, and Pentium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and
other countries.
• If you reference UNIX® in the text, please mark the first use and include the following; otherwise delete:
UNIX is a registered trademark of The Open Group in the United States and other countries.
• If you reference Linux® in your presentation, please mark the first use and include the following; otherwise delete:
Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Other company, product, or service names may be trademarks or service marks of
others.
• If the text/graphics include screenshots, no actual IBM employee names may be used (even your own), if your screenshots include fictitious company names (e.g., Renovations, Zeta
Bank, Acme) please update and insert the following; otherwise delete: All references to [insert fictitious company name] refer to a fictitious company and are used for illustration
purposes only.
42

More Related Content

What's hot

Cloud computing by Luqman
Cloud computing by LuqmanCloud computing by Luqman
Cloud computing by LuqmanLuqman Shareef
 
Building Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using MicrosoftBuilding Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using Microsoftwebhostingguy
 
Cics Web 2.0 With Atom Feeds And Php
Cics Web 2.0 With Atom Feeds And PhpCics Web 2.0 With Atom Feeds And Php
Cics Web 2.0 With Atom Feeds And PhpCICS ROADSHOW
 
S111 cics connectivity in devops
S111   cics connectivity in devopsS111   cics connectivity in devops
S111 cics connectivity in devopsnick_garrod
 
Service Oriented Architecture & Beyond
Service Oriented Architecture & BeyondService Oriented Architecture & Beyond
Service Oriented Architecture & BeyondImesh Gunaratne
 
Introduction to BizTalk Server 2010
Introduction to BizTalk Server 2010Introduction to BizTalk Server 2010
Introduction to BizTalk Server 2010Sandro Pereira
 
SOA - From Webservices to APIs
SOA - From Webservices to APIsSOA - From Webservices to APIs
SOA - From Webservices to APIsHolger Reinhardt
 
Biztalk Server 2010: Introdução
Biztalk Server 2010: IntroduçãoBiztalk Server 2010: Introdução
Biztalk Server 2010: IntroduçãoComunidade NetPonto
 
Service-Oriented Architecture (SOA)
Service-Oriented Architecture (SOA)Service-Oriented Architecture (SOA)
Service-Oriented Architecture (SOA)WSO2
 
Service Oriented Architecture
Service Oriented ArchitectureService Oriented Architecture
Service Oriented ArchitectureLuqman Shareef
 
Service oriented architecture
Service oriented architectureService oriented architecture
Service oriented architectureAmit Ranjan
 
Secc tutorials development and deployment of rest web services in java_v2.0
Secc tutorials development and deployment of rest web services in java_v2.0Secc tutorials development and deployment of rest web services in java_v2.0
Secc tutorials development and deployment of rest web services in java_v2.0Aravindharamanan S
 
Cutting Cost with BizTalk Server
Cutting Cost with BizTalk ServerCutting Cost with BizTalk Server
Cutting Cost with BizTalk ServerSudhir Hasbe
 
Service Oriented Architecture
Service Oriented Architecture Service Oriented Architecture
Service Oriented Architecture Prabhat gangwar
 
Web services and SOA
Web services and SOAWeb services and SOA
Web services and SOASubin Sugunan
 

What's hot (20)

Cloud computing by Luqman
Cloud computing by LuqmanCloud computing by Luqman
Cloud computing by Luqman
 
Building Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using MicrosoftBuilding Enterprise Interoperability Applications Using Microsoft
Building Enterprise Interoperability Applications Using Microsoft
 
Web services
Web servicesWeb services
Web services
 
Web final
Web finalWeb final
Web final
 
Cics Web 2.0 With Atom Feeds And Php
Cics Web 2.0 With Atom Feeds And PhpCics Web 2.0 With Atom Feeds And Php
Cics Web 2.0 With Atom Feeds And Php
 
S111 cics connectivity in devops
S111   cics connectivity in devopsS111   cics connectivity in devops
S111 cics connectivity in devops
 
Service Oriented Architecture & Beyond
Service Oriented Architecture & BeyondService Oriented Architecture & Beyond
Service Oriented Architecture & Beyond
 
Introduction to BizTalk Server 2010
Introduction to BizTalk Server 2010Introduction to BizTalk Server 2010
Introduction to BizTalk Server 2010
 
SOA - From Webservices to APIs
SOA - From Webservices to APIsSOA - From Webservices to APIs
SOA - From Webservices to APIs
 
Biztalk Server 2010: Introdução
Biztalk Server 2010: IntroduçãoBiztalk Server 2010: Introdução
Biztalk Server 2010: Introdução
 
Service-Oriented Architecture (SOA)
Service-Oriented Architecture (SOA)Service-Oriented Architecture (SOA)
Service-Oriented Architecture (SOA)
 
Service Oriented Architecture
Service Oriented ArchitectureService Oriented Architecture
Service Oriented Architecture
 
Service oriented architecture
Service oriented architectureService oriented architecture
Service oriented architecture
 
Web services
Web servicesWeb services
Web services
 
Secc tutorials development and deployment of rest web services in java_v2.0
Secc tutorials development and deployment of rest web services in java_v2.0Secc tutorials development and deployment of rest web services in java_v2.0
Secc tutorials development and deployment of rest web services in java_v2.0
 
Web services
Web servicesWeb services
Web services
 
Cutting Cost with BizTalk Server
Cutting Cost with BizTalk ServerCutting Cost with BizTalk Server
Cutting Cost with BizTalk Server
 
Service Oriented Architecture
Service Oriented Architecture Service Oriented Architecture
Service Oriented Architecture
 
Concept of SOA
Concept of SOAConcept of SOA
Concept of SOA
 
Web services and SOA
Web services and SOAWeb services and SOA
Web services and SOA
 

Viewers also liked

InterConnect session 2819 1_billion_smart Phones
InterConnect session 2819  1_billion_smart PhonesInterConnect session 2819  1_billion_smart Phones
InterConnect session 2819 1_billion_smart Phonesnick_garrod
 
SHARE 2014, Pittsburgh Using policies to manage critical cics resources
SHARE 2014, Pittsburgh Using policies to manage critical cics resourcesSHARE 2014, Pittsburgh Using policies to manage critical cics resources
SHARE 2014, Pittsburgh Using policies to manage critical cics resourcesnick_garrod
 
S104 twist and cloud
S104 twist and cloudS104 twist and cloud
S104 twist and cloudnick_garrod
 
Фантастические композиции С. Дали. К 110-летию испанского живописца Сальвад...
Фантастические композиции С. Дали. К 110-летию  испанского живописца Сальвад...Фантастические композиции С. Дали. К 110-летию  испанского живописца Сальвад...
Фантастические композиции С. Дали. К 110-летию испанского живописца Сальвад...Biblioteka-22
 
Facebook - The Social Network
Facebook - The Social NetworkFacebook - The Social Network
Facebook - The Social Networkgeersb
 
Session 4708 - Omegamon for CICS customer experience at Garanti Technology
Session 4708 - Omegamon for CICS customer experience at Garanti TechnologySession 4708 - Omegamon for CICS customer experience at Garanti Technology
Session 4708 - Omegamon for CICS customer experience at Garanti Technologynick_garrod
 
SHARE 2014 Pittsburgh, Modernizing cics for cloud
SHARE 2014 Pittsburgh, Modernizing cics for cloudSHARE 2014 Pittsburgh, Modernizing cics for cloud
SHARE 2014 Pittsburgh, Modernizing cics for cloudnick_garrod
 
IBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts wsIBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts wsnick_garrod
 
4236 What Skills Issue? From the perspective of a Generation z CICS customer
4236   What Skills Issue? From the perspective of a Generation z CICS customer4236   What Skills Issue? From the perspective of a Generation z CICS customer
4236 What Skills Issue? From the perspective of a Generation z CICS customernick_garrod
 
Scala.js - yet another what..?
Scala.js - yet another what..?Scala.js - yet another what..?
Scala.js - yet another what..?Artur Skowroński
 
SHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd NetworkingSHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd Networkingnick_garrod
 
SHARE 2014, Pittsburgh CICS and Liberty applications
SHARE 2014, Pittsburgh CICS and Liberty applicationsSHARE 2014, Pittsburgh CICS and Liberty applications
SHARE 2014, Pittsburgh CICS and Liberty applicationsnick_garrod
 

Viewers also liked (18)

InterConnect session 2819 1_billion_smart Phones
InterConnect session 2819  1_billion_smart PhonesInterConnect session 2819  1_billion_smart Phones
InterConnect session 2819 1_billion_smart Phones
 
SHARE 2014, Pittsburgh Using policies to manage critical cics resources
SHARE 2014, Pittsburgh Using policies to manage critical cics resourcesSHARE 2014, Pittsburgh Using policies to manage critical cics resources
SHARE 2014, Pittsburgh Using policies to manage critical cics resources
 
Hbcl4203
Hbcl4203Hbcl4203
Hbcl4203
 
S104 twist and cloud
S104 twist and cloudS104 twist and cloud
S104 twist and cloud
 
Фантастические композиции С. Дали. К 110-летию испанского живописца Сальвад...
Фантастические композиции С. Дали. К 110-летию  испанского живописца Сальвад...Фантастические композиции С. Дали. К 110-летию  испанского живописца Сальвад...
Фантастические композиции С. Дали. К 110-летию испанского живописца Сальвад...
 
Facebook - The Social Network
Facebook - The Social NetworkFacebook - The Social Network
Facebook - The Social Network
 
Session 4708 - Omegamon for CICS customer experience at Garanti Technology
Session 4708 - Omegamon for CICS customer experience at Garanti TechnologySession 4708 - Omegamon for CICS customer experience at Garanti Technology
Session 4708 - Omegamon for CICS customer experience at Garanti Technology
 
SHARE 2014 Pittsburgh, Modernizing cics for cloud
SHARE 2014 Pittsburgh, Modernizing cics for cloudSHARE 2014 Pittsburgh, Modernizing cics for cloud
SHARE 2014 Pittsburgh, Modernizing cics for cloud
 
看图写话
看图写话看图写话
看图写话
 
IBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts wsIBM Impact session Ed addison nuts and bolts ws
IBM Impact session Ed addison nuts and bolts ws
 
4236 What Skills Issue? From the perspective of a Generation z CICS customer
4236   What Skills Issue? From the perspective of a Generation z CICS customer4236   What Skills Issue? From the perspective of a Generation z CICS customer
4236 What Skills Issue? From the perspective of a Generation z CICS customer
 
Scala.js - yet another what..?
Scala.js - yet another what..?Scala.js - yet another what..?
Scala.js - yet another what..?
 
SHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd NetworkingSHARE 2014, Pittsburgh CICS Connectivity amd Networking
SHARE 2014, Pittsburgh CICS Connectivity amd Networking
 
SHARE 2014, Pittsburgh CICS and Liberty applications
SHARE 2014, Pittsburgh CICS and Liberty applicationsSHARE 2014, Pittsburgh CICS and Liberty applications
SHARE 2014, Pittsburgh CICS and Liberty applications
 
2829 liberty
2829 liberty2829 liberty
2829 liberty
 
Naturales.
Naturales.Naturales.
Naturales.
 
Tarea d4e ingles
Tarea d4e inglesTarea d4e ingles
Tarea d4e ingles
 
Oumh1303 (1)
Oumh1303 (1)Oumh1303 (1)
Oumh1303 (1)
 

Similar to Impact 2014 Best practices for_cics_soa_co

Powering the digital economy with CICS and z/OS connect - at the "z Systems...
Powering the digital economy with CICS and z/OS connect  -  at the "z Systems...Powering the digital economy with CICS and z/OS connect  -  at the "z Systems...
Powering the digital economy with CICS and z/OS connect - at the "z Systems...DevOps for Enterprise Systems
 
IBM Impact session 2416-CICS cloud-business-value
IBM Impact session 2416-CICS cloud-business-valueIBM Impact session 2416-CICS cloud-business-value
IBM Impact session 2416-CICS cloud-business-valuenick_garrod
 
1961 no rainclouds here! using cics platform and policies to keep your privat...
1961 no rainclouds here! using cics platform and policies to keep your privat...1961 no rainclouds here! using cics platform and policies to keep your privat...
1961 no rainclouds here! using cics platform and policies to keep your privat...Matthew Webster
 
Enable rapid service provisioning with cics, microservices and the z/OS Provi...
Enable rapid service provisioning with cics, microservices and the z/OS Provi...Enable rapid service provisioning with cics, microservices and the z/OS Provi...
Enable rapid service provisioning with cics, microservices and the z/OS Provi...Matthew Webster
 
3298 microservices and how they relate to esb api and messaging - inter con...
3298   microservices and how they relate to esb api and messaging - inter con...3298   microservices and how they relate to esb api and messaging - inter con...
3298 microservices and how they relate to esb api and messaging - inter con...Kim Clark
 
Migrating SOA
Migrating SOAMigrating SOA
Migrating SOACoi Xay
 
Cs 1023 lec 14 webservice (week 4)
Cs 1023 lec 14 webservice (week 4)Cs 1023 lec 14 webservice (week 4)
Cs 1023 lec 14 webservice (week 4)stanbridge
 
Share seattle cics cloud
Share seattle cics cloudShare seattle cics cloud
Share seattle cics cloudnick_garrod
 
Cics Ts 4.1 Technical Overview
Cics Ts 4.1 Technical OverviewCics Ts 4.1 Technical Overview
Cics Ts 4.1 Technical OverviewCICS ROADSHOW
 
Web Services Foundation Technologies
Web Services Foundation TechnologiesWeb Services Foundation Technologies
Web Services Foundation TechnologiesPankaj Saharan
 
IBM Impact Session 2351 hybrid apps
IBM Impact Session 2351 hybrid appsIBM Impact Session 2351 hybrid apps
IBM Impact Session 2351 hybrid appsnick_garrod
 
Java Web Services [1/5]: Introduction to Web Services
Java Web Services [1/5]: Introduction to Web ServicesJava Web Services [1/5]: Introduction to Web Services
Java Web Services [1/5]: Introduction to Web ServicesIMC Institute
 
Cisco’s Cloud Ready Infrastructure
Cisco’s Cloud Ready InfrastructureCisco’s Cloud Ready Infrastructure
Cisco’s Cloud Ready InfrastructureCisco Canada
 
CICS TS V4 and V5 recap, and the new V5.3 open beta
CICS TS V4 and V5 recap, and the new V5.3 open betaCICS TS V4 and V5 recap, and the new V5.3 open beta
CICS TS V4 and V5 recap, and the new V5.3 open betaMark Cocker
 
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)nick_garrod
 
Integration with dynamics ax 2012
Integration with dynamics ax 2012Integration with dynamics ax 2012
Integration with dynamics ax 2012Ali Raza Zaidi
 
INF3703 - Chapter 17 Database Connectivity Web Technologies
INF3703 - Chapter 17 Database Connectivity Web TechnologiesINF3703 - Chapter 17 Database Connectivity Web Technologies
INF3703 - Chapter 17 Database Connectivity Web Technologiesbloeyyy
 
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?nick_garrod
 

Similar to Impact 2014 Best practices for_cics_soa_co (20)

Cics Connectivity
Cics ConnectivityCics Connectivity
Cics Connectivity
 
Powering the digital economy with CICS and z/OS connect - at the "z Systems...
Powering the digital economy with CICS and z/OS connect  -  at the "z Systems...Powering the digital economy with CICS and z/OS connect  -  at the "z Systems...
Powering the digital economy with CICS and z/OS connect - at the "z Systems...
 
IBM Impact session 2416-CICS cloud-business-value
IBM Impact session 2416-CICS cloud-business-valueIBM Impact session 2416-CICS cloud-business-value
IBM Impact session 2416-CICS cloud-business-value
 
1961 no rainclouds here! using cics platform and policies to keep your privat...
1961 no rainclouds here! using cics platform and policies to keep your privat...1961 no rainclouds here! using cics platform and policies to keep your privat...
1961 no rainclouds here! using cics platform and policies to keep your privat...
 
Enable rapid service provisioning with cics, microservices and the z/OS Provi...
Enable rapid service provisioning with cics, microservices and the z/OS Provi...Enable rapid service provisioning with cics, microservices and the z/OS Provi...
Enable rapid service provisioning with cics, microservices and the z/OS Provi...
 
3298 microservices and how they relate to esb api and messaging - inter con...
3298   microservices and how they relate to esb api and messaging - inter con...3298   microservices and how they relate to esb api and messaging - inter con...
3298 microservices and how they relate to esb api and messaging - inter con...
 
sMash_for_zOS-users
sMash_for_zOS-userssMash_for_zOS-users
sMash_for_zOS-users
 
Migrating SOA
Migrating SOAMigrating SOA
Migrating SOA
 
Cs 1023 lec 14 webservice (week 4)
Cs 1023 lec 14 webservice (week 4)Cs 1023 lec 14 webservice (week 4)
Cs 1023 lec 14 webservice (week 4)
 
Share seattle cics cloud
Share seattle cics cloudShare seattle cics cloud
Share seattle cics cloud
 
Cics Ts 4.1 Technical Overview
Cics Ts 4.1 Technical OverviewCics Ts 4.1 Technical Overview
Cics Ts 4.1 Technical Overview
 
Web Services Foundation Technologies
Web Services Foundation TechnologiesWeb Services Foundation Technologies
Web Services Foundation Technologies
 
IBM Impact Session 2351 hybrid apps
IBM Impact Session 2351 hybrid appsIBM Impact Session 2351 hybrid apps
IBM Impact Session 2351 hybrid apps
 
Java Web Services [1/5]: Introduction to Web Services
Java Web Services [1/5]: Introduction to Web ServicesJava Web Services [1/5]: Introduction to Web Services
Java Web Services [1/5]: Introduction to Web Services
 
Cisco’s Cloud Ready Infrastructure
Cisco’s Cloud Ready InfrastructureCisco’s Cloud Ready Infrastructure
Cisco’s Cloud Ready Infrastructure
 
CICS TS V4 and V5 recap, and the new V5.3 open beta
CICS TS V4 and V5 recap, and the new V5.3 open betaCICS TS V4 and V5 recap, and the new V5.3 open beta
CICS TS V4 and V5 recap, and the new V5.3 open beta
 
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
Cics ts v4 and v5 recap, and the new cics ts v5.3 open beta (1)
 
Integration with dynamics ax 2012
Integration with dynamics ax 2012Integration with dynamics ax 2012
Integration with dynamics ax 2012
 
INF3703 - Chapter 17 Database Connectivity Web Technologies
INF3703 - Chapter 17 Database Connectivity Web TechnologiesINF3703 - Chapter 17 Database Connectivity Web Technologies
INF3703 - Chapter 17 Database Connectivity Web Technologies
 
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
S108 - 1 Billion Smartphones a year and counting – How is your CICS connected?
 

More from nick_garrod

2844 inter connect cics policy (2844)
2844  inter connect cics policy (2844)2844  inter connect cics policy (2844)
2844 inter connect cics policy (2844)nick_garrod
 
Enhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilitiesEnhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilitiesnick_garrod
 
Api management customer
Api management customerApi management customer
Api management customernick_garrod
 
Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)nick_garrod
 
S110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraterniteS110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraternitenick_garrod
 
S107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloudS107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloudnick_garrod
 
S106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cicsS106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cicsnick_garrod
 
S105 performance
S105 performanceS105 performance
S105 performancenick_garrod
 
S103 cics cloud and dev ops agility
S103 cics cloud and dev ops agilityS103 cics cloud and dev ops agility
S103 cics cloud and dev ops agilitynick_garrod
 
S102 cics the future is closer abridged
S102 cics the future is closer abridgedS102 cics the future is closer abridged
S102 cics the future is closer abridgednick_garrod
 
S101 cics what's in it for you
S101   cics what's in it for you S101   cics what's in it for you
S101 cics what's in it for you nick_garrod
 
Share seattle liberty
Share seattle libertyShare seattle liberty
Share seattle libertynick_garrod
 
Share seattle health_center
Share seattle health_centerShare seattle health_center
Share seattle health_centernick_garrod
 
SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS
SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICSSHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS
SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICSnick_garrod
 
SHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overviewSHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overviewnick_garrod
 
Share cics policy (2844)
Share cics policy (2844)Share cics policy (2844)
Share cics policy (2844)nick_garrod
 
Share multi versioning scenarios
Share  multi versioning scenariosShare  multi versioning scenarios
Share multi versioning scenariosnick_garrod
 
16370 cics project opening and project update f
16370  cics project opening and project update f16370  cics project opening and project update f
16370 cics project opening and project update fnick_garrod
 
z Technical Summit Track 3 Session 4 Developing mobilefirst app for z
z Technical Summit Track 3 Session 4 Developing mobilefirst app for zz Technical Summit Track 3 Session 4 Developing mobilefirst app for z
z Technical Summit Track 3 Session 4 Developing mobilefirst app for znick_garrod
 

More from nick_garrod (20)

2844 inter connect cics policy (2844)
2844  inter connect cics policy (2844)2844  inter connect cics policy (2844)
2844 inter connect cics policy (2844)
 
Enhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilitiesEnhanced cics cloud enablement and dev ops capabilities
Enhanced cics cloud enablement and dev ops capabilities
 
Api management customer
Api management customerApi management customer
Api management customer
 
Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)Anz cics ts v5 technical update seminar intro (half day event)
Anz cics ts v5 technical update seminar intro (half day event)
 
S110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraterniteS110 gse - liberte egalite fraternite
S110 gse - liberte egalite fraternite
 
S109 cics-java
S109 cics-javaS109 cics-java
S109 cics-java
 
S107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloudS107 5 compelling reasons for using cics in the cloud
S107 5 compelling reasons for using cics in the cloud
 
S106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cicsS106 using ibm urban code deploy to deliver your apps to cics
S106 using ibm urban code deploy to deliver your apps to cics
 
S105 performance
S105 performanceS105 performance
S105 performance
 
S103 cics cloud and dev ops agility
S103 cics cloud and dev ops agilityS103 cics cloud and dev ops agility
S103 cics cloud and dev ops agility
 
S102 cics the future is closer abridged
S102 cics the future is closer abridgedS102 cics the future is closer abridged
S102 cics the future is closer abridged
 
S101 cics what's in it for you
S101   cics what's in it for you S101   cics what's in it for you
S101 cics what's in it for you
 
Share seattle liberty
Share seattle libertyShare seattle liberty
Share seattle liberty
 
Share seattle health_center
Share seattle health_centerShare seattle health_center
Share seattle health_center
 
SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS
SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICSSHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS
SHARE Seattle 2015 Taming the Beast – Best Practices for zFS with CICS
 
SHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overviewSHARE 2015 SeattleShare cics ts 52 technical overview
SHARE 2015 SeattleShare cics ts 52 technical overview
 
Share cics policy (2844)
Share cics policy (2844)Share cics policy (2844)
Share cics policy (2844)
 
Share multi versioning scenarios
Share  multi versioning scenariosShare  multi versioning scenarios
Share multi versioning scenarios
 
16370 cics project opening and project update f
16370  cics project opening and project update f16370  cics project opening and project update f
16370 cics project opening and project update f
 
z Technical Summit Track 3 Session 4 Developing mobilefirst app for z
z Technical Summit Track 3 Session 4 Developing mobilefirst app for zz Technical Summit Track 3 Session 4 Developing mobilefirst app for z
z Technical Summit Track 3 Session 4 Developing mobilefirst app for z
 

Recently uploaded

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

Impact 2014 Best practices for_cics_soa_co

  • 1. © 2014 IBM Corporation Best practices for CICS SOA Connectivity Ezriel Gross Circle Software Matthew Webster IBM
  • 2. Please Note IBM’s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM’s sole discretion. Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing decision. The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to deliver any material, code or functionality. Information about potential future products may not be incorporated into any contract. The development, release, and timing of any future features or functionality described for our products remains at our sole discretion. Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user’s job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here. 2
  • 3. Abstract CICS provides a rich set of connectivity options for SOA integration including CICS web services, JCA and CICS sockets. The best choice will depend on your application architecture, existing middleware environment and required transport protocols. Other considerations include development languages, client server coupling and whether requests are to be synchronous or asynchronous. This session will outline the key SOA deployment scenarios used by customers today and the best practice choice of technology in each case. Also covered will be references to supporting material including redbooks and articles. This session will also cover recent enhancements to CICS web services. Data mapping for SOAP and JSON now supports UTF-16 data types, as well as additional COBOL data clauses. Also CICS web services definitions can now be managed through CICS bundles and deployed as part of a cloud workload. 3
  • 4. Outline Preparing for SOA SOA Connectivity Options Enhancements in CICS TS 5.2 and CICS TG V9.1 open beta 4
  • 5. Choice factors Application interface • Operations, input/output messages, message formats, message exchange patterns and transport protocols Client/server coupling • Tightly or loosely coupled? Synchronous or asynchronous invocation • Request/reply or event-based? Application development tools • Depends on preference or what you already have Security • Does choice support your security requirements? Transactional scope • 2PC or not 2PC (that is not the only question!) High availability and scalability • Who doesn’t want high availability and scalability? 5
  • 6. SOA Connectivity Options 1. Web services over SOAP 2. JCA – CICS TG or WOLA 3. CICS Web Support 4. Messaging 5. CICS sockets 6
  • 8. CICS essential design concepts Pseudo-conversational programming Communication area: COMMAREA, Channels & Containers Program-to-program communication 8
  • 9. Problems with raw data communication Data must be accessed using its relative position Modifications to fields require application changes Addition of new fields affect all existing users Data requires a separate document to describe fields Data is not portable therefore platform dependent 9
  • 10. Introduction to XML Extensible Markup Language (XML), is owned by the World Wide Web Consortium (W3C). XML is an open standard protocol that provides a mechanism to create and define a meta-language that can be used to structure information. XML is extensible in that there are no pre-defined tags, as in HTML. Each set of users defines tags that have meaning to them and their peers, such as within a business, across an industry, or across multiple industries. XML is used to create new Internet languages. 10
  • 11. Two models of CICS SOA integration CICS TS Web service Client CICS Program Business logic B Requester connector Web services end-point Service Provider D Integration logic I A SOAP CICS TS Web service Client CICS Web services support Integration logic Data access Business Function DI Business logic B Requester (Service Provider) SOAP A CICS Web Services CICS Transaction Gateway 11
  • 13. Exposing CICS application as Web service Direct service call approach Web Services Clients (examples): • WebSphere BPEL process (Process Choreography) • WebSphere Datapower • .NET assembly • WebSphere MQ client • Another program in CICS (invoke Web service) • Anything that can invoke a Web Service ! CICS TS Web service Client CICS Web services support Integration logic Data access Business Function DI Business logic B Requester (Service Provider) SOAP A
  • 14. CICS Web Services Considerations Inbound and outbound Loosely coupled Synchronous HTTP (and MQ) CICS configuration required Native & Java Pipelines 14
  • 15. Standard architecture – Web services With CICS TS V3.x a CICS application can be Web service provider or consumer • HTTP or MQ transport Development using CICS supplied utilities or Rational Developer for System z (RDz) • Used to generate the data mapping Runtime • SOAP envelope removed by a message handler in the Web services pipeline • COMMAREA or container built by “data mapper” EXEC CICS INVOKE WEBSERVICE|SERVICE API for outbound support Client A CICS Web support WebSphere MQ Trigger Monitor Pipeline CICS or custom data mapping CICS TS SOAP DB Proxy 15
  • 16. Web service resource interrelationships 16
  • 17. CICS web services overview Web services terms and concepts available in CICS TS Web services architecture: • Service provider • Service requestor • Service registry WSDL SOAP messages Message handlers and pipelines PIPELINE and WEBSERVICE resource definitions 17
  • 18. Bottom up – Start with a language structure and convert it into a form usable as a CICS web service Approach to web services development (1 of 2) Top down – Start with a WSDL document and convert it into a form usable as a CICS web service. Web service requester Web service provider CICS as provider CICS as requesterCICS Bottom up Top down WSDL Language structures Provider – means that CICS is the host of the web service which is being invoked from elsewhere. Requester – means that CICS is the user of a web service provided elsewhere
  • 19. Approach to web services development (2 of 2) Existing business application (COBOL, C, C++, PLI) New service: WSDL New business application (COBOL, C, C++, PLI) Existing service description WSDL Existing service description WSDL Existing business application (COBOL, C, C++, PLI) Bottom-up Top-down Meet in the middle Generate Generate Map and Generate
  • 20. Rational Developer for System z Web Services and XML development • Offers the ability to create, view, edit and validate WSDL, document-type definitions (DTD) and XML schemas, transforms XML documents into text, HTML, or other XML document types. • Integrates relational databases and XML. • Generates COBOL adapters and CICS TS V3 WSBind and COBOL artifacts for converting between Web Service Definition Language. The CICS service flow feature provides components that extend CICS Transaction Server by providing adapters that exploit CICS interfaces to invoke the CICS terminal-oriented transactions and COMMAREA programs required by the web service generated from the service flow project.
  • 21. Client SOAP/HTTP WAS+CICS connector CICS Web ServicesSOAP/HTTP Security and Management for CICS Web services DataPower XI52 DataPower XI52 CICS CICSApplication MQServer CICS Brdg MQClient COBOL/MQ Client SOAP/HTTP DataPower provides Web service enablement Using DataPower XI52 21
  • 22. Summary: CICS Web Services Web services in CICS builds on established CICS concepts and technologies such as pseudo- conversational transactions and program-to-program communication via COMMAREAs (or channels and containers) Web services introduce new concepts and technologies such as XML, SOAP, and WSDL Web services involve a combination of CICS resource definitions (PIPELINE, WEBSERVICE, URIMAP) CICS TS provides utilities for converting existing CICS applications into web services IBM provides other tools to help develop web services 22
  • 24. Exposing CICS applications as Web service Connector approach CICS TS Web Service Client CICS Program Business logic B Other/Any CICS Transaction Gateway CICS TG WebSphere Application Server Web Service Support JEE Server J C A D CICS Transaction Gateway JCA (J2EE Connector Architecture) Resource Adapter • Different topologies and transports are supported Development using Rational Application Developer (RAD) • Used to generate J2C bean and records Runtime • ECI (External Call Interface) used for calling COMMAREA or container based programs • J2C bean performs data conversion and formatting • CICS TG V7.2 supports direct .NET connectivity with ECI V2 CICS TG V8.0 provides Open Integration with any JEE Server compliant with J2EE V1.4 or higher A
  • 25. CICS TG Considerations Inbound only Tightly coupled Synchronous Private protocols Little CICS configuration required Java (SE & EE), C, .Net 25
  • 26. J2EE Connector Architecture (JCA) JEE Server (e.g WebSphere Application Server) Application Component (e.g EJB) Resource Adapter (e.g CICS ECI resource adapter) Enterprise Information System (e.g CICS) System Contracts Container-Component Contract Common Client Interface (CCI) EIS Specific Interface ConnectionFactory cf =<JNDI lookup> Connection connection =cf.getConnection(); Interaction interaction =connection.createInteraction(); interaction.execute(<input and output data>); interaction.close(); connection.close(); Resource adapters provided by CICS TG  ECI (cicseci.rar)  EPI (cicsepi.rar) Connection Management Transaction Management Security Management 26
  • 27. CICS Transaction Gateway Topologies Whitepaper: Integrating WebSphere Application Server and CICS using the CICS Transaction Gateway http://www.ibm.com/software/htp/cics/ctg/zos/ CICS Network HTML WebSphere Application Server and CICS TG on System z WebSphere Application Server and CICS TG on a distributed platform WebSphere Application Server on a distributed platform CICS TG z/OS Topology 1 Topology 3 Topology 2 System z Service Consumer SOAP 27
  • 29. MQ, HTTP, CICS sockets 29
  • 30. CICS messaging support Web Service Client Other/Any WebSphere Application Server Web Service Support WAS J M S A WebSphere MQ Trigger Monitor CICS MQ Bridge CICS TS DB MQ Trigger Monitor • Starts CICS program that reads the message queue • Program can be MQ-aware or COMMAREA-based program CICS MQ Bridge • Transfers the message to the unchanged CICS business logic. • Transfers the output message to the Reply_To_Queue Inbound and outbound Medium coupling Asynchronous, with almost-synchronous capabilities Assured delivery
  • 31. HTTP / Atom / REST Inbound and outbound Medium coupling Synchronous Medium QoS 31
  • 32. CICS Sockets Inbound and outbound Very tight coupling Synchronous Limited QoS Use only when remote client/server only supports TCP/IP sockets communication. 32
  • 33. Enhancements in CICS TS 5.2 and CICS TG V9.1 open beta 33
  • 34. New in CICS TS V5.2 Easier Interaction with Mobile Devices & Gateways • Integration of CICS TS Feature Pack for Mobile Extensions JAX-WS and JAXB support in Liberty profile COBOL Data mapping enhancements • Arrays of characters are mapped as Strings • OCCURS DEPENDING ON and OCCURS INDEXED BY supported in COBOL CICS Explorer and cloud support for web services • WEBSERVICE definition • PIPELINE configuration 34
  • 35. Easier Interaction with Mobile Devices & Gateways JSON RESTful web service scenarios JSON request/response web service scenarios • Web services assistant programs • Linkable interface – Equivalent to EXEC CICS XMLTRANSFORM allows application programs to process JSON data Support for Liberty profile JAX-RS and JSON features 35
  • 36. New in CICS TG V9.1 open beta Mobile support • JSON web services IPIC enhancements • heartbeat exploitation • connections managed independently of Gateway lifecycle Security enhancements • compliance with NIST SP800-131A • SSL for .NET applications 36
  • 37. 37 CICS TG for z/OS V9.1 open beta - JSON Web Services Technology aligned with z/OS Connect
  • 38. Summary Preparing for SOA SOA Connectivity Options Enhancements in CICS TS 5.2 and CICS TG V9.1 open beta 38
  • 39. More Information Redbook/Whitepaper Title Publication N° Last Update Architecting Access to CICS within an SOA SG24-5466-06 March 2012 Options for Integrating CICS applications in an SOA WSW11339-USEN-00 Sept 2007 Implementing CICS Web Services SG24-7657-00 Nov 2008 Application Development for CICS Web Services SG24-7126-00 May 2006 Securing Access to CICS Within an SOA SG24-5756-01 Dec 2006 Securing CICS Web Services SG24-7658-00 Dec 2008 WebSphere for z/OS to CICS and IMS Connectivity Performance REDP-3959-00 May 2006 CICS Web Services Performance SG24-7687-00 2009 Deploying CICS Web services to preserve IT investments in the Banking Industry WSW14002-USEN-00 Dec 2007 Integrating WebSphere Application Server and CICS using the CTG WSW14013-USEN-00 March 2008 CICS Transaction Gateway for z/OS V6.1 SG24-7161-00 May 2006 Developing Connector Applications for CICS SG24-7714-00 Arpil 2009 Increase the value of CICS applications with WebSphere MQ WSW14006-USEN-01 Feb 2008 WebSphere MQ for z/OS Highly Available System Design SupportPac MD17 Jan 2006
  • 41. We Value Your Feedback Don’t forget to submit your Impact session and speaker feedback! Your feedback is very important to us – we use it to continually improve the conference. Use the Conference Mobile App or the online Agenda Builder to quickly submit your survey • Navigate to “Surveys” to see a view of surveys for sessions you’ve attended 41
  • 42. Legal Disclaimer • © IBM Corporation 2014. All Rights Reserved. • The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. • References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. • If the text contains performance statistics or references to benchmarks, insert the following language; otherwise delete: Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here. • If the text includes any customer examples, please confirm we have prior written approval from such customer and insert the following language; otherwise delete: All customer examples described are presented as illustrations of how those customers have used IBM products and the results they may have achieved. Actual environmental costs and performance characteristics may vary by customer. • Please review text for proper trademark attribution of IBM products. At first use, each product name must be the full name and include appropriate trademark symbols (e.g., IBM Lotus® Sametime® Unyte™). Subsequent references can drop “IBM” but should include the proper branding (e.g., Lotus Sametime Gateway, or WebSphere Application Server). Please refer to http://www.ibm.com/legal/copytrade.shtml for guidance on which trademarks require the ® or ™ symbol. Do not use abbreviations for IBM product names in your presentation. All product names must be used as adjectives rather than nouns. Please list all of the trademarks that you use in your presentation as follows; delete any not included in your presentation. IBM, the IBM logo, Lotus, Lotus Notes, Notes, Domino, Quickr, Sametime, WebSphere, UC2, PartnerWorld and Lotusphere are trademarks of International Business Machines Corporation in the United States, other countries, or both. Unyte is a trademark of WebDialogs, Inc., in the United States, other countries, or both. • If you reference Adobe® in the text, please mark the first use and include the following; otherwise delete: Adobe, the Adobe logo, PostScript, and the PostScript logo are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States, and/or other countries. • If you reference Java™ in the text, please mark the first use and include the following; otherwise delete: Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. • If you reference Microsoft® and/or Windows® in the text, please mark the first use and include the following, as applicable; otherwise delete: Microsoft and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both. • If you reference Intel® and/or any of the following Intel products in the text, please mark the first use and include those that you use as follows; otherwise delete: Intel, Intel Centrino, Celeron, Intel Xeon, Intel SpeedStep, Itanium, and Pentium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. • If you reference UNIX® in the text, please mark the first use and include the following; otherwise delete: UNIX is a registered trademark of The Open Group in the United States and other countries. • If you reference Linux® in your presentation, please mark the first use and include the following; otherwise delete: Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Other company, product, or service names may be trademarks or service marks of others. • If the text/graphics include screenshots, no actual IBM employee names may be used (even your own), if your screenshots include fictitious company names (e.g., Renovations, Zeta Bank, Acme) please update and insert the following; otherwise delete: All references to [insert fictitious company name] refer to a fictitious company and are used for illustration purposes only. 42

Editor's Notes

  1. I have grouped these options into two. First standard architectures and interfaces provide comprehensive options and support in CICS and tools. 1. SOAP (Simple Object Access Protocol) 2. JCA (J2EE Connector Architecture) 3. Java RMI (Remote Method Invocation) Second, standard transports are typically used for applications that require greater control of the protocol and as such use transport specific APIs and assume more responsibility for systems management and recovery. 4. JMS (Java Messaging Service) 5. HTTP (HyperText Transfer Protocol) 6. TCP/IP sockets The highlighted options are the ones that we focus on today.
  2. In this session we concentrate on the first approach which I refer to as the ‘connector approach’. The most commonly used connector is the CICS Transaction Gateway. In my next session, we will look more closely at the 2nd approach which is a direct Web service call to CICS. The choice of architectural approach is a key decision because it may affect the costs of developing e-business applications and their long term value. Business factors, such as the availability of skills, may be just as significant as technical factors influencing this decision. It’s important to recognize that there is no single right answer, just as there is no right programming language for all applications. Some technical factors to take into account include… Security Transactionality Performance and scalability This is an area in which the Design Centers can help you make decisions on what’s the best approach for you.
  3. The CICS Web services support enables CICS programs to be a SOAP Web service provider or service requester. Supports HTTP and MQ The definition of the SOAP service is defined in a WSDL (Web Services Definition Language) file. Typically tools are used to import the WSDL file and generate a proxy for the e-business client to use to construct and send the SOAP message. Concept of pipeline for processing SOAP message (see later) Adapter runs in CICS (SOAP/COMMAREA conversion) Normally generated Web services support is based on loose coupling Any Web service client i/f defined in WSDL Can change implementation without changing client (so long as messages/operations stay the same) If these change, open process for updating client, re-generate WSDL, recreate client proxy code But lacks the maturity and some of the QoS of JCA/CTG solution. But these are coming (see subsequent charts) Link: closer look at how it works
  4. The XI50z can be used in conjunction with CICS Web services to help secure the services and to offload expensive operations by processing the complex part of XML messages (such as an XML signature) at wirespeed. Note that this model works also with WebSphere based services, these then may connect to CICS using a connector such as the CICS Transaction Gateway. The XI50z can be used for Web service enablement. It can convert a SOAP message into a COBOL COMMAREA and send the binary format message to CICS over MQ. Both of these methods are being used by our customers today.
  5. RDz
  6. This slide is just a reminder that the Java architected way of accessing information from Java applications is using JCA, which for CICS means the CICS TG. Explain strengths of connector solution and using CIC STG. The CICS TG has been around for quite some time. Its roots go back to 1989, so the code is very stable and highly optimized. The CICS TG provides a method of accessing programs running under CICS from programs running outside CICS. These programs can be written in many different languages, and can be running on several different platforms. One of the most popular languages using the CICS TG to access programs running in CICS is Java. The Java architected way of accessing EISs (Enterprise Information Systems) is using a standard called the Java 2 Connector Architecture (commonly referred to as JCA or J2C). When using the JCA, you would normally have an Application Server such as WebSphere Application Server act as a Web Service provider and receive Web Services requests. The Application Server would then give the Web Services request to a program running the in the Application Server. The application program would take the information in the Web Service request and format the data for invocation of a CICS program via the CICS TG. When the data was return via the CICS TG, an application program would format the data into XML and the Application Server would return the response to the Web Service requester. Wizards are available in Rational Application Developer, WebSphere Integration Developer, and WebSphere Developer for zSeries to generate the objects that do any necessary conversion and data formatting before invoking the CICS program via the CICS TG. Additionally, these tools can also take the generated objects and expose them as Web Services. Due to this tool support, exposing a CICS program as a Web Service via the CICS TG requires little if any coding.
  7. Key points: Standard for connecting from J2EE world to EIS EIS provides resource adapter (in case of CICS, provided by CICS TG – ECI and EPI) Resource adapter expose common interface to applications (CCI) - comprised of two sets of classes, generic classes applicable to any EIS, and a set of classes specific to the EIS (in this case CICS specific classes). Main advantage of JCA, however, over other connectors are the system contracts A connection-management contract Provides a consistent application programming model for connection acquisition and enables a J2EE application server to pool connections to a back-end EIS. • A transaction-management contract Defines the scope of transactional integration between the J2EE application server and an EIS. • A security-management contract How security context is passed. Both container-managed sign-on and component-managed sign-on are supported. Link: Platform/topology choices
  8. The JCA system contracts are the key to the qualities of service provided by WebSphere Application Server and CICS ECI resource adapters. They provide the mechanisms by which the management of connections, security and transactions are performed. However, the qualities of service depend on the topology in use. The three topologies, shown in this chart, are: • Topology 1. WebSphere Application Server and the CICS TG are both deployed on a distributed platform. • Topology 2. WebSphere Application Server is deployed on a distributed platform and CICS TG is deployed on an IBM z/OS system. • Topology 3. Both WebSphere Application Server and CICS TG are deployed on an IBM System z platform. In this session we will focus on topologies 2 and 3 because these are the most common ones and they offer the best qualities of service.
  9. The JCA system contracts are the key to the qualities of service provided by WebSphere Application Server and CICS ECI resource adapters. They provide the mechanisms by which the management of connections, security and transactions are performed. However, the qualities of service depend on the topology in use. The three topologies, shown in this chart, are: • Topology 1. WebSphere Application Server and the CICS TG are both deployed on a distributed platform. • Topology 2. WebSphere Application Server is deployed on a distributed platform and CICS TG is deployed on an IBM z/OS system. • Topology 3. Both WebSphere Application Server and CICS TG are deployed on an IBM System z platform. Topology 4- WAS, CICS and db2 – all on same LPAR, bidirectional connectivity using WOLA
  10. This chart shows another implementation of the indirect approach. This time messaging is used rather than a synchronous connector. When using JMS to service-enable a CICS application, an application server acts as a Web Service provider and receives Web Services requests. The JEE application takes the information in the Web Service request and formats the data as a message (normally using the message type JMSBytesMessage) and sends it to a CICS program via a message queue. The WebSphere MQ trigger-monitor program supplied by CICS starts the CICS program that will read the queue. The CICS program may be an MQ-aware program, in which case it uses the MQ native APIs to receive the message, or it may be a normal COMMAREA-based program, in which case the CICS MQ bridge maps the incoming message to the expected COMMAREA. Using JMS in this way provides a choice between the pseudo-synchronous request-and-response style of CICS integration, or the fire-and-forget style, or a mixture of both. Don’t forget that JMS can also be used as a transport mechanism with the CICS Web services support. Linkage: So what are the key considerations and best practice for using with JMS?