ibm websphere mq: using the publish/subscribe messaging paradigm (impact 2014)

42
© 2014 IBM Corporation IBM WebSphere MQ ® 1869: Using the Publish/Subscribe messaging paradigm David Ware

Upload: david-ware

Post on 10-Sep-2014

333 views

Category:

Software


0 download

DESCRIPTION

Impact 2014, session 1869: IBM WebSphere MQ allows application programmers to use the publish/subscribe application model with ease. This session takes you through the fundamental publish/subscribe concepts and how they relate to WebSphere MQ. Covering aspects of system design, configuration and application programming. This session is essential for all users looking to adopt publish/subscribe with WebSphere MQ.

TRANSCRIPT

Page 1: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

© 2014 IBM Corporation

IBM WebSphere MQ®

1869: Using the Publish/Subscribe messaging paradigmDavid Ware

Page 2: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

2

Agenda

Publish/Subscribe in WebSphere MQ

Administration of publish/subscribe

Management of publish/subscribe

Subscriptions and publications

Topologies

Page 3: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

3

What is publish/subscribe?In words (Wikipedia® has the answer)…

“Publish–subscribe is a messaging pattern where senders of messages, called publishers, do not program the messages to be sent directly to specific receivers, called subscribers. Instead, published messages are characterized into classes*, without knowledge of what, if any, subscribers there may be. Similarly, subscribers express interest in one or more classes, and only receive messages that are of interest, without knowledge of what, if any, publishers there are.”

*Change “classes” to “topics” in MQ-speak and that’s a pretty good description.

Or pictures…SubscriberSubscriber

Subscriber

Subscriber

Publisher

Publisher

Publisher

Subscriber

Subscriber

Page 4: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

4

Publish/Subscribe, many patterns

Many-to-many

Many-to-few

Publishers Topics Subscribers

Few-to-manyTopic

Topic

Topic

Static or Dynamic?

Page 5: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

5

Publish/Subscribe inWebSphere MQ

Page 6: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

6

WebSphere MQ’s publish/subscribe over the years

WebSphere MQ Publish/Subscribe SupportPac MA0C

IBM Integration Bus® (formerly WebSphere Message Broker®)

WebSphere MQ

MQ V 5.1 MQ V 6 MQ V 7

Command message based publish/subscribe API

JMS publish/subscribe API

Native MQI publish/subscribe API

Publish/Subscribe brokers

WebSphere MQ Publish/Subscribe APIs

XMS publish/subscribe API

MQ V 8

Page 7: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

8

Publish/Subscribe since V7

Page 8: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

10

It’s all about the topic tree

Price

Fruit

Apples Oranges

Vegetables

Potatoes

Topic string

Topic node

/Price/Fruit/Apples /Price/Fruit/Oranges /Price/Vegetables/Potatoes

Page 9: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

12

Matching publications to subscriptions

Price

Fruit

Apples OrangesSubscription

/Price/Fruit/Oranges

•Subscriptions are attached to matching nodes in the topic tree

•Publications identify the relevant topic node

Publisher/Price/Fruit/Oranges

•A copy of the publication is delivered to the queue identified by each matching subscription

Subscription/Price/Fruit/Apples

Subscription/Price/Fruit/Oranges

Subscription

/Price/Fruit/#

•Wildcarding subscriptions at the topic node level can receive messages from multiple topic strings

Page 10: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

13

Designing your topic tree structure

Make it extendable, and understandable.

Avoid excessively wide or deep topic trees.• Use structure where appropriate.

• Limit it to subscribable content.

Avoid a rapidly changing setof topics.

Topic1 Topic2 Topic3 Topic4 Topic1000

Topic1 Topic2 Topic3 Topic3 Topic1000

This

is

my

first

topic

/This/is/my/first/topic /This/is/my/second/topic

second

topicTopic1Topic1

Topic2Topic2

Topic3Topic3Topic4

Topic4

Topic5Topic5

Topic6Topic6

Topic7Topic7

Topic8Topic8

Topic9Topic9

Topic10Topic10

Topic1Topic1

Topic2Topic2

Topic3Topic3Topic4

Topic4

Topic5Topic5

Topic6Topic6

Topic7Topic7

Topic8Topic8

Topic9Topic9

Topic10Topic10

Topic1Topic1

Topic2Topic2

Topic3Topic3Topic4

Topic4

Topic5Topic5

Topic6Topic6

Topic7Topic7

Topic8Topic8

Topic9Topic9

Topic10Topic10

Page 11: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

17

Publish/Subscribe configuration

Page 12: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

18

VEGTOPICSTR(‘/Price/Vegetables’)

FRUITTOPICSTR(‘/Price/Fruit’)

Topic Objects

Price

Fruit

Apples Oranges

Vegetables

Potatoes

SYSTEM.BASE.TOPICTOPICSTR(‘’)

You start with a base object defined for the ‘ ’ node … the rest are optional.

They provide hook points in the topic tree to configure specific pub/sub behaviour for a branch. A dynamically created topic node inherits its attributes from administered topic objects associated with topic nodes above it in the topic tree.

Topic objects are a point of administration associated with a node in the topic tree.

Page 13: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

20

FRUITPUB(ASPARENT)DEFPSIST(YES)

Topic object attributes

Fruit

Oranges

SYSTEM.BASE.TOPICPUB(ENABLED)DEFPSIST(NO)

Price

Many attributes can be set on them to effect a publisher or subscriber’s behaviour.

Dynamic nodes inherit their behaviour from nodes above.

Create a topic object for topic string ‘/Price/Fruit’

DEFINE TOPIC(FRUIT) TOPICSTR(‘/Price/Fruit’) DEFPSIST(YES)

Attributes default to inherit settings from above (e.g. ‘ASPARENT’).

Publish a message to topic string ‘/Price/Fruit/Oranges’

Are publications enabled?

What message persistence to use?

PUB = ?

PUB = ENABLED

PUB = ?

DEFPSIST = ?

DEFPSIST = YES

PublisherPUB = ?ENABLED

YES

Page 14: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

21

SYSTEM.BASE.TOPIC

FRUIT

Topic SecurityAccess control can be set for a defined topic object (not a topic string)

Authority checks on topic objects in the tree• Walk up the tree, just like attributes.

• Keep checking until an authorisation is found or we run out of topic tree.

Authority check on subscription’s destination queue

• Check is for PUT to that queue

Apples

Bob

Price

VEG

Jane

Vegetables

Subscription/Price/Fruit/Apples

Bob

Jane?

Jane?

Jane

Subscription/Price/Fruit/Apples

FruitBob?

Pick a suitable layer of the topic hierarchy and set access control at this point.

Think hard before adding additional access control at higher levels in the tree as this can cause confusion and grant very wide authorisations.

Page 15: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

23

Managing topics

Page 16: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

24

Managing topics

Displaying topic object definitions• This shows how the administered topic objects were configured

5724-H72 (C) Copyright IBM Corp. 1994, 2014.Starting MQSC for queue manager QMGR1. DISPLAY

DISPLAY TOPIC(*) 1 : DISPLAY TOPIC(*)AMQ8633: Display topic details. TOPIC(FRUIT) TYPE(LOCAL)AMQ8633: Display topic details. TOPIC(SYSTEM.BASE.TOPIC) TYPE(LOCAL)AMQ8633: Display topic details. TOPIC(SYSTEM.BROKER.ADMIN.STREAM) TYPE(LOCAL)AMQ8633: Display topic details. TOPIC(SYSTEM.BROKER.DEFAULT.STREAM) TYPE(LOCAL)AMQ8633: Display topic details. TOPIC(SYSTEM.BROKER.DEFAULT.SUBPOINT) TYPE(LOCAL)AMQ8633: Display topic details. TOPIC(SYSTEM.DEFAULT.TOPIC) TYPE(LOCAL)AMQ8633: Display topic details. TOPIC(VEG) TYPE(LOCAL)

DISPLAY TOPIC(FRUIT) 2 : DISPLAY TOPIC(FRUIT)AMQ8633: Display topic details. TOPIC(FRUIT) TYPE(LOCAL) TOPICSTR(/Price/Fruit) DESCR(Price of fruit) CLUSTER( ) CLROUTE(DIRECT) DURSUB(ASPARENT) PUB(ASPARENT) SUB(ASPARENT) DEFPSIST(YES) DEFPRTY(ASPARENT) DEFPRESP(ASPARENT) ALTDATE(2014-04-03) ALTTIME(08.44.48) PMSGDLV(ASPARENT) NPMSGDLV(ASPARENT) PUBSCOPE(ASPARENT) SUBSCOPE(ASPARENT) PROXYSUB(FIRSTUSE) WILDCARD(PASSTHRU) MDURMDL( ) MNDURMDL( ) MCAST(ASPARENT) COMMINFO( ) USEDLQ(ASPARENT) CUSTOM( )

Page 17: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

26

Managing topicsDisplaying the topic tree

• This shows how the nodes in the topic tree behave5724-H72 (C) Copyright IBM Corp. 1994, 2014.Starting MQSC for queue manager QMGR1. DISPLAY

DISPLAY PUBSUB ALL 1 : display PUBSUB allAMQ8723: Display pub/sub status details. QMNAME(QMGR1) TYPE(LOCAL) STATUS(ACTIVE) SUBCOUNT(5) TPCOUNT(11)

DISPLAY TPSTATUS(‘#’) TOPICSTR WHERE(SUBCOUNT GT 0) 22 : DISPLAY TPSTATUS('#') TOPICSTR where(SUBCOUNT GT 0)AMQ8754: Display topic status details. TOPICSTR(/Price/Vegetables/Potatoes) SUBCOUNT(1)AMQ8754: Display topic status details. TOPICSTR(/Price/Fruit/Oranges) SUBCOUNT(1)AMQ8754: Display topic status details. TOPICSTR(/Price/Fruit/Apples) SUBCOUNT(1)

DISPLAY TPSTATUS('/Price/Fruit/Apples') 23 : DISPLAY TPSTATUS('/Price/Fruit/Apples')AMQ8754: Display topic status details. TOPICSTR(/Price/Fruit/Apples) ADMIN( ) CLUSTER( ) COMMINFO(SYSTEM.DEFAULT.COMMINFO.MULTICAST) MDURMDL(SYSTEM.DURABLE.MODEL.QUEUE) MNDURMDL(SYSTEM.NDURABLE.MODEL.QUEUE) CLROUTE(NONE) DEFPSIST(YES) DEFPRTY(0) DEFPRESP(SYNC) DURSUB(YES) PUB(ENABLED) SUB(ENABLED) PMSGDLV(ALLDUR) NPMSGDLV(ALLAVAIL) RETAINED(NO) MCAST(DISABLED) PUBCOUNT(0) SUBCOUNT(1) PUBSCOPE(ALL) SUBSCOPE(ALL) USEDLQ(YES)

V8

Page 18: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

28

Subscriptions

Page 19: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

29

Subscription types

Subscription creation and deletion

Application created subscriptions• Applications use an API to dynamically create and delete subscriptions

Administratively created subscriptions• An administrator defines subscriptions that can be accessed by applications

• Applications can either use the publish/subscribe APIs to access these subscriptions or access their associated queue using point-to-point APIs.

Admin

Application

Page 20: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

31

Subscription types

Subscription lifetime

Durable subscriptions• The lifetime of the subscription is independent of any application

Non-durable subscriptions• The lifetime of the subscription is bounded by the creating application

– Subscriptions are automatically deleted when the application closes

Admin

Application

Durable Non-durable

Admin

Application

Page 21: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

33

Subscription typesSubscription queue management

A subscription maps a topic to a queue. The queue relationship is either explicit or implicit…

Managed subscription queue• The subscription automatically creates and deletes a queue for the use of queuing any matching publications.

Unmanaged subscription queue• When the subscription is created the name and location of an existing queue must be provided by you.

Admin

Application

Durable Non-durable

Admin

Application

Managed Unmanaged

Durable Non-durable Durable Non-durable

Admin

Application(MQI only) (MQI only)

Page 22: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

35

Managing subscriptionsDisplaying subscriptions

• This shows the subscriptions on a queue manager

5724-H72 (C) Copyright IBM Corp. 1994, 2014.Starting MQSC for queue manager QMGR1. DISPLAY

DISPLAY SUB(*) TOPICSTR 1 : DISPLAY SUB(*) TOPICSTRAMQ8096: WebSphere MQ subscription inquired. SUBID(414D5120514D4752312020202020202007183D5320002306) SUB(SUB1) TOPICSTR(/Price/Fruit/Apples)AMQ8096: WebSphere MQ subscription inquired. SUBID(414D5120514D4752312020202020202004183D5310000006) SUB(SYSTEM.DEFAULT.SUB) TOPICSTR()AMQ8096: WebSphere MQ subscription inquired. SUBID(414D5120514D4752312020202020202007183D5320002312) SUB(SUB3) TOPICSTR(/Price/Vegetables/Potatoes)SUBID(414D5120514D4752312020202020202007183D532000230C) SUB(SUB2) TOPICSTR(/Price/Fruit/Oranges)

DISPLAY SUB(SUB1) 2 : DISPLAY SUB(SUB1)AMQ8096: WebSphere MQ subscription inquired. SUBID(414D5120514D4752312020202020202007183D5320002306) SUB(SUB1) TOPICSTR(/Price/Fruit/Apples) TOPICOBJ( ) DEST(SYSTEM.MANAGED.DURABLE.533D180705230020) DESTQMGR(QMGR1) PUBAPPID( ) SELECTOR( ) SELTYPE(NONE) USERDATA( ) PUBACCT(16010515000000DEA960DF651724E4B97C192FE803000000000B) DESTCORL(414D5120514D4752312020202020202007183D5320002306) DESTCLAS(MANAGED) DURABLE(YES) EXPIRY(UNLIMITED) PSPROP(MSGPROP) PUBPRTY(ASPUB) REQONLY(NO) SUBSCOPE(ALL) SUBLEVEL(1) SUBTYPE(ADMIN) VARUSER(ANY) WSCHEMA(TOPIC) SUBUSER(xxxx) CRDATE(2014-04-03) CRTIME(09:19:15) ALTDATE(2014-04-03) ALTTIME(09:19:15)

DISPLAY SBSTATUS(SUB1) 3 : DISPLAY SBSTATUS(SUB1)AMQ8099: WebSphere MQ subscription status inquired. SUB(SUB1) SUBID(414D5120514D4752312020202020202007183D5320002306) SUBUSER(xxxx) RESMDATE(2014-04-03) RESMTIME(09:19:15) LMSGDATE( ) LMSGTIME( ) ACTCONN(000000000000000000000000000000000000000000000000) DURABLE(YES) MCASTREL( , ) NUMMSGS(0) SUBTYPE(ADMIN) TOPICSTR(/Price/Fruit/Apples)

DISPLAY QLOCAL(SYSTEM.MANAGED.DURABLE.533D180705230020)

Page 23: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

37

Publishing

Page 24: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

38

Publication, success or failure?

Point-to-point is nice and simple:• Did the message get onto the queue?• Was it persistent and transacted?

Publish/subscribe is not so clear cut:• Persistence and transactions still ensures integrity of publications.• But if one or more subscriptions can’t receive the publication, should the publish fail?

Should those subscriptions impact the others?What if the subscriptions are non-durable, or the publication is non-persistent?Controlled at the topic level

• Persistent Message Delivery (PMSGDLV) and Non-persistent Message Delivery (NPMSGDLV).

DLQ’ing a publication is still a success.• USEDLQ on the topic to fine tune this behaviour.

And finally, remember – when there are no subscriptions, no-one gets it. That’s still asuccessful publish!

Subscription/Price/Fruit/Oranges

Publisher/Price/Fruit/Oranges

Subscription/Price/Fruit/Oranges

Subscription/Price/Fruit/Oranges

Subscription/Price/Fruit/Oranges

V7.1

Page 25: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

40

Retained publications

When a message is published to a topic string, it is delivered to each matching subscription registered at that time.

Subscriptions created after that point will not receive the message,only newly published ones.

Unless publications are retained

Price

Fruit

Apples OrangesSubscription

/Price/Fruit/Oranges

Publisher/Price/Fruit/Oranges

Subscription/Price/Fruit/Oranges

Page 26: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

41

Retained publications

When a message is published to a topic string, it is delivered to each matching subscription registered at that time.

Subscriptions created after that point will not receive the messageonly newly published ones.

Unless publications are retained

Every time a message is published, the most recentpublication for each topic string is retained by thequeue manager.

When a new subscription is create, anymatching retained message is delivered to it.

Take care

Price

Fruit

Apples OrangesSubscription

/Price/Fruit/Oranges

Publisher/Price/Fruit/Oranges

Subscription/Price/Fruit/Oranges

Page 27: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

43

Topologies

Page 28: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

44

Distributed queuing

We all know how point-to-point works…

QMgr

Put Get

Page 29: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

45

QMgrQMgrQMgr

GetGetPut

Distributed queuing

We all know how point-to-point works

Even across multiple queue managers…

Page 30: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

46

QMgrQMgr

GetGet

QMgr

Put

Distributed queuing

We all know how point-to-point works

Even across multiple queue managers

Page 31: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

47

QMgr

Distributed publish/subscribe

QMgr

Topics

SubscriptionPublisher

Subscription

Subscription

And we know how everything revolves around thetopic tree, dynamically built up in a queue manager

Subscription

Page 32: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

48

QMgr

Topics

Subscription

Subscription

QMgrQMgr

Topics

Subscription

SubscriptionQMgrQMgr

Topics

Publisher

QMgrQMgr

Topics

SubscriptionPublisher

Subscription

Subscription

Distributed publish/subscribe

And we know how everything revolves around thetopic tree, dynamically built up in a queue managerQueue managers can work together to share theirtopic tree knowledge between them

Page 33: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

49

QMgrQMgr

Topics

Publisher

QMgrQMgr

Topics

Subscription

QMgrQMgr

Topics

Subscription

Subscription

Distributed publish/subscribe

And we know how everything revolves around thetopic tree, dynamically built up in a queue managerQueue managers can work together to share theirtopic tree knowledge between themEnabling publications to be propagated tosubscriptions on different queue managers

The applications stay the same, the changesare at the configuration level.

Subscription

Page 34: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

50

Distributed publish/subscribe topologies

Publish/subscribe topologies can either be created as a defined hierarchy or more dynamically as a cluster

Subscription

Publisher

Subscription

Subscription

Publisher

Subscription

Subscription

Subscription

Page 35: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

51

Distributed publish/subscribe topologies

A hierarchy manually defines the relationship between each queue manager.

Messages are flowed via those relationships.

Subscription

Publisher

Subscription

Subscription

Publisher

Subscription

Subscription

Subscription

Page 36: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

52

Distributed publish/subscribe topologies

Subscription

Publisher

Subscription

Subscription

A hierarchy manually defines the relationship between each queue manager.

Messages are flowed via those relationships.

Page 37: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

54

Distributed publish/subscribe topologiesA cluster can be used for publish/subscribe through simple configuration.Any queue manager can publish and subscribe to topics

Published messages can go direct between queue managers

Publisher

Subscription

Subscription

Subscription

Publisher

Subscription

Subscription

Subscription

Or be routed via specific queue managersV8

Come to session 1870 for more on topologies…

Page 38: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

56

Questions?

Thank you

Page 39: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

57

Monday Tuesday Wednesday Thursday

09:00

1868: IBM WS MQ: Disaster Recovery

1870: IBM WS MQ: Using Pub/Sub in an MQ Network

1924: Roundtable: IBM WS MQ Light in a IBM WS MQ Infrastructure

10:30

1880: Secure Messages with IBM WS MQ Advanced Message Security

1866: Introduction to IBM Messaging Capabilities

2640: MQ Telemetry Transport (MQTT) Details

3134: Meet the Experts: IBM MessageSight

1924: Roundtable: IBM WS MQ Light in a IBM WS MQ Infrastructure

1896: How to Develop Responsive Applications with IBM WS MQ Light

1885: IBM WS MQ on z/OS & Distributed Platforms - Are They Like Oil & Water

1917: Hands-on Lab: Developing a First Application with IBM WS MQ Light

1294: Enable Active-Active Business Through Enterprise High-availability Messaging Technology

1873: IBM WS MQ Security: Latest Features Deep Dive

12:00

LUNCH LUNCH LUNCH LUNCH

3420: Managing What Needs to Be Managed - It Shouldn’t Matter Where It Is

13:00

1227: How Not to Run a Certificate Management Center of Excellence

1869: IBM WS MQ: Using the Publish Subscribe Messaging Paradigm

1863: What's New in IBM Messaging

1872: IBM WS MQ: Managing Workloads, Scaling & Availability with MQ Clusters

1879: Using IBM WS MQ in Managed File Transfer Environments

1922: Roundtable: IBM Messaging Feedback

1883: Where Is the Message - Analyze IBM WS MQ Recovery Logs, Trace Routes, & Look In Applications

14:15

1800: IBM WS MQ for z/OS & CICS: Workload Balancing in a Plexed World

1863: What's New in IBM Messaging

1924: Roundtable: IBM WS MQ Light in a IBM WS MQ Infrastructure

1876: IBM WS MQ for z/OS: Latest Features Deep Dive

1229: The IBM WS MQ Toolbox: 20 Scripts, One-liners, & Utilities for UNIX & Windows

1804: Mean Time to Innocence: IBM WS MQ Problem Determination

16:00

1877: IBM WS MQ for z/OS: Performance & Accounting

1894: What Is IBM WS MQ Light & Why It Matters

15:45 1882: Building a Scalable & Continuously Avail-able IBM WS MQ Infrastructure with Travelport

1720: Building a Managed File Transfer Service at ADP

1897: Messaging in the Cloud with IBM WS MQ Light & IBM BlueMix

19

16: H

and

s-on L

ab

: IBM

WS

MQ

3133: Meet the Experts: IBM Messaging

1874: IBM WS MQ: Performance & Internals Deep Dive (Not zOS)

1866: Introduction to IBM Messaging Capabilities

2454: Using IBMs Managed File Transfer Portfolio to Maximize Data Effectiveness

17:15

1881: Using IBM WS MQ with IBM WAS & Liberty Profile

1873: IBM WS MQ Security: Latest Features Deep Dive

17:00 1878: IBM WS MQ for zOS: Shared Queues

1922: Roundtable: IBM Messaging Feedback

1867: IBM WS MQ: High Availability

1922: Roundtable: IBM Messaging Feedback

2646: Discover the Value IBM Software Delivers On Top of Open Source

Page 40: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

58

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

58

Page 41: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

© 2014 IBM Corporation

Thank You

Page 42: IBM WebSphere MQ: Using the Publish/Subscribe messaging paradigm (Impact 2014)

60

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.

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