SlideShare a Scribd company logo
1 of 45
Download to read offline
Capitalware's MQ Technical Conference v2.0.1.6
MQ Service Provider for z/OS Connect
(And some other new stuff)
Matt Leming – lemingma@uk.ibm.com
MQ Development
Capitalware's MQ Technical Conference v2.0.1.62 © 2016 IBM Corporation
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.
Capitalware's MQ Technical Conference v2.0.1.63 © 2016 IBM Corporation
Agenda
 MQ Service Provider for z/OS Connect
 What is z/OS Connect?
 What is the MQ Service Provider?
 What might it look like?
 Other new stuff
 JMS enhancements
 Enhancements to sub-system connectivity
Capitalware's MQ Technical Conference v2.0.1.6
What is z/OS Connect?
Capitalware's MQ Technical Conference v2.0.1.65 © 2016 IBM Corporation
It’s about getting REST and JSON into your mainframe environment in a way that
enables you to best take advantage of the assets that exist there:
Mobile / Cloud
Ecosystem
CICS
IMS
Batch
DB2
REST – Representational State Transfer …
the use of HTTP URLs that map to a ‘service’,
such as ‘query account’ or ‘update data’
JSON – JavaScript Object Notation …
a standard of representing data as a set of
name/value pairs. This is passed back and
forth along with REST request/responses
Where z/OS
Connect fits
z/OS
Connect
Other
z/OS Connect – what is it?
 WebSphere Liberty Profile Server
 Function IBM wrote to run in Liberty
Profile
Capitalware's MQ Technical Conference v2.0.1.66 © 2016 IBM Corporation
 Original free version: z/OS Connect V1
 Available since 2014
 Provides
 Basic REST/JSON support
 A basic REST API for discovering and managing exposed services
 Capable of performing data conversion from JSON to the data format required by the
backend configured service
 Optional authorization checking using SAF to allow or deny users access to z/OS
Connect services
 Optional activity recording using SMF to track requests by date and time, bytes sent
and received, and response time
Two versions!
Capitalware's MQ Technical Conference v2.0.1.67 © 2016 IBM Corporation
 z/OS Connect EE V2
 Available since December 2015
 Chargeable
 Continuous delivery approach to enhancing product
 Based on V1 with enhancements…
 Enhancements over V1
 More advanced REST functionality
 Proper use of HTTP verb and URL to define API
 API Editor
 Define APIs, described using Swagger 2
 Map API down onto underlying service
– body, header and query parameters
– pass-through, redaction and default values
 Deploy APIs plus artefacts to runtime using single file (AAR – Api ARchive)
 Consistent tooling and API definition for backend systems: CICS, IMS etc
Two versions!
Capitalware's MQ Technical Conference v2.0.1.68 © 2016 IBM Corporation
z/OS Connect EE tooling
Capitalware's MQ Technical Conference v2.0.1.69 © 2016 IBM Corporation
Liberty Profile for z/OS
z/OS Connect
Servlet
CICS
IMS
DB2
Interceptors
Service Providers
Data Transform
1
4
RESTful
JSON
3
5
6
7
8
z/OS Connect is software function that
runs in Liberty Profile for z/OS
z/OS Connect is described and
configured in the Liberty
server.xml file
z/OS Connect is designed to accept
RESTful URIs with JSON data
payloads
A ‘Service Provider’ is software
that provides the connectivity to
the backend system
server.xml
2
One part of z/OS Connect is
a servlet that runs in Liberty
Profile z/OS.
z/OS Connect provides the ability
to transform JSON to the layout
required by backend
‘Interceptors’ are callout points
where software can be invoked to
do things such as SAF
authorization and SMF activity
recording
Backend systems supported are
CICS, IMS, Batch, and DB2
1
2
3
4
5
6
7
8
Batch
Summary in one picture
(z/OS Connect V1 shown)
Capitalware's MQ Technical Conference v2.0.1.6
What is the
MQ Service Provider?
Capitalware's MQ Technical Conference v2.0.1.611 © 2016 IBM Corporation
Statement of general direction
 IBM intends that a future release of IBM MQ for z/OS will provide support
for both z/OS Connect and z/OS Connect EE
 https://ibm.biz/MQzOSConnectSOD
Capitalware's MQ Technical Conference v2.0.1.612 © 2016 IBM Corporation
The MQ Service Provider
 Free of charge z/OS Connect service provider that allows existing services
that are fronted by MQ to be accessed via a RESTful front end
 Both V1 and EE supported
 Same capabilities in both versions
 Clients need have no knowledge of MQ
Capitalware's MQ Technical Conference v2.0.1.613 © 2016 IBM Corporation
Service types
 Each URL in z/OS Connect maps to a service
 With the MQ Service Provider there are two different types of service
 Two way services
 One way services
 A two way service provides request/reply messaging:
1. Client issues HTTP POST with some payload (JSON)
2. MQ Service Provider sends payload (optional transformation) to one MQ queue
3. Back end application processes payload and puts response on reply queue
4. MQ Service Provider gets response (optional transformation) and sends it to client as
the body of the HTTP POST response
 A one way service exposes standard MQ verbs against a single destination
 HTTP POST == MQPUT (queue and topic)
 HTTP DELETE == MQGET (queue)
 HTTP GET == MQGET (browse) (queue)
 Allows more advanced interactions with MQ
Capitalware's MQ Technical Conference v2.0.1.614 © 2016 IBM Corporation
Two way example
 HTTP POST to https://<hostname>:<port>/mq40
 All MQ related information is held in mqzOSConnectService element
 Sensible defaults
 Overridable via HTTP headers, e.g. ibm-mq-gmo-waitInterval
 Builds on the MQ messaging provider in Liberty. Uses JMS
<zosConnectService id="zosconnMQ40"
invokeURI="/mq40"
serviceName="mq40"
serviceRef="mq40" />
<mqzOSConnectService id="mq40"
connectionFactory="jms/cf1"
destination="jms/twoWayRequestQ"
waitInterval="10000"
replyDestination="jms/twoWayResponseQ"/>
Provided by
z/OS Connect
server.xml
Provided by MQ
Service Provider
Capitalware's MQ Technical Conference v2.0.1.615 © 2016 IBM Corporation
Example two-way service
 Insurance quote service which takes a request from an MQ queue and
sends a response to another queue
 COBOL request
 COBOL response
 So COBOL -> JSON conversion needed using built in tooling
Capitalware's MQ Technical Conference v2.0.1.616 © 2016 IBM Corporation
Example two-way service - configuration
<zosConnectDataXform id="xformJSON2Byte"
bindFileLoc="${XFORM_ROOT}/bindfiles"
bindFileSuffix=".bnd"
requestSchemaLoc="${XFORM_ROOT}/json"
requestSchemaSuffix=".json"
responseSchemaLoc="${XFORM_ROOT}/json"
responseSchemaSuffix=".json" />
<zosConnectService id="zosconnIQ"
invokeURI="/iq"
serviceName=“iq"
serviceRef=“iq"
dataXformRef="xformJSON2Byte" />
<mqzOSConnectService id=“iq"
connectionFactory="jms/cf1"
destination="jms/iqRequestQ"
waitInterval="10000"
replySelection=“msgIDToCorrelID"
replyDestination=“iqResponseQ"
receiveTextCCSID="37" />
Capitalware's MQ Technical Conference v2.0.1.617 © 2016 IBM Corporation
Example two-way service – request
Capitalware's MQ Technical Conference v2.0.1.618 © 2016 IBM Corporation
Example two-way service – request on
queue
Message on queue
MQ Service Provider
waiting for response
Capitalware's MQ Technical Conference v2.0.1.619 © 2016 IBM Corporation
Example two-way service – response on
queue
Capitalware's MQ Technical Conference v2.0.1.620 © 2016 IBM Corporation
Example two-way service – response
Capitalware's MQ Technical Conference v2.0.1.621 © 2016 IBM Corporation
Delivery plans
 MQ Service Provider for z/OS Connect
 Will be provided in USS component of a future version of MQ
 Will be supported with MQ 8 and later queue managers
 Will also be made available on Fix Central
 In case you don’t have the latest version of MQ available
 Only contains the MQ Service Provider function. You need to provide z/OS
Connect (V1 or V2)
 Code consists of a jar file, and a Liberty feature manifest
Capitalware's MQ Technical Conference v2.0.1.622 © 2016 IBM Corporation
Beta version available now
 If you want to join the MQ beta then please let me know
Capitalware's MQ Technical Conference v2.0.1.6
JMS Enhancements
Capitalware's MQ Technical Conference v2.0.1.624 © 2016 IBM Corporation
What is JMS and why do I want it?
 Java Message Service
 Standard API for interacting with messaging middleware such as MQ
 Simple support for interacting with both queues and topics
 Widely adopted and used throughout the industry
 Most recent version is JMS 2
 Released in 2013
 Mainly focused on ease of use (new JMSContext API)
 Backwards compatible
 Some minor functionality added
 Delivery delay being the most notable
Capitalware's MQ Technical Conference v2.0.1.625 © 2016 IBM Corporation
What Java support was there for MQ on z until recently?
 JMS 1.* supported since MQ v5
 JMS 2.0 support added in MQ v8
 Supported on z/OS in
 z/WAS, including Liberty
 Batch
 In CICS
 MQ base classes for Java supported in OSGi JVM Server
 MQ specific Java API
 In IMS
 No Java support with MQ at all
Capitalware's MQ Technical Conference v2.0.1.626 © 2016 IBM Corporation
What has been added?
 Support for MQ JMS in CICS 5.3 and 5.2 OSGi environments
 Works with MQ 7.1 and later
 Depending on environment some APARs needed
 Since 1Q 2015
 Support for MQ JMS in IMS 13
 Works with MQ 8 and later
 Requires MQ APARs if using MQ 8
 Since 4Q 2015
 Support for MQ JMS in CICS 5.3 Liberty environments New!
Capitalware's MQ Technical Conference v2.0.1.627 © 2016 IBM Corporation
What is CICS Liberty JVM Server?
 For a number of CICS release support has been provided for running
Liberty inside the CICS address space
 Only a subset of JEE capability supported
 Integration provided with native CICS capabilities
 In some cases slight adjustments to programming model/the way things work
 CICS V5.3 +PI58375 changes things, two sorts of CICS Liberty introduced
 Liberty Standard
 Liberty Integrated
 Liberty Standard: FULL Liberty support. No CICS integration
 Perfect for ‘lift and shift’
 Liberty Integrated: Same capability as provided before, subset of JEE
integrated with CICS capabilities
 Perfect when needing to integrate JEE with CICS transactions
 Subset continuing to expand
Capitalware's MQ Technical Conference v2.0.1.628 © 2016 IBM Corporation
CICS Liberty
JVM
JMS
MQ
RA
What does this mean with MQ?
 Allow CICS Liberty to use MQ resource adapter
 Just like normal Liberty
 Run existing Liberty messaging apps (eg MDBs) inside CICS
 Connections to MQ supported using either client or bindings mode
 Some restrictions depending on environment
 Prereqs CICS V5.3 +PI58375 + MQ 9.0.1 RA
MSTR
CHIN
External
MQ
Capitalware's MQ Technical Conference v2.0.1.629 © 2016 IBM Corporation
CICS Liberty
JVM
JMS
MQ
RA
CICS Liberty Standard JMS Support
 Bindings (RRS) and/or client (XA) connections supported
 Bindings not allowed to CICS connected MQ
MSTR
CHIN
External
MQ
Client
Client
Bindings
Capitalware's MQ Technical Conference v2.0.1.630 © 2016 IBM Corporation
CICS Liberty
JVM
JMS
MQ
RA
CICS Liberty Integrated JMS Support
 Client (XA) connections only
MSTR
CHIN
External
MQ
Client
Client
Capitalware's MQ Technical Conference v2.0.1.631 © 2016 IBM Corporation
Where can I find out more?
 CICS
 MQ 8 KC: https://ibm.biz/MQJMSinCICSOSGiKC8
 MQ 7.1 KC: https://ibm.biz/MQJMSinCICSOSGiKC71
 Blog articles:
 http://ibm.biz/MQJMSinCICSOSGiBlog
 http://ibm.biz/MQJMSinCICSOSGiJNDI
 https://developer.ibm.com/cics/2016/07/12/java-ee-7-in-cics/
 IMS
 MQ 8 KC: https://ibm.biz/MQJMSinIMSKC
 Blog article: https://ibm.biz/MQJMSinIMSBlog
Capitalware's MQ Technical Conference v2.0.1.632 © 2016 IBM Corporation
CICS Liberty
JVM
JMS
MQ
RA
What is still to come?
 Statement of direction: IBM intends to deliver additional Java EE 7
components and technologies for the CICS TS hosted WebSphere Liberty
profile through continuous delivery of new features in the coming months.
These additional components and technologies are intended to include
support for Java EE 7 Web Profile features, support for JMS 2.0 with IBM
MQ for z/OS, and the ability to LINK from a CICS TS COBOL program to a
CICS TS hosted Liberty application
 https://ibm.biz/MQCICSWLPSOD
MSTR
CHIN
External
MQ
Bindings
Capitalware's MQ Technical Conference v2.0.1.6
Enhanced sub-system
connectivity
Capitalware's MQ Technical Conference v2.0.1.634 © 2016 IBM Corporation
MQ Explorer is now part of Aqua
 https://developer.ibm.com/mainframe/products/downloads/
Capitalware's MQ Technical Conference v2.0.1.635 © 2016 IBM Corporation
CICS Adapter enhancements
 New in CICS 5.4, currently in open beta
Capitalware's MQ Technical Conference v2.0.1.636 © 2016 IBM Corporation
What we have today
 CICS CKQC transaction controls the MQCONN definition and CKTI
transactions
 E.g. “CKQC START” – start connection to MQ
 Use the INITQNAME parameter on the MQCONN definition to automatically
start a single instance of CKTI
 In order to start more than one instance of the CKTI transaction the user
enters
 “CKQC STARTCKTI CSQ4SAMP.INITIATION.QUEUE”
 At
 A CICS terminal
 An MVS console
 Alternatively write an application program that links to program DFHMQSSQ
 etc
Capitalware's MQ Technical Conference v2.0.1.637 © 2016 IBM Corporation
Problems with today’s environment
 If the MQCONN is restarted all transactions accessing MQ queues are
terminated
 When the connection is re-established the transaction associated with the
INITPARM parameter on the MQCONN is restarted automatically
 Any user initiated CKTI transactions must be manually restarted
 The userid associated with the new CKTI transaction is that of the user
issuing the restart request not the original user
 The default userid associated with the transaction retrieving the application
message is now that of the user that issued the restart request.
 Cannot stop the MQ Bridge transaction without stopping / restarting the MQ
connection
Capitalware's MQ Technical Conference v2.0.1.638 © 2016 IBM Corporation
What is changing?
 New MQMONITOR resource added
 Allows an associated transaction which monitors/services an MQ queue to
be started/restarted automatically when the connection to the queue
manager is made
 The transaction is automatically stopped when the queue manager is
disconnected
 Useful for
 CICS trigger monitor/bridge transactions
 Any other transaction that is dependant on MQ connectivity
 An MQMONITOR resource is dynamically created if you specify the
MQCONN INITQNAME attribute
 So same approach used throughout
Capitalware's MQ Technical Conference v2.0.1.639 © 2016 IBM Corporation
Resource definition
 Autostart: whether started automatically when connected to MQ
 Transaction: monitoring transaction to start, defaults to CKTI
 MONUserid: userid used to start the monitoring transaction
 MONData: is arbitrary data that can be passed to the monitoring transaction
 Userid: used by the monitoring transaction for any application transactions that it starts (e.g.
when CKTI starts another transaction)
Capitalware's MQ Technical Conference v2.0.1.640 © 2016 IBM Corporation
MQMONITOR
Autostart(YES)
Transaction(CKTI)
Qname(MY.INITQ)
MONUserid(MATTL)
Userid(PETES)
MQMONITOR
Autostart(YES)
Transaction(CKTI)
Qname(MY.INITQ)
MONUserid(MATTL)
Userid(PETES)
A pictorial explanation!
MQCONN
MQMONITOR
Autostart(YES)
Transaction(CKTI)
Qname(MY.INITQ)
MONUserid(MATTL)
Userid(PETES)
CKTI
MQ
MY.INITQ MY.REALQ
UTRN
1) Connects
2) Starts
3) EXEC CICS START
TRANSID(CKTI)
USERID(MATTL)
4) Get
message
6) Get
message
5) EXEC CICS START
TRANSID(UTRN)
USERID(PETES)
The monitor
transaction
The application
transaction
Capitalware's MQ Technical Conference v2.0.1.642 © 2016 IBM Corporation
CEMT SET MQCONN CONNECTED
Capitalware's MQ Technical Conference v2.0.1.643 © 2016 IBM Corporation
IMS MQ Connection
 IMS V13 added Destination descriptor of type MQSERIES
 Use on ALT IOPCB
 Configure in OTMA descriptor in DFSYDTx IMS PROCLIB instead of coding
DFSYPRX0 or DFSYDRU0 exits
 TYPE=MQSERIES contains parms to set MQMD values such as
 MQRTQ ReplyToQueue
 MQMSGID
 MQCORREL
 MQPERST
 MQFORMAT
 APAR PI62339 (V13) PI64588 (V14) add MQSTR to allowable formats
Capitalware's MQ Technical Conference v2.0.1.644 © 2016 IBM Corporation
DB2 MQ Connection
 DB2 Stored Procedure Address Spaces (SPAS) connect to MQ using RRS
as a transaction coordinator
 Each MQ operation uses a new RRS context
 Each RRS context has a separate thread information anchored from ACE
 ECSA footprint of ~2kB per thread
 MQ introduced ACELIM ZPARM to limit the number of ACEs and so ECSA
consumed
 Initial implementation: ‘protect the LPAR’
 Not MQ applications, which will get connection failures
 PI48417 MQ V8, PI55066 MQ V7.1 substantially improve queue manager
toleration and recovery when the limit is reached
Capitalware's MQ Technical Conference v2.0.1.645 © 2016 IBM Corporation
Summary
 MQ Service Provider for z/OS Connect
 What is z/OS Connect?
 What is the MQ Service Provider?
 What might it look like?
 Other new stuff
 JMS enhancements
 Enhancements to sub-system connectivity
Capitalware's MQ Technical Conference v2.0.1.646 © 2016 IBM Corporation
Questions & Answers

More Related Content

What's hot

414: Build an agile CI/CD Pipeline for application integration
414: Build an agile CI/CD Pipeline for application integration414: Build an agile CI/CD Pipeline for application integration
414: Build an agile CI/CD Pipeline for application integrationTrevor Dolby
 
Whats new in data power
Whats new in data powerWhats new in data power
Whats new in data powersflynn073
 
IBM Think 2018: IBM MQ High Availability
IBM Think 2018: IBM MQ High AvailabilityIBM Think 2018: IBM MQ High Availability
IBM Think 2018: IBM MQ High AvailabilityJamie Squibb
 
z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...
z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...
z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...zOSCommserver
 
IBM WebSphere MQ for z/OS - Security
IBM WebSphere MQ for z/OS - SecurityIBM WebSphere MQ for z/OS - Security
IBM WebSphere MQ for z/OS - SecurityDamon Cross
 
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...Simplilearn
 
IBM MQ - What's new in 9.2
IBM MQ - What's new in 9.2IBM MQ - What's new in 9.2
IBM MQ - What's new in 9.2David Ware
 
Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice ArchitectureNguyen Tung
 
IBM WebSphere MQ Introduction
IBM WebSphere MQ Introduction IBM WebSphere MQ Introduction
IBM WebSphere MQ Introduction ejlp12
 
IBM Cloud Integration Platform High Availability - Integration Tech Conference
IBM Cloud Integration Platform High Availability - Integration Tech ConferenceIBM Cloud Integration Platform High Availability - Integration Tech Conference
IBM Cloud Integration Platform High Availability - Integration Tech ConferenceRobert Nicholson
 
Gateway/APIC security
Gateway/APIC securityGateway/APIC security
Gateway/APIC securityShiu-Fun Poon
 
Microservices
MicroservicesMicroservices
MicroservicesSmartBear
 
IBM DataPower Gateway - Common Use Cases
IBM DataPower Gateway - Common Use CasesIBM DataPower Gateway - Common Use Cases
IBM DataPower Gateway - Common Use CasesIBM DataPower Gateway
 
Red Hat Container Strategy
Red Hat Container StrategyRed Hat Container Strategy
Red Hat Container StrategyRed Hat Events
 
How to create a User Defined Policy with IBM APIc (v10)
How to create a User Defined Policy with IBM APIc (v10)How to create a User Defined Policy with IBM APIc (v10)
How to create a User Defined Policy with IBM APIc (v10)Shiu-Fun Poon
 
NETWORKERS HOME Cisco UCS PPT .
NETWORKERS HOME Cisco UCS PPT .NETWORKERS HOME Cisco UCS PPT .
NETWORKERS HOME Cisco UCS PPT .networkershome
 
Red Hat OpenShift Container Platform Overview
Red Hat OpenShift Container Platform OverviewRed Hat OpenShift Container Platform Overview
Red Hat OpenShift Container Platform OverviewJames Falkner
 
Building an Active-Active IBM MQ System
Building an Active-Active IBM MQ SystemBuilding an Active-Active IBM MQ System
Building an Active-Active IBM MQ Systemmatthew1001
 
Cloud Native Application
Cloud Native ApplicationCloud Native Application
Cloud Native ApplicationVMUG IT
 

What's hot (20)

414: Build an agile CI/CD Pipeline for application integration
414: Build an agile CI/CD Pipeline for application integration414: Build an agile CI/CD Pipeline for application integration
414: Build an agile CI/CD Pipeline for application integration
 
Whats new in data power
Whats new in data powerWhats new in data power
Whats new in data power
 
IBM Think 2018: IBM MQ High Availability
IBM Think 2018: IBM MQ High AvailabilityIBM Think 2018: IBM MQ High Availability
IBM Think 2018: IBM MQ High Availability
 
z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...
z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...
z/OS V2.4 Preview: z/OS Container Extensions - Running Linux on Z docker cont...
 
IBM WebSphere MQ for z/OS - Security
IBM WebSphere MQ for z/OS - SecurityIBM WebSphere MQ for z/OS - Security
IBM WebSphere MQ for z/OS - Security
 
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
 
IBM MQ - What's new in 9.2
IBM MQ - What's new in 9.2IBM MQ - What's new in 9.2
IBM MQ - What's new in 9.2
 
Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice Architecture
 
IBM WebSphere MQ Introduction
IBM WebSphere MQ Introduction IBM WebSphere MQ Introduction
IBM WebSphere MQ Introduction
 
IBM Cloud Integration Platform High Availability - Integration Tech Conference
IBM Cloud Integration Platform High Availability - Integration Tech ConferenceIBM Cloud Integration Platform High Availability - Integration Tech Conference
IBM Cloud Integration Platform High Availability - Integration Tech Conference
 
Gateway/APIC security
Gateway/APIC securityGateway/APIC security
Gateway/APIC security
 
Microservices
MicroservicesMicroservices
Microservices
 
IBM DataPower Gateway - Common Use Cases
IBM DataPower Gateway - Common Use CasesIBM DataPower Gateway - Common Use Cases
IBM DataPower Gateway - Common Use Cases
 
Red Hat Container Strategy
Red Hat Container StrategyRed Hat Container Strategy
Red Hat Container Strategy
 
Datapower Steven Cawn
Datapower Steven CawnDatapower Steven Cawn
Datapower Steven Cawn
 
How to create a User Defined Policy with IBM APIc (v10)
How to create a User Defined Policy with IBM APIc (v10)How to create a User Defined Policy with IBM APIc (v10)
How to create a User Defined Policy with IBM APIc (v10)
 
NETWORKERS HOME Cisco UCS PPT .
NETWORKERS HOME Cisco UCS PPT .NETWORKERS HOME Cisco UCS PPT .
NETWORKERS HOME Cisco UCS PPT .
 
Red Hat OpenShift Container Platform Overview
Red Hat OpenShift Container Platform OverviewRed Hat OpenShift Container Platform Overview
Red Hat OpenShift Container Platform Overview
 
Building an Active-Active IBM MQ System
Building an Active-Active IBM MQ SystemBuilding an Active-Active IBM MQ System
Building an Active-Active IBM MQ System
 
Cloud Native Application
Cloud Native ApplicationCloud Native Application
Cloud Native Application
 

Viewers also liked

HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ...
 HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ... HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ...
HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ...Matt Leming
 
Understanding and Using Client JBoss A-MQ APIs
Understanding and Using Client JBoss A-MQ APIsUnderstanding and Using Client JBoss A-MQ APIs
Understanding and Using Client JBoss A-MQ APIsKenneth Peeples
 
New Tools and Interfaces for Managing IBM MQ
New Tools and Interfaces for Managing IBM MQNew Tools and Interfaces for Managing IBM MQ
New Tools and Interfaces for Managing IBM MQMatt Leming
 
Where is My Message
Where is My MessageWhere is My Message
Where is My MessageMatt Leming
 
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overviewz/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
z/OS Connect Enterprise Edition V2.0.0.0 Technical OverviewRobert Jones
 
Systemz Security Overview (for non-Mainframe folks)
Systemz Security Overview (for non-Mainframe folks)Systemz Security Overview (for non-Mainframe folks)
Systemz Security Overview (for non-Mainframe folks)Mike Smith
 

Viewers also liked (6)

HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ...
 HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ... HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ...
HHM-3481: IBM MQ for z/OS: Enhancing Application and Messaging Connectivity ...
 
Understanding and Using Client JBoss A-MQ APIs
Understanding and Using Client JBoss A-MQ APIsUnderstanding and Using Client JBoss A-MQ APIs
Understanding and Using Client JBoss A-MQ APIs
 
New Tools and Interfaces for Managing IBM MQ
New Tools and Interfaces for Managing IBM MQNew Tools and Interfaces for Managing IBM MQ
New Tools and Interfaces for Managing IBM MQ
 
Where is My Message
Where is My MessageWhere is My Message
Where is My Message
 
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overviewz/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
z/OS Connect Enterprise Edition V2.0.0.0 Technical Overview
 
Systemz Security Overview (for non-Mainframe folks)
Systemz Security Overview (for non-Mainframe folks)Systemz Security Overview (for non-Mainframe folks)
Systemz Security Overview (for non-Mainframe folks)
 

Similar to MQ Support for z/OS Connect

IBM MQ for z/OS The Latest and Greatest Enhancements
IBM MQ for z/OS The Latest and Greatest EnhancementsIBM MQ for z/OS The Latest and Greatest Enhancements
IBM MQ for z/OS The Latest and Greatest EnhancementsPete Siddall
 
Biztalk Server 2010: Introdução
Biztalk Server 2010: IntroduçãoBiztalk Server 2010: Introdução
Biztalk Server 2010: IntroduçãoComunidade NetPonto
 
What's New in IBM MQ - Version 8
What's New in IBM MQ - Version 8What's New in IBM MQ - Version 8
What's New in IBM MQ - Version 8MarkTaylorIBM
 
Wmq wmb dist migration v1 030310
Wmq wmb dist migration v1 030310Wmq wmb dist migration v1 030310
Wmq wmb dist migration v1 030310karthickmsit
 
WCF tutorial
WCF tutorialWCF tutorial
WCF tutorialAbhi Arya
 
Session 1: The SOAP Story
Session 1: The SOAP StorySession 1: The SOAP Story
Session 1: The SOAP Storyukdpe
 
What's New in IBM Messaging
What's New in IBM MessagingWhat's New in IBM Messaging
What's New in IBM MessagingMorag Hughson
 
MQ Guide France - What's new in ibm mq 9.1.4
MQ Guide France - What's new in ibm mq 9.1.4MQ Guide France - What's new in ibm mq 9.1.4
MQ Guide France - What's new in ibm mq 9.1.4Robert Parker
 
20090213 Friday Food Croslocis
20090213 Friday Food Croslocis20090213 Friday Food Croslocis
20090213 Friday Food Croslocisimec.archive
 
20090213 Friday Food croslocis
20090213 Friday Food croslocis20090213 Friday Food croslocis
20090213 Friday Food croslocisimec.archive
 
REST APIs and MQ
REST APIs and MQREST APIs and MQ
REST APIs and MQMatt Leming
 
What's new in MQ 9.1 on z/OS
What's new in MQ 9.1 on z/OSWhat's new in MQ 9.1 on z/OS
What's new in MQ 9.1 on z/OSMatt Leming
 
What's new with MQ on z/OS 9.3 and 9.3.1
What's new with MQ on z/OS 9.3 and 9.3.1What's new with MQ on z/OS 9.3 and 9.3.1
What's new with MQ on z/OS 9.3 and 9.3.1Matt Leming
 
Enterprise Software Architecture
Enterprise Software ArchitectureEnterprise Software Architecture
Enterprise Software Architecturerahmed_sct
 
SoCal User Group Meeting 2013-05-06
SoCal User Group Meeting 2013-05-06SoCal User Group Meeting 2013-05-06
SoCal User Group Meeting 2013-05-06Thomas Stensitzki
 
SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricing SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricing nick_garrod
 
SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile PricingSHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricingnick_garrod
 
Pivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First LookPivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First LookVMware Tanzu
 
Integration Approach for MES
Integration Approach for MESIntegration Approach for MES
Integration Approach for MESVinod Kumar
 

Similar to MQ Support for z/OS Connect (20)

IBM MQ for z/OS The Latest and Greatest Enhancements
IBM MQ for z/OS The Latest and Greatest EnhancementsIBM MQ for z/OS The Latest and Greatest Enhancements
IBM MQ for z/OS The Latest and Greatest Enhancements
 
Biztalk Server 2010: Introdução
Biztalk Server 2010: IntroduçãoBiztalk Server 2010: Introdução
Biztalk Server 2010: Introdução
 
What's New in IBM MQ - Version 8
What's New in IBM MQ - Version 8What's New in IBM MQ - Version 8
What's New in IBM MQ - Version 8
 
Wmq wmb dist migration v1 030310
Wmq wmb dist migration v1 030310Wmq wmb dist migration v1 030310
Wmq wmb dist migration v1 030310
 
WCF tutorial
WCF tutorialWCF tutorial
WCF tutorial
 
Session 1: The SOAP Story
Session 1: The SOAP StorySession 1: The SOAP Story
Session 1: The SOAP Story
 
What's New in IBM Messaging
What's New in IBM MessagingWhat's New in IBM Messaging
What's New in IBM Messaging
 
MQ Guide France - What's new in ibm mq 9.1.4
MQ Guide France - What's new in ibm mq 9.1.4MQ Guide France - What's new in ibm mq 9.1.4
MQ Guide France - What's new in ibm mq 9.1.4
 
20090213 Friday Food Croslocis
20090213 Friday Food Croslocis20090213 Friday Food Croslocis
20090213 Friday Food Croslocis
 
20090213 Friday Food croslocis
20090213 Friday Food croslocis20090213 Friday Food croslocis
20090213 Friday Food croslocis
 
REST APIs and MQ
REST APIs and MQREST APIs and MQ
REST APIs and MQ
 
What's new in MQ 9.1 on z/OS
What's new in MQ 9.1 on z/OSWhat's new in MQ 9.1 on z/OS
What's new in MQ 9.1 on z/OS
 
What's new with MQ on z/OS 9.3 and 9.3.1
What's new with MQ on z/OS 9.3 and 9.3.1What's new with MQ on z/OS 9.3 and 9.3.1
What's new with MQ on z/OS 9.3 and 9.3.1
 
Enterprise Software Architecture
Enterprise Software ArchitectureEnterprise Software Architecture
Enterprise Software Architecture
 
SoCal User Group Meeting 2013-05-06
SoCal User Group Meeting 2013-05-06SoCal User Group Meeting 2013-05-06
SoCal User Group Meeting 2013-05-06
 
SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricing SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricing
 
SHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile PricingSHARE 2014, Pittsburgh IBM Mobile Pricing
SHARE 2014, Pittsburgh IBM Mobile Pricing
 
Pivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First LookPivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First Look
 
Integration Approach for MES
Integration Approach for MESIntegration Approach for MES
Integration Approach for MES
 
Net Services
Net ServicesNet Services
Net Services
 

More from Matt Leming

533-MigratingYourMQIApplicationsToJMS.pdf
533-MigratingYourMQIApplicationsToJMS.pdf533-MigratingYourMQIApplicationsToJMS.pdf
533-MigratingYourMQIApplicationsToJMS.pdfMatt Leming
 
IBM MQ Whats new - up to 9.3.4.pptx
IBM MQ Whats new - up to 9.3.4.pptxIBM MQ Whats new - up to 9.3.4.pptx
IBM MQ Whats new - up to 9.3.4.pptxMatt Leming
 
Going Deep with MQ
Going Deep with MQGoing Deep with MQ
Going Deep with MQMatt Leming
 
Connecting mq&amp;kafka
Connecting mq&amp;kafkaConnecting mq&amp;kafka
Connecting mq&amp;kafkaMatt Leming
 
What's New In MQ 9.2 on z/OS
What's New In MQ 9.2 on z/OSWhat's New In MQ 9.2 on z/OS
What's New In MQ 9.2 on z/OSMatt Leming
 
Building a resilient and scalable solution with IBM MQ on z/OS
Building a resilient and scalable solution with IBM MQ on z/OSBuilding a resilient and scalable solution with IBM MQ on z/OS
Building a resilient and scalable solution with IBM MQ on z/OSMatt Leming
 
Where is my MQ message on z/OS?
Where is my MQ message on z/OS?Where is my MQ message on z/OS?
Where is my MQ message on z/OS?Matt Leming
 
The enterprise differentiator of mq on zos
The enterprise differentiator of mq on zosThe enterprise differentiator of mq on zos
The enterprise differentiator of mq on zosMatt Leming
 
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...Matt Leming
 
HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen...
 HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen... HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen...
HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen...Matt Leming
 

More from Matt Leming (10)

533-MigratingYourMQIApplicationsToJMS.pdf
533-MigratingYourMQIApplicationsToJMS.pdf533-MigratingYourMQIApplicationsToJMS.pdf
533-MigratingYourMQIApplicationsToJMS.pdf
 
IBM MQ Whats new - up to 9.3.4.pptx
IBM MQ Whats new - up to 9.3.4.pptxIBM MQ Whats new - up to 9.3.4.pptx
IBM MQ Whats new - up to 9.3.4.pptx
 
Going Deep with MQ
Going Deep with MQGoing Deep with MQ
Going Deep with MQ
 
Connecting mq&amp;kafka
Connecting mq&amp;kafkaConnecting mq&amp;kafka
Connecting mq&amp;kafka
 
What's New In MQ 9.2 on z/OS
What's New In MQ 9.2 on z/OSWhat's New In MQ 9.2 on z/OS
What's New In MQ 9.2 on z/OS
 
Building a resilient and scalable solution with IBM MQ on z/OS
Building a resilient and scalable solution with IBM MQ on z/OSBuilding a resilient and scalable solution with IBM MQ on z/OS
Building a resilient and scalable solution with IBM MQ on z/OS
 
Where is my MQ message on z/OS?
Where is my MQ message on z/OS?Where is my MQ message on z/OS?
Where is my MQ message on z/OS?
 
The enterprise differentiator of mq on zos
The enterprise differentiator of mq on zosThe enterprise differentiator of mq on zos
The enterprise differentiator of mq on zos
 
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
 
HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen...
 HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen... HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen...
HHM-3540: The IBM MQ Light API: From Developer Laptop to Enterprise Data Cen...
 

Recently uploaded

BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Hr365.us smith
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Xen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfXen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfStefano Stabellini
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Velvetech LLC
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 

Recently uploaded (20)

Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Xen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfXen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdf
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 

MQ Support for z/OS Connect

  • 1. Capitalware's MQ Technical Conference v2.0.1.6 MQ Service Provider for z/OS Connect (And some other new stuff) Matt Leming – lemingma@uk.ibm.com MQ Development
  • 2. Capitalware's MQ Technical Conference v2.0.1.62 © 2016 IBM Corporation 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.
  • 3. Capitalware's MQ Technical Conference v2.0.1.63 © 2016 IBM Corporation Agenda  MQ Service Provider for z/OS Connect  What is z/OS Connect?  What is the MQ Service Provider?  What might it look like?  Other new stuff  JMS enhancements  Enhancements to sub-system connectivity
  • 4. Capitalware's MQ Technical Conference v2.0.1.6 What is z/OS Connect?
  • 5. Capitalware's MQ Technical Conference v2.0.1.65 © 2016 IBM Corporation It’s about getting REST and JSON into your mainframe environment in a way that enables you to best take advantage of the assets that exist there: Mobile / Cloud Ecosystem CICS IMS Batch DB2 REST – Representational State Transfer … the use of HTTP URLs that map to a ‘service’, such as ‘query account’ or ‘update data’ JSON – JavaScript Object Notation … a standard of representing data as a set of name/value pairs. This is passed back and forth along with REST request/responses Where z/OS Connect fits z/OS Connect Other z/OS Connect – what is it?  WebSphere Liberty Profile Server  Function IBM wrote to run in Liberty Profile
  • 6. Capitalware's MQ Technical Conference v2.0.1.66 © 2016 IBM Corporation  Original free version: z/OS Connect V1  Available since 2014  Provides  Basic REST/JSON support  A basic REST API for discovering and managing exposed services  Capable of performing data conversion from JSON to the data format required by the backend configured service  Optional authorization checking using SAF to allow or deny users access to z/OS Connect services  Optional activity recording using SMF to track requests by date and time, bytes sent and received, and response time Two versions!
  • 7. Capitalware's MQ Technical Conference v2.0.1.67 © 2016 IBM Corporation  z/OS Connect EE V2  Available since December 2015  Chargeable  Continuous delivery approach to enhancing product  Based on V1 with enhancements…  Enhancements over V1  More advanced REST functionality  Proper use of HTTP verb and URL to define API  API Editor  Define APIs, described using Swagger 2  Map API down onto underlying service – body, header and query parameters – pass-through, redaction and default values  Deploy APIs plus artefacts to runtime using single file (AAR – Api ARchive)  Consistent tooling and API definition for backend systems: CICS, IMS etc Two versions!
  • 8. Capitalware's MQ Technical Conference v2.0.1.68 © 2016 IBM Corporation z/OS Connect EE tooling
  • 9. Capitalware's MQ Technical Conference v2.0.1.69 © 2016 IBM Corporation Liberty Profile for z/OS z/OS Connect Servlet CICS IMS DB2 Interceptors Service Providers Data Transform 1 4 RESTful JSON 3 5 6 7 8 z/OS Connect is software function that runs in Liberty Profile for z/OS z/OS Connect is described and configured in the Liberty server.xml file z/OS Connect is designed to accept RESTful URIs with JSON data payloads A ‘Service Provider’ is software that provides the connectivity to the backend system server.xml 2 One part of z/OS Connect is a servlet that runs in Liberty Profile z/OS. z/OS Connect provides the ability to transform JSON to the layout required by backend ‘Interceptors’ are callout points where software can be invoked to do things such as SAF authorization and SMF activity recording Backend systems supported are CICS, IMS, Batch, and DB2 1 2 3 4 5 6 7 8 Batch Summary in one picture (z/OS Connect V1 shown)
  • 10. Capitalware's MQ Technical Conference v2.0.1.6 What is the MQ Service Provider?
  • 11. Capitalware's MQ Technical Conference v2.0.1.611 © 2016 IBM Corporation Statement of general direction  IBM intends that a future release of IBM MQ for z/OS will provide support for both z/OS Connect and z/OS Connect EE  https://ibm.biz/MQzOSConnectSOD
  • 12. Capitalware's MQ Technical Conference v2.0.1.612 © 2016 IBM Corporation The MQ Service Provider  Free of charge z/OS Connect service provider that allows existing services that are fronted by MQ to be accessed via a RESTful front end  Both V1 and EE supported  Same capabilities in both versions  Clients need have no knowledge of MQ
  • 13. Capitalware's MQ Technical Conference v2.0.1.613 © 2016 IBM Corporation Service types  Each URL in z/OS Connect maps to a service  With the MQ Service Provider there are two different types of service  Two way services  One way services  A two way service provides request/reply messaging: 1. Client issues HTTP POST with some payload (JSON) 2. MQ Service Provider sends payload (optional transformation) to one MQ queue 3. Back end application processes payload and puts response on reply queue 4. MQ Service Provider gets response (optional transformation) and sends it to client as the body of the HTTP POST response  A one way service exposes standard MQ verbs against a single destination  HTTP POST == MQPUT (queue and topic)  HTTP DELETE == MQGET (queue)  HTTP GET == MQGET (browse) (queue)  Allows more advanced interactions with MQ
  • 14. Capitalware's MQ Technical Conference v2.0.1.614 © 2016 IBM Corporation Two way example  HTTP POST to https://<hostname>:<port>/mq40  All MQ related information is held in mqzOSConnectService element  Sensible defaults  Overridable via HTTP headers, e.g. ibm-mq-gmo-waitInterval  Builds on the MQ messaging provider in Liberty. Uses JMS <zosConnectService id="zosconnMQ40" invokeURI="/mq40" serviceName="mq40" serviceRef="mq40" /> <mqzOSConnectService id="mq40" connectionFactory="jms/cf1" destination="jms/twoWayRequestQ" waitInterval="10000" replyDestination="jms/twoWayResponseQ"/> Provided by z/OS Connect server.xml Provided by MQ Service Provider
  • 15. Capitalware's MQ Technical Conference v2.0.1.615 © 2016 IBM Corporation Example two-way service  Insurance quote service which takes a request from an MQ queue and sends a response to another queue  COBOL request  COBOL response  So COBOL -> JSON conversion needed using built in tooling
  • 16. Capitalware's MQ Technical Conference v2.0.1.616 © 2016 IBM Corporation Example two-way service - configuration <zosConnectDataXform id="xformJSON2Byte" bindFileLoc="${XFORM_ROOT}/bindfiles" bindFileSuffix=".bnd" requestSchemaLoc="${XFORM_ROOT}/json" requestSchemaSuffix=".json" responseSchemaLoc="${XFORM_ROOT}/json" responseSchemaSuffix=".json" /> <zosConnectService id="zosconnIQ" invokeURI="/iq" serviceName=“iq" serviceRef=“iq" dataXformRef="xformJSON2Byte" /> <mqzOSConnectService id=“iq" connectionFactory="jms/cf1" destination="jms/iqRequestQ" waitInterval="10000" replySelection=“msgIDToCorrelID" replyDestination=“iqResponseQ" receiveTextCCSID="37" />
  • 17. Capitalware's MQ Technical Conference v2.0.1.617 © 2016 IBM Corporation Example two-way service – request
  • 18. Capitalware's MQ Technical Conference v2.0.1.618 © 2016 IBM Corporation Example two-way service – request on queue Message on queue MQ Service Provider waiting for response
  • 19. Capitalware's MQ Technical Conference v2.0.1.619 © 2016 IBM Corporation Example two-way service – response on queue
  • 20. Capitalware's MQ Technical Conference v2.0.1.620 © 2016 IBM Corporation Example two-way service – response
  • 21. Capitalware's MQ Technical Conference v2.0.1.621 © 2016 IBM Corporation Delivery plans  MQ Service Provider for z/OS Connect  Will be provided in USS component of a future version of MQ  Will be supported with MQ 8 and later queue managers  Will also be made available on Fix Central  In case you don’t have the latest version of MQ available  Only contains the MQ Service Provider function. You need to provide z/OS Connect (V1 or V2)  Code consists of a jar file, and a Liberty feature manifest
  • 22. Capitalware's MQ Technical Conference v2.0.1.622 © 2016 IBM Corporation Beta version available now  If you want to join the MQ beta then please let me know
  • 23. Capitalware's MQ Technical Conference v2.0.1.6 JMS Enhancements
  • 24. Capitalware's MQ Technical Conference v2.0.1.624 © 2016 IBM Corporation What is JMS and why do I want it?  Java Message Service  Standard API for interacting with messaging middleware such as MQ  Simple support for interacting with both queues and topics  Widely adopted and used throughout the industry  Most recent version is JMS 2  Released in 2013  Mainly focused on ease of use (new JMSContext API)  Backwards compatible  Some minor functionality added  Delivery delay being the most notable
  • 25. Capitalware's MQ Technical Conference v2.0.1.625 © 2016 IBM Corporation What Java support was there for MQ on z until recently?  JMS 1.* supported since MQ v5  JMS 2.0 support added in MQ v8  Supported on z/OS in  z/WAS, including Liberty  Batch  In CICS  MQ base classes for Java supported in OSGi JVM Server  MQ specific Java API  In IMS  No Java support with MQ at all
  • 26. Capitalware's MQ Technical Conference v2.0.1.626 © 2016 IBM Corporation What has been added?  Support for MQ JMS in CICS 5.3 and 5.2 OSGi environments  Works with MQ 7.1 and later  Depending on environment some APARs needed  Since 1Q 2015  Support for MQ JMS in IMS 13  Works with MQ 8 and later  Requires MQ APARs if using MQ 8  Since 4Q 2015  Support for MQ JMS in CICS 5.3 Liberty environments New!
  • 27. Capitalware's MQ Technical Conference v2.0.1.627 © 2016 IBM Corporation What is CICS Liberty JVM Server?  For a number of CICS release support has been provided for running Liberty inside the CICS address space  Only a subset of JEE capability supported  Integration provided with native CICS capabilities  In some cases slight adjustments to programming model/the way things work  CICS V5.3 +PI58375 changes things, two sorts of CICS Liberty introduced  Liberty Standard  Liberty Integrated  Liberty Standard: FULL Liberty support. No CICS integration  Perfect for ‘lift and shift’  Liberty Integrated: Same capability as provided before, subset of JEE integrated with CICS capabilities  Perfect when needing to integrate JEE with CICS transactions  Subset continuing to expand
  • 28. Capitalware's MQ Technical Conference v2.0.1.628 © 2016 IBM Corporation CICS Liberty JVM JMS MQ RA What does this mean with MQ?  Allow CICS Liberty to use MQ resource adapter  Just like normal Liberty  Run existing Liberty messaging apps (eg MDBs) inside CICS  Connections to MQ supported using either client or bindings mode  Some restrictions depending on environment  Prereqs CICS V5.3 +PI58375 + MQ 9.0.1 RA MSTR CHIN External MQ
  • 29. Capitalware's MQ Technical Conference v2.0.1.629 © 2016 IBM Corporation CICS Liberty JVM JMS MQ RA CICS Liberty Standard JMS Support  Bindings (RRS) and/or client (XA) connections supported  Bindings not allowed to CICS connected MQ MSTR CHIN External MQ Client Client Bindings
  • 30. Capitalware's MQ Technical Conference v2.0.1.630 © 2016 IBM Corporation CICS Liberty JVM JMS MQ RA CICS Liberty Integrated JMS Support  Client (XA) connections only MSTR CHIN External MQ Client Client
  • 31. Capitalware's MQ Technical Conference v2.0.1.631 © 2016 IBM Corporation Where can I find out more?  CICS  MQ 8 KC: https://ibm.biz/MQJMSinCICSOSGiKC8  MQ 7.1 KC: https://ibm.biz/MQJMSinCICSOSGiKC71  Blog articles:  http://ibm.biz/MQJMSinCICSOSGiBlog  http://ibm.biz/MQJMSinCICSOSGiJNDI  https://developer.ibm.com/cics/2016/07/12/java-ee-7-in-cics/  IMS  MQ 8 KC: https://ibm.biz/MQJMSinIMSKC  Blog article: https://ibm.biz/MQJMSinIMSBlog
  • 32. Capitalware's MQ Technical Conference v2.0.1.632 © 2016 IBM Corporation CICS Liberty JVM JMS MQ RA What is still to come?  Statement of direction: IBM intends to deliver additional Java EE 7 components and technologies for the CICS TS hosted WebSphere Liberty profile through continuous delivery of new features in the coming months. These additional components and technologies are intended to include support for Java EE 7 Web Profile features, support for JMS 2.0 with IBM MQ for z/OS, and the ability to LINK from a CICS TS COBOL program to a CICS TS hosted Liberty application  https://ibm.biz/MQCICSWLPSOD MSTR CHIN External MQ Bindings
  • 33. Capitalware's MQ Technical Conference v2.0.1.6 Enhanced sub-system connectivity
  • 34. Capitalware's MQ Technical Conference v2.0.1.634 © 2016 IBM Corporation MQ Explorer is now part of Aqua  https://developer.ibm.com/mainframe/products/downloads/
  • 35. Capitalware's MQ Technical Conference v2.0.1.635 © 2016 IBM Corporation CICS Adapter enhancements  New in CICS 5.4, currently in open beta
  • 36. Capitalware's MQ Technical Conference v2.0.1.636 © 2016 IBM Corporation What we have today  CICS CKQC transaction controls the MQCONN definition and CKTI transactions  E.g. “CKQC START” – start connection to MQ  Use the INITQNAME parameter on the MQCONN definition to automatically start a single instance of CKTI  In order to start more than one instance of the CKTI transaction the user enters  “CKQC STARTCKTI CSQ4SAMP.INITIATION.QUEUE”  At  A CICS terminal  An MVS console  Alternatively write an application program that links to program DFHMQSSQ  etc
  • 37. Capitalware's MQ Technical Conference v2.0.1.637 © 2016 IBM Corporation Problems with today’s environment  If the MQCONN is restarted all transactions accessing MQ queues are terminated  When the connection is re-established the transaction associated with the INITPARM parameter on the MQCONN is restarted automatically  Any user initiated CKTI transactions must be manually restarted  The userid associated with the new CKTI transaction is that of the user issuing the restart request not the original user  The default userid associated with the transaction retrieving the application message is now that of the user that issued the restart request.  Cannot stop the MQ Bridge transaction without stopping / restarting the MQ connection
  • 38. Capitalware's MQ Technical Conference v2.0.1.638 © 2016 IBM Corporation What is changing?  New MQMONITOR resource added  Allows an associated transaction which monitors/services an MQ queue to be started/restarted automatically when the connection to the queue manager is made  The transaction is automatically stopped when the queue manager is disconnected  Useful for  CICS trigger monitor/bridge transactions  Any other transaction that is dependant on MQ connectivity  An MQMONITOR resource is dynamically created if you specify the MQCONN INITQNAME attribute  So same approach used throughout
  • 39. Capitalware's MQ Technical Conference v2.0.1.639 © 2016 IBM Corporation Resource definition  Autostart: whether started automatically when connected to MQ  Transaction: monitoring transaction to start, defaults to CKTI  MONUserid: userid used to start the monitoring transaction  MONData: is arbitrary data that can be passed to the monitoring transaction  Userid: used by the monitoring transaction for any application transactions that it starts (e.g. when CKTI starts another transaction)
  • 40. Capitalware's MQ Technical Conference v2.0.1.640 © 2016 IBM Corporation MQMONITOR Autostart(YES) Transaction(CKTI) Qname(MY.INITQ) MONUserid(MATTL) Userid(PETES) MQMONITOR Autostart(YES) Transaction(CKTI) Qname(MY.INITQ) MONUserid(MATTL) Userid(PETES) A pictorial explanation! MQCONN MQMONITOR Autostart(YES) Transaction(CKTI) Qname(MY.INITQ) MONUserid(MATTL) Userid(PETES) CKTI MQ MY.INITQ MY.REALQ UTRN 1) Connects 2) Starts 3) EXEC CICS START TRANSID(CKTI) USERID(MATTL) 4) Get message 6) Get message 5) EXEC CICS START TRANSID(UTRN) USERID(PETES) The monitor transaction The application transaction
  • 41. Capitalware's MQ Technical Conference v2.0.1.642 © 2016 IBM Corporation CEMT SET MQCONN CONNECTED
  • 42. Capitalware's MQ Technical Conference v2.0.1.643 © 2016 IBM Corporation IMS MQ Connection  IMS V13 added Destination descriptor of type MQSERIES  Use on ALT IOPCB  Configure in OTMA descriptor in DFSYDTx IMS PROCLIB instead of coding DFSYPRX0 or DFSYDRU0 exits  TYPE=MQSERIES contains parms to set MQMD values such as  MQRTQ ReplyToQueue  MQMSGID  MQCORREL  MQPERST  MQFORMAT  APAR PI62339 (V13) PI64588 (V14) add MQSTR to allowable formats
  • 43. Capitalware's MQ Technical Conference v2.0.1.644 © 2016 IBM Corporation DB2 MQ Connection  DB2 Stored Procedure Address Spaces (SPAS) connect to MQ using RRS as a transaction coordinator  Each MQ operation uses a new RRS context  Each RRS context has a separate thread information anchored from ACE  ECSA footprint of ~2kB per thread  MQ introduced ACELIM ZPARM to limit the number of ACEs and so ECSA consumed  Initial implementation: ‘protect the LPAR’  Not MQ applications, which will get connection failures  PI48417 MQ V8, PI55066 MQ V7.1 substantially improve queue manager toleration and recovery when the limit is reached
  • 44. Capitalware's MQ Technical Conference v2.0.1.645 © 2016 IBM Corporation Summary  MQ Service Provider for z/OS Connect  What is z/OS Connect?  What is the MQ Service Provider?  What might it look like?  Other new stuff  JMS enhancements  Enhancements to sub-system connectivity
  • 45. Capitalware's MQ Technical Conference v2.0.1.646 © 2016 IBM Corporation Questions & Answers