SlideShare ist ein Scribd-Unternehmen logo
1 von 42
Downloaden Sie, um offline zu lesen
© 2014 IBM Corporation
1896 - How to Develop Responsive
Applications with IBM MQ Light (beta)
Matthew Whitehead
WebSphere MQ Development
© Copyright IBM 2014
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.
© Copyright IBM 2014
• IBM and the IBM logo are trademarks of International Business Machines Corporation,
registered in many jurisdictions. Other marks may be trademarks or registered trademarks
of their respective owners.
• Microsoft, Windows, Windows NT, and the Windows logo are trademarks of Microsoft
Corporation in the United States, other countries, or both.
• Java and all Java-based trademarks and logos are trademarks or registered trademarks of
Oracle and/or its affiliates.
• Other company, product and service names may be trademarks, registered marks or service
marks of their respective owners.
• References in this publication to IBM products and services do not imply that IBM intends to
make them available in all countries in which IBM operates.
Trademark Statement
© 2014 IBM Corporation
Agenda
- Introduction & Background
- Use-case and features
- A new messaging API
- Deploying apps & IBM BlueMix
- Demo
© Copyright IBM 2014
IBM Messaging Focus Areas
Deliver Messaging Backbone for Enterprise
Focus on traditional MQ values, rock-solid enterprise-class
service, ease-of-operation, breadth of platform coverage,
availability, z/OS exploitation
Capture Big Data from Mobile and Internet of
Things
Focus on Internet-scale events, m2m device enablement,
zero-admin, security and privacy, feed into real-time
analytics, location-based notifications
Enable Developers to build more scalable,
responsive applications
Focus on new app dev use cases, breadth of languages, ease-of-
deployment, lightweight services, integration with developer
frameworks
© Copyright IBM 2014
What is “Application Messaging”?
Jon
IT mgmt
Must use
approved IT
services
Share,
re-use and
save!
Demand for
Infrastructure
services
Andy
Developer
Iain
Infrastructure
Guy
Beth
Business
Sponsor
Reduced pull
for servicesAndy
Developer
Iain
Infrastructure
Guy
What handy tools
can I grab?
6
Organisations
moving in this
direction
© Copyright IBM 2014
The journey that got us here…
7
Ruby
Node.js
Python
C
C++
Java
C#
Perl
Go
Clojure
Lua
Erlang Scala
PHP
© Copyright IBM 2014
What is 'Andy' the developer like?
Driven to produce applications that can be field tested
in the minimum time possible
Discovers technology that are prevalent in his
communities
Uses the best tool for the job
Intolerant of process / company mandates / imposed technology
that do not obviously and immediately benefit his application
8
© Copyright IBM 2014
Some more background
WebSphere MQ is a fully featured
messaging product that caters for even the
most advanced messaging topologies
It has support for a wide array of
languages, platforms, architectures,
qualities of service, topology types, high
availability configurations, workload
balancing etc...
However, while administrators tend to be
well skilled in MQ technologies, application
developers tend not to be.
Architects are being asked to do more with
less
These are just some of the graphics
from the Intro to MQ presentation
Application developers have less
time to learn the MQ product
thoroughly
© Copyright IBM 2014
What is MQ Light (beta)?
1. A new messaging API
1. A messaging runtime for on-premise development
and deployment
1. A PaaS messaging runtime for admin-free cloud
deployment (Elastic MQ service)
More on all of these throughout the slides...
© 2014 IBM Corporation
Agenda
- Introduction & Background
- Use-case and features
- A new messaging API
- Deploying apps & IBM BlueMix
- Demo
© Copyright IBM 2014
A Typical Developer's Use-Case
I want to execute code without taxing my Web app processes
Web Applications WorkersMessage
Queues
© Copyright IBM 2014
Application Messaging Features
Our new messaging offering will focus on
the developer...
•A simple API
•Developer-oriented download &
install process
•Web based tooling
•Open-source technologies
•Easy to deploy apps to a PaaS
environment
e.g. client.connect()
client.send()
client.subscribe()
client.unsubscribe()
© Copyright IBM 2014
Developer oriented download & install
We're addressing the inhibitors to developer approval

Removing the sign-in step from the download process

Removing the need to run an installer,
allowing the product to be unzipped to
any location

Ensuring we don't require intrusive OS changes, e.g.
altering the registry, setting up users

Developer-centric platform support (see next slide)

Providing a more developer-centric look & feel
to the download site and support pages
© Copyright IBM 2014
Appropriate Platform Support
Developer-centric rather than enterprise-centric platforms
– The beta currently has support for:
• Microsoft® Windows® 7
• RedHat Enterprise Linux 6 64-bit
– We recognise the importance of platforms and we'll be looking at
support for them during the beta, such as:
• Ubuntu
• Mac OS X
• Suse Linux
z/OS, IBM i, Solaris®, AIX or HP-UX® are not our target platforms
© 2014 IBM Corporation
Agenda
- Introduction & Background
- Use-case and features
- A new messaging API
- Deploying apps & IBM BlueMix
- Demo
© Copyright IBM 2014
Simple API
Better suited to rapid application development
Basic administration built into the API
• Creating endpoints, configuring connectivity to existing systems etc.
Based on AMQP 1.0
• Open protocol to encourage community development
• Intention is to open-source the clients (statement of direction)
• Language-specific libraries will be provided so the developer doesn't code directly to
the AMQP spec
• Node.js currently available in the MQ Light alpha available online
Designed to fit in with what developers are used to
• How quickly and easily can client libraries be added to your runtime of choice?
• Libraries available via appropriate repositories e.g. npm install mqlight
© Copyright IBM 2014
Current ideas for API features
●
Message content
●
Text and Binary message types
●
Message properties
●
Message delivery
●
TTL on messages
●
TTL on destinations
●
Delivery delay
●
Read-ahead buffer
●
Require-subscriber (fail publish if no subscribers)
●
Quality of service
●
At most once message delivery
●
At least once message delivery
●
Acknowledgement of messages in client or application
(Bold = available in beta today, otherwise ideas for future beta updates)
© Copyright IBM 2014
Node.js API design
● Uses callbacks on most API functions, e.g.
client.connect(function(err) {
If (err) {
console.log(“Connection failed!”);
}
});
● State-change callbacks
client.on('connected', function() {
console.log("Connection made”);
console.log("About to published our first message...”);
…
});
●
No plans to use Promises in the API
●
Better suited to callbacks which are only called once
© Copyright IBM 2014
Node.js API design
●
Whatever object is passed into the send is received by the subscriber
client.send(topic, “Hello World”); // Receiver gets a string
client.send(topic, new Buffer([12,32]); // Receiver gets a buffer
client.send(topic, {color:'red',size:'10'}); // Receiver gets JSON
● Many function parameters optional
// Simple publish
client.send(“sports/football”, “Arsenal 1, ManU 0”);
// Publish with some options
client.send(“sports/football”, “Arsenal 1, ManU 0”,
{deliveryDelay:1000, ttl:100});
// Publish with options and a callback
client.send(“sports/football”, “Arsenal 1, ManU 0”,
{deliveryDelay:1000, ttl:100},
function(err) { // Handle failed send });
© Copyright IBM 2014
MQ Light Messaging Model – Send Messages
Applications send messages to a topic.
A topic is an address in the topic space
either flat or arranged hierarchically.
1. Send (‘/test/a’, “Hello”);
2. Send (‘/test/a’, “World!”);
Topic Address Space
Sender application
© Copyright IBM 2014
MQ Light Messaging Model – Simple Receive
•
Applications receive messages by creating a destination with a pattern
which matches the topics they are interested in.
•
Pattern matching scheme based on WMQ.
1. Send (‘/test/a’, “Hello”);
2. Send (‘/test/a’, “World!”);
1. Hello
2. World!
Topic Address Space
Sender application
DESTINATION
Pattern=/test/a
© Copyright IBM 2014
MQ Light Messaging Model – Pub/Sub
•
Multiple destinations can be created which match the same topic
•
Pub/Sub style.
DESTINATION
1. Send (‘/test/a’, “Hello”);
2. Send (‘/test/a’, “World!”);
1. Hello
2. World!
1. Hello
2. World!
Topic Address Space
Sender application
DESTINATION
Pattern=/test/a
Pattern=/test/#
Client 1
Client 2
© Copyright IBM 2014
MQ Light Messaging Model – Persistent destinations
•
Destinations persist for a defined “time to live” after receiver detaches.
1. Send (‘/test/a’, “Hello”);
2. Send (‘/test/a’, “World!”);
Topic Address Space
Sender application
Hello
World!
DESTINATION
Pattern=/test/a
Disconnected client
© Copyright IBM 2014
MQ Light Messaging Model – Sharing
•
Clients attaching to the same topic pattern and share name attach to
the same shared destination.
DESTINATION1. Send (‘/test/a’, “Hello”);
2. Send (‘/test/a’, “World!”);
1. Hello
2. World!
1. Hello
2. World!
SHARING
Topic Address Space
Sender application
DESTINATION
Pattern=/test/#
Pattern=/test/#
Share=myshare
Client 1
Client 2
Client 3
© Copyright IBM 2014
MQ Light Messaging Model – Client takeover
1. Send (‘/test/a’, “Hello”);
Hello
Topic Address Space
Sender application
DESTINATION
Pattern=/test/#
Client 1
World!
Client 1
2. Send (‘/test/a’, “World!”);
•
Applications connect to MQ Light service specify (optional) client ID.
•
Re-using the same client ID pre-empts the original connection.
•
Ideal for worker takeover in the cloud.
© 2014 IBM Corporation
Agenda
- Introduction & Background
- Use-case and features
- A new messaging API
- Deploying apps & IBM BlueMix
- Demo
© Copyright IBM 2014
Application Messaging Deployment Options
MQ Light Runtime
(beta)
On-premise application messaging
Deploys
IBM WebSphere MQ
Enterprise messaging
(statement of direction)
Deploys
Deploys
IBM MQ Light Development Kit
(beta)
Tooling for developer platforms
Write apps in node.js
Elastic MQ in
IBM BlueMix
(beta)
Public cloud messaging
© Copyright IBM 2014
Application Messaging Deployment Options
MQ Light Runtime
(beta)
On-premise application messaging
Deploys
IBM WebSphere MQ
Enterprise messaging
(Statement of direction)
Deploys
Deploys
IBM MQ Light Development Kit
(beta)
Tooling for developer platforms
Write apps in node.js
Elastic MQ in
IBM BlueMix
(beta)
Public cloud messaging
© Copyright IBM 2014
IBM MQ Light – for on-premise deployment
Some developers will like the new APIs but won't want to deploy to a PaaS
– Small line-of-business projects, e.g. queueing up builds
– No mission critical features
• No HA
• No horizontal scaling
MQ Light will probably be available to license as the production runtime for
messaging applications
– Specific licensing plan not yet finalised
– Looking at licensing models that work for development teams
Fully compatible with the IBM Elastic MQ service in BlueMix
– Easy to migrate applications to a PaaS at a later point
© Copyright IBM 2014
Application Messaging Deployment Options
IBM MQ Light Development Kit
(beta)
Tooling for developer platforms
Write apps in node.js
MQ Light Runtime
(beta)
On-premise application messaging
Deploys
IBM WebSphere MQ
Enterprise messaging
(statement of direction)
Deploys
Deploys
Elastic MQ in
IBM BlueMix
(beta)
Public cloud messaging
© Copyright IBM 2014
IBM Elastic MQ service - Messaging in a PaaS
MQ currently offers cloud deployment options in a couple of
flavours
– IBM Messaging Extension for Web Application Pattern (IBM PureApp, IBM WD)
– WebSphere MQ Hypervisor Edition for AIX/RHEL
We also have a beta version of Elastic MQ running in the IBM
BlueMix PaaS
– Admin-free experience
– MQ environment automatically provisioned for each user when they request an
instance of it
– Applications are linked or 'bound' to the provisioned environment automatically
when they are deployed to BlueMix
– The MQ Light team are working with BlueMix to offer a seamless development-to-
production experience.
– Not a full MQ experience in the cloud
© Copyright IBM 2014
How does MQ Light fit in PaaS development?
The intention is for MQ Light to provide a (probably free) development environment for
applications that will deploy against IBM Elastic MQ in BlueMix
Gives the developer 2 choices for development:
1. Develop directly in BlueMix. As you make changes to
your code you push the new version straight to BlueMix
and check your changes are OK
2. Develop on your laptop using MQ Light. Once you're
90% complete, start pushing your app to BlueMix to try
it out in the cloud and iron out any remaining bugs.
MQ Light offers an offline development environment
– Provides a development version of the messaging service that will be offered in the cloud
– Makes offline application development possible when connectivity to the cloud is not available
– Comparatively small download & install footprint to get you started quickly & easily
© Copyright IBM 2014
Download & Install Experience
www.ibmdw.net/messaging/mq-light/
© Copyright IBM 2014
Web Based Tooling
© Copyright IBM 2014
Try it all out for yourselves!
MQ Light beta is available to try out now at
https://www.ibmdw.net/messaging/mq-light/ or Google “IBM MQ Light”
Elastic MQ is available in IBM BlueMix beta today at
https://ace.ng.bluemix.net/ or Google “IBM BlueMix”
© Copyright IBM 2014
Try out MQ Light and join the
discussions on our forum
www.ibmdw.net/messaging/mq-light/
We want your feedback on what we're doing
Related Sessions
AMC1897 : Messaging in the Cloud with Elastic MQ, MQ Light & Bluemix
Today 3:45pm – 4:45pm Delfino 4005
AMC1924 : Roundtables; MQ Light in IBM MQ Infrastructures
Wednesday 2:15pm – 3:15pm Zeno 4701
Thusday 9:00am – 10:00am Zeno 4701
AMC1917 : Hands-on Lab: MQ Light & Elastic MQ
Wednesday 10:30am – 11:30am Murano 3305
Questions?
© Copyright IBM 2014
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
40
Thank You
© Copyright IBM 2014
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.

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message BrokerIntroduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message BrokerAnt Phillips
 
Mobile Patterns with WebSphere Message Broker
Mobile Patterns with WebSphere Message BrokerMobile Patterns with WebSphere Message Broker
Mobile Patterns with WebSphere Message BrokerAnt Phillips
 
WebSphere sMash June Product Review
WebSphere sMash June Product ReviewWebSphere sMash June Product Review
WebSphere sMash June Product ReviewProject Zero
 
News to Development Environments and for RDz for z/VSE
News to Development Environments and for RDz for z/VSENews to Development Environments and for RDz for z/VSE
News to Development Environments and for RDz for z/VSEIBM
 
Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009Pedab
 
Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009Pedab
 
Lotus® Symphony™ 3: One Million Reasons to Give it a try
Lotus® Symphony™ 3: One Million Reasons to Give it a tryLotus® Symphony™ 3: One Million Reasons to Give it a try
Lotus® Symphony™ 3: One Million Reasons to Give it a tryDon Harbison
 
Ibm i-modernization
Ibm i-modernizationIbm i-modernization
Ibm i-modernizationTom Presotto
 
3425 - Using publish/subscribe to integrate applications
3425 - Using publish/subscribe to integrate applications3425 - Using publish/subscribe to integrate applications
3425 - Using publish/subscribe to integrate applicationsTimothy McCormick
 
IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...
IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...
IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...Robert Nicholson
 
02 ibm navigator 4 q14 arch and sys topology pit
02 ibm navigator 4 q14 arch and sys topology pit02 ibm navigator 4 q14 arch and sys topology pit
02 ibm navigator 4 q14 arch and sys topology pitEswar Eluri
 
IBM Z for the Digital Enterprise 2018 - Automate Delivery Pipeline
IBM Z for the Digital Enterprise 2018 - Automate Delivery PipelineIBM Z for the Digital Enterprise 2018 - Automate Delivery Pipeline
IBM Z for the Digital Enterprise 2018 - Automate Delivery PipelineDevOps for Enterprise Systems
 

Was ist angesagt? (12)

Introduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message BrokerIntroduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message Broker
 
Mobile Patterns with WebSphere Message Broker
Mobile Patterns with WebSphere Message BrokerMobile Patterns with WebSphere Message Broker
Mobile Patterns with WebSphere Message Broker
 
WebSphere sMash June Product Review
WebSphere sMash June Product ReviewWebSphere sMash June Product Review
WebSphere sMash June Product Review
 
News to Development Environments and for RDz for z/VSE
News to Development Environments and for RDz for z/VSENews to Development Environments and for RDz for z/VSE
News to Development Environments and for RDz for z/VSE
 
Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009
 
Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009Skills Navigation Guide 06 19 2009
Skills Navigation Guide 06 19 2009
 
Lotus® Symphony™ 3: One Million Reasons to Give it a try
Lotus® Symphony™ 3: One Million Reasons to Give it a tryLotus® Symphony™ 3: One Million Reasons to Give it a try
Lotus® Symphony™ 3: One Million Reasons to Give it a try
 
Ibm i-modernization
Ibm i-modernizationIbm i-modernization
Ibm i-modernization
 
3425 - Using publish/subscribe to integrate applications
3425 - Using publish/subscribe to integrate applications3425 - Using publish/subscribe to integrate applications
3425 - Using publish/subscribe to integrate applications
 
IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...
IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...
IBM IMPACT 2009 Conference Session 2024 - WebSphere sMash Integration, PHP wi...
 
02 ibm navigator 4 q14 arch and sys topology pit
02 ibm navigator 4 q14 arch and sys topology pit02 ibm navigator 4 q14 arch and sys topology pit
02 ibm navigator 4 q14 arch and sys topology pit
 
IBM Z for the Digital Enterprise 2018 - Automate Delivery Pipeline
IBM Z for the Digital Enterprise 2018 - Automate Delivery PipelineIBM Z for the Digital Enterprise 2018 - Automate Delivery Pipeline
IBM Z for the Digital Enterprise 2018 - Automate Delivery Pipeline
 

Ähnlich wie How to develop responsive applications with ibm web sphere mq light

IBM MQ Light @ Capitalware's MQTC 2.0.1.4 conference
IBM MQ Light @ Capitalware's MQTC 2.0.1.4 conferenceIBM MQ Light @ Capitalware's MQTC 2.0.1.4 conference
IBM MQ Light @ Capitalware's MQTC 2.0.1.4 conferencematthew1001
 
News from hursley jens diedrichsen - may 2014
News from hursley   jens diedrichsen - may 2014 News from hursley   jens diedrichsen - may 2014
News from hursley jens diedrichsen - may 2014 Jens Diedrichsen
 
IBM MQ Light Service for Bluemix
IBM MQ Light Service for BluemixIBM MQ Light Service for Bluemix
IBM MQ Light Service for BluemixIBM Systems UKI
 
Mq light, mq, and bluemix web sphere user group july 2015
Mq light, mq, and bluemix   web sphere user group july 2015Mq light, mq, and bluemix   web sphere user group july 2015
Mq light, mq, and bluemix web sphere user group july 2015matthew1001
 
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...Romeo Kienzler
 
Mq light For Guide Share Europe 2014
Mq light For Guide Share Europe 2014Mq light For Guide Share Europe 2014
Mq light For Guide Share Europe 2014Robert Nicholson
 
100 blue mix days technical training
100 blue mix days technical training100 blue mix days technical training
100 blue mix days technical trainingAjit Yohannan
 
IBM Softlayer Bluemix Marketplace
IBM Softlayer Bluemix MarketplaceIBM Softlayer Bluemix Marketplace
IBM Softlayer Bluemix MarketplaceSimon Baker
 
Eclipse tools for deployment to was liberty profile in Bluemix
Eclipse tools for deployment to was liberty profile in BluemixEclipse tools for deployment to was liberty profile in Bluemix
Eclipse tools for deployment to was liberty profile in BluemixEclipse Day India
 
Compose Your Digital Enterprise
Compose Your Digital EnterpriseCompose Your Digital Enterprise
Compose Your Digital EnterpriseProlifics
 
Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...
Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...
Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...Robert Nicholson
 
What's New in Smarter Process and C&I
What's New in Smarter Process and C&IWhat's New in Smarter Process and C&I
What's New in Smarter Process and C&IProlifics
 
DFW BlueMix Meetup - demo and slides
DFW BlueMix Meetup - demo and slidesDFW BlueMix Meetup - demo and slides
DFW BlueMix Meetup - demo and slideschuckdey
 
Introducing MQ Light - IBM Interconnect 2015 session AME4181
Introducing MQ Light - IBM Interconnect 2015 session AME4181Introducing MQ Light - IBM Interconnect 2015 session AME4181
Introducing MQ Light - IBM Interconnect 2015 session AME4181Robert Nicholson
 
Cloud Native Patterns with Bluemix Developer Console
Cloud Native Patterns with Bluemix Developer ConsoleCloud Native Patterns with Bluemix Developer Console
Cloud Native Patterns with Bluemix Developer ConsoleMatthew Perrins
 
Revolutionize the API Economy with IBM WebSphere Connect
Revolutionize the API Economy with IBM WebSphere ConnectRevolutionize the API Economy with IBM WebSphere Connect
Revolutionize the API Economy with IBM WebSphere ConnectArthur De Magalhaes
 
Paris Meetup Bluemix du 15/10/2104
Paris Meetup Bluemix du 15/10/2104Paris Meetup Bluemix du 15/10/2104
Paris Meetup Bluemix du 15/10/2104IBM France Lab
 
Running and Supporting MQ Light Applications
Running and Supporting MQ Light ApplicationsRunning and Supporting MQ Light Applications
Running and Supporting MQ Light Applicationsmatthew1001
 
Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015
Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015
Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015Yakura Coffee
 

Ähnlich wie How to develop responsive applications with ibm web sphere mq light (20)

IBM MQ Light @ Capitalware's MQTC 2.0.1.4 conference
IBM MQ Light @ Capitalware's MQTC 2.0.1.4 conferenceIBM MQ Light @ Capitalware's MQTC 2.0.1.4 conference
IBM MQ Light @ Capitalware's MQTC 2.0.1.4 conference
 
News from hursley jens diedrichsen - may 2014
News from hursley   jens diedrichsen - may 2014 News from hursley   jens diedrichsen - may 2014
News from hursley jens diedrichsen - may 2014
 
IBM MQ Light Service for Bluemix
IBM MQ Light Service for BluemixIBM MQ Light Service for Bluemix
IBM MQ Light Service for Bluemix
 
Mq light, mq, and bluemix web sphere user group july 2015
Mq light, mq, and bluemix   web sphere user group july 2015Mq light, mq, and bluemix   web sphere user group july 2015
Mq light, mq, and bluemix web sphere user group july 2015
 
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
 
1812 icap-v1.3 0430
1812 icap-v1.3 04301812 icap-v1.3 0430
1812 icap-v1.3 0430
 
Mq light For Guide Share Europe 2014
Mq light For Guide Share Europe 2014Mq light For Guide Share Europe 2014
Mq light For Guide Share Europe 2014
 
100 blue mix days technical training
100 blue mix days technical training100 blue mix days technical training
100 blue mix days technical training
 
IBM Softlayer Bluemix Marketplace
IBM Softlayer Bluemix MarketplaceIBM Softlayer Bluemix Marketplace
IBM Softlayer Bluemix Marketplace
 
Eclipse tools for deployment to was liberty profile in Bluemix
Eclipse tools for deployment to was liberty profile in BluemixEclipse tools for deployment to was liberty profile in Bluemix
Eclipse tools for deployment to was liberty profile in Bluemix
 
Compose Your Digital Enterprise
Compose Your Digital EnterpriseCompose Your Digital Enterprise
Compose Your Digital Enterprise
 
Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...
Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...
Session 1897 messaging in the cloud with elastic mq mq light and bluemix-impa...
 
What's New in Smarter Process and C&I
What's New in Smarter Process and C&IWhat's New in Smarter Process and C&I
What's New in Smarter Process and C&I
 
DFW BlueMix Meetup - demo and slides
DFW BlueMix Meetup - demo and slidesDFW BlueMix Meetup - demo and slides
DFW BlueMix Meetup - demo and slides
 
Introducing MQ Light - IBM Interconnect 2015 session AME4181
Introducing MQ Light - IBM Interconnect 2015 session AME4181Introducing MQ Light - IBM Interconnect 2015 session AME4181
Introducing MQ Light - IBM Interconnect 2015 session AME4181
 
Cloud Native Patterns with Bluemix Developer Console
Cloud Native Patterns with Bluemix Developer ConsoleCloud Native Patterns with Bluemix Developer Console
Cloud Native Patterns with Bluemix Developer Console
 
Revolutionize the API Economy with IBM WebSphere Connect
Revolutionize the API Economy with IBM WebSphere ConnectRevolutionize the API Economy with IBM WebSphere Connect
Revolutionize the API Economy with IBM WebSphere Connect
 
Paris Meetup Bluemix du 15/10/2104
Paris Meetup Bluemix du 15/10/2104Paris Meetup Bluemix du 15/10/2104
Paris Meetup Bluemix du 15/10/2104
 
Running and Supporting MQ Light Applications
Running and Supporting MQ Light ApplicationsRunning and Supporting MQ Light Applications
Running and Supporting MQ Light Applications
 
Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015
Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015
Deploying IBM WebSphere Application Server to the Cloud_GWC_3-24-2015
 

Mehr von matthew1001

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
 
Monitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systemsMonitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systemsmatthew1001
 
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud WorldHHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud Worldmatthew1001
 
HHM 6894 Messaging APIs for Cloud, Enterprise and Digital Applications
HHM 6894 Messaging APIs for Cloud, Enterprise and Digital ApplicationsHHM 6894 Messaging APIs for Cloud, Enterprise and Digital Applications
HHM 6894 Messaging APIs for Cloud, Enterprise and Digital Applicationsmatthew1001
 
IBM Messaging in the Cloud
IBM Messaging in the CloudIBM Messaging in the Cloud
IBM Messaging in the Cloudmatthew1001
 
Hybrid Messaging with IBM Bluemix
Hybrid Messaging with IBM BluemixHybrid Messaging with IBM Bluemix
Hybrid Messaging with IBM Bluemixmatthew1001
 
An Introduction to and Comparison of the Different APIs Supported by MQ
An Introduction to and Comparison of the Different APIs Supported by MQAn Introduction to and Comparison of the Different APIs Supported by MQ
An Introduction to and Comparison of the Different APIs Supported by MQmatthew1001
 
An introduction to mq light and bluemix
An introduction to mq light and bluemixAn introduction to mq light and bluemix
An introduction to mq light and bluemixmatthew1001
 
Hybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM Bluemix
Hybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM BluemixHybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM Bluemix
Hybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM Bluemixmatthew1001
 
WebSphere MQ Managed File Transfer V8 - Capitalware MQTC Conference
WebSphere MQ Managed File Transfer V8 - Capitalware MQTC ConferenceWebSphere MQ Managed File Transfer V8 - Capitalware MQTC Conference
WebSphere MQ Managed File Transfer V8 - Capitalware MQTC Conferencematthew1001
 

Mehr von matthew1001 (10)

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
 
Monitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systemsMonitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systems
 
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud WorldHHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
 
HHM 6894 Messaging APIs for Cloud, Enterprise and Digital Applications
HHM 6894 Messaging APIs for Cloud, Enterprise and Digital ApplicationsHHM 6894 Messaging APIs for Cloud, Enterprise and Digital Applications
HHM 6894 Messaging APIs for Cloud, Enterprise and Digital Applications
 
IBM Messaging in the Cloud
IBM Messaging in the CloudIBM Messaging in the Cloud
IBM Messaging in the Cloud
 
Hybrid Messaging with IBM Bluemix
Hybrid Messaging with IBM BluemixHybrid Messaging with IBM Bluemix
Hybrid Messaging with IBM Bluemix
 
An Introduction to and Comparison of the Different APIs Supported by MQ
An Introduction to and Comparison of the Different APIs Supported by MQAn Introduction to and Comparison of the Different APIs Supported by MQ
An Introduction to and Comparison of the Different APIs Supported by MQ
 
An introduction to mq light and bluemix
An introduction to mq light and bluemixAn introduction to mq light and bluemix
An introduction to mq light and bluemix
 
Hybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM Bluemix
Hybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM BluemixHybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM Bluemix
Hybrid Messaging with MQ Light, MQ's Beta Support for AMQP, and IBM Bluemix
 
WebSphere MQ Managed File Transfer V8 - Capitalware MQTC Conference
WebSphere MQ Managed File Transfer V8 - Capitalware MQTC ConferenceWebSphere MQ Managed File Transfer V8 - Capitalware MQTC Conference
WebSphere MQ Managed File Transfer V8 - Capitalware MQTC Conference
 

Kürzlich hochgeladen

eSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolseSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolsosttopstonverter
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
Best Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITBest Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITmanoharjgpsolutions
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingShane Coughlan
 
Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptxVinzoCenzo
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLionel Briand
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsSafe Software
 
Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024Anthony Dahanne
 
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingOpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingShane Coughlan
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfMarharyta Nedzelska
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxAndreas Kunz
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecturerahul_net
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogueitservices996
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxRTS corp
 
VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfExploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfkalichargn70th171
 

Kürzlich hochgeladen (20)

eSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolseSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration tools
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
Best Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh ITBest Angular 17 Classroom & Online training - Naresh IT
Best Angular 17 Classroom & Online training - Naresh IT
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
 
Osi security architecture in network.pptx
Osi security architecture in network.pptxOsi security architecture in network.pptx
Osi security architecture in network.pptx
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and Repair
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
 
Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024
 
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingOpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdf
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
 
Understanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM ArchitectureUnderstanding Flamingo - DeepMind's VLM Architecture
Understanding Flamingo - DeepMind's VLM Architecture
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogue
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptxReal-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
Real-time Tracking and Monitoring with Cargo Cloud Solutions.pptx
 
VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdfExploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
Exploring Selenium_Appium Frameworks for Seamless Integration with HeadSpin.pdf
 

How to develop responsive applications with ibm web sphere mq light

  • 1. © 2014 IBM Corporation 1896 - How to Develop Responsive Applications with IBM MQ Light (beta) Matthew Whitehead WebSphere MQ Development
  • 2. © Copyright IBM 2014 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. © Copyright IBM 2014 • IBM and the IBM logo are trademarks of International Business Machines Corporation, registered in many jurisdictions. Other marks may be trademarks or registered trademarks of their respective owners. • Microsoft, Windows, Windows NT, and the Windows logo are trademarks of Microsoft Corporation in the United States, other countries, or both. • Java and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates. • Other company, product and service names may be trademarks, registered marks or service marks of their respective owners. • References in this publication to IBM products and services do not imply that IBM intends to make them available in all countries in which IBM operates. Trademark Statement
  • 4. © 2014 IBM Corporation Agenda - Introduction & Background - Use-case and features - A new messaging API - Deploying apps & IBM BlueMix - Demo
  • 5. © Copyright IBM 2014 IBM Messaging Focus Areas Deliver Messaging Backbone for Enterprise Focus on traditional MQ values, rock-solid enterprise-class service, ease-of-operation, breadth of platform coverage, availability, z/OS exploitation Capture Big Data from Mobile and Internet of Things Focus on Internet-scale events, m2m device enablement, zero-admin, security and privacy, feed into real-time analytics, location-based notifications Enable Developers to build more scalable, responsive applications Focus on new app dev use cases, breadth of languages, ease-of- deployment, lightweight services, integration with developer frameworks
  • 6. © Copyright IBM 2014 What is “Application Messaging”? Jon IT mgmt Must use approved IT services Share, re-use and save! Demand for Infrastructure services Andy Developer Iain Infrastructure Guy Beth Business Sponsor Reduced pull for servicesAndy Developer Iain Infrastructure Guy What handy tools can I grab? 6 Organisations moving in this direction
  • 7. © Copyright IBM 2014 The journey that got us here… 7 Ruby Node.js Python C C++ Java C# Perl Go Clojure Lua Erlang Scala PHP
  • 8. © Copyright IBM 2014 What is 'Andy' the developer like? Driven to produce applications that can be field tested in the minimum time possible Discovers technology that are prevalent in his communities Uses the best tool for the job Intolerant of process / company mandates / imposed technology that do not obviously and immediately benefit his application 8
  • 9. © Copyright IBM 2014 Some more background WebSphere MQ is a fully featured messaging product that caters for even the most advanced messaging topologies It has support for a wide array of languages, platforms, architectures, qualities of service, topology types, high availability configurations, workload balancing etc... However, while administrators tend to be well skilled in MQ technologies, application developers tend not to be. Architects are being asked to do more with less These are just some of the graphics from the Intro to MQ presentation Application developers have less time to learn the MQ product thoroughly
  • 10. © Copyright IBM 2014 What is MQ Light (beta)? 1. A new messaging API 1. A messaging runtime for on-premise development and deployment 1. A PaaS messaging runtime for admin-free cloud deployment (Elastic MQ service) More on all of these throughout the slides...
  • 11. © 2014 IBM Corporation Agenda - Introduction & Background - Use-case and features - A new messaging API - Deploying apps & IBM BlueMix - Demo
  • 12. © Copyright IBM 2014 A Typical Developer's Use-Case I want to execute code without taxing my Web app processes Web Applications WorkersMessage Queues
  • 13. © Copyright IBM 2014 Application Messaging Features Our new messaging offering will focus on the developer... •A simple API •Developer-oriented download & install process •Web based tooling •Open-source technologies •Easy to deploy apps to a PaaS environment e.g. client.connect() client.send() client.subscribe() client.unsubscribe()
  • 14. © Copyright IBM 2014 Developer oriented download & install We're addressing the inhibitors to developer approval  Removing the sign-in step from the download process  Removing the need to run an installer, allowing the product to be unzipped to any location  Ensuring we don't require intrusive OS changes, e.g. altering the registry, setting up users  Developer-centric platform support (see next slide)  Providing a more developer-centric look & feel to the download site and support pages
  • 15. © Copyright IBM 2014 Appropriate Platform Support Developer-centric rather than enterprise-centric platforms – The beta currently has support for: • Microsoft® Windows® 7 • RedHat Enterprise Linux 6 64-bit – We recognise the importance of platforms and we'll be looking at support for them during the beta, such as: • Ubuntu • Mac OS X • Suse Linux z/OS, IBM i, Solaris®, AIX or HP-UX® are not our target platforms
  • 16. © 2014 IBM Corporation Agenda - Introduction & Background - Use-case and features - A new messaging API - Deploying apps & IBM BlueMix - Demo
  • 17. © Copyright IBM 2014 Simple API Better suited to rapid application development Basic administration built into the API • Creating endpoints, configuring connectivity to existing systems etc. Based on AMQP 1.0 • Open protocol to encourage community development • Intention is to open-source the clients (statement of direction) • Language-specific libraries will be provided so the developer doesn't code directly to the AMQP spec • Node.js currently available in the MQ Light alpha available online Designed to fit in with what developers are used to • How quickly and easily can client libraries be added to your runtime of choice? • Libraries available via appropriate repositories e.g. npm install mqlight
  • 18. © Copyright IBM 2014 Current ideas for API features ● Message content ● Text and Binary message types ● Message properties ● Message delivery ● TTL on messages ● TTL on destinations ● Delivery delay ● Read-ahead buffer ● Require-subscriber (fail publish if no subscribers) ● Quality of service ● At most once message delivery ● At least once message delivery ● Acknowledgement of messages in client or application (Bold = available in beta today, otherwise ideas for future beta updates)
  • 19. © Copyright IBM 2014 Node.js API design ● Uses callbacks on most API functions, e.g. client.connect(function(err) { If (err) { console.log(“Connection failed!”); } }); ● State-change callbacks client.on('connected', function() { console.log("Connection made”); console.log("About to published our first message...”); … }); ● No plans to use Promises in the API ● Better suited to callbacks which are only called once
  • 20. © Copyright IBM 2014 Node.js API design ● Whatever object is passed into the send is received by the subscriber client.send(topic, “Hello World”); // Receiver gets a string client.send(topic, new Buffer([12,32]); // Receiver gets a buffer client.send(topic, {color:'red',size:'10'}); // Receiver gets JSON ● Many function parameters optional // Simple publish client.send(“sports/football”, “Arsenal 1, ManU 0”); // Publish with some options client.send(“sports/football”, “Arsenal 1, ManU 0”, {deliveryDelay:1000, ttl:100}); // Publish with options and a callback client.send(“sports/football”, “Arsenal 1, ManU 0”, {deliveryDelay:1000, ttl:100}, function(err) { // Handle failed send });
  • 21. © Copyright IBM 2014 MQ Light Messaging Model – Send Messages Applications send messages to a topic. A topic is an address in the topic space either flat or arranged hierarchically. 1. Send (‘/test/a’, “Hello”); 2. Send (‘/test/a’, “World!”); Topic Address Space Sender application
  • 22. © Copyright IBM 2014 MQ Light Messaging Model – Simple Receive • Applications receive messages by creating a destination with a pattern which matches the topics they are interested in. • Pattern matching scheme based on WMQ. 1. Send (‘/test/a’, “Hello”); 2. Send (‘/test/a’, “World!”); 1. Hello 2. World! Topic Address Space Sender application DESTINATION Pattern=/test/a
  • 23. © Copyright IBM 2014 MQ Light Messaging Model – Pub/Sub • Multiple destinations can be created which match the same topic • Pub/Sub style. DESTINATION 1. Send (‘/test/a’, “Hello”); 2. Send (‘/test/a’, “World!”); 1. Hello 2. World! 1. Hello 2. World! Topic Address Space Sender application DESTINATION Pattern=/test/a Pattern=/test/# Client 1 Client 2
  • 24. © Copyright IBM 2014 MQ Light Messaging Model – Persistent destinations • Destinations persist for a defined “time to live” after receiver detaches. 1. Send (‘/test/a’, “Hello”); 2. Send (‘/test/a’, “World!”); Topic Address Space Sender application Hello World! DESTINATION Pattern=/test/a Disconnected client
  • 25. © Copyright IBM 2014 MQ Light Messaging Model – Sharing • Clients attaching to the same topic pattern and share name attach to the same shared destination. DESTINATION1. Send (‘/test/a’, “Hello”); 2. Send (‘/test/a’, “World!”); 1. Hello 2. World! 1. Hello 2. World! SHARING Topic Address Space Sender application DESTINATION Pattern=/test/# Pattern=/test/# Share=myshare Client 1 Client 2 Client 3
  • 26. © Copyright IBM 2014 MQ Light Messaging Model – Client takeover 1. Send (‘/test/a’, “Hello”); Hello Topic Address Space Sender application DESTINATION Pattern=/test/# Client 1 World! Client 1 2. Send (‘/test/a’, “World!”); • Applications connect to MQ Light service specify (optional) client ID. • Re-using the same client ID pre-empts the original connection. • Ideal for worker takeover in the cloud.
  • 27. © 2014 IBM Corporation Agenda - Introduction & Background - Use-case and features - A new messaging API - Deploying apps & IBM BlueMix - Demo
  • 28. © Copyright IBM 2014 Application Messaging Deployment Options MQ Light Runtime (beta) On-premise application messaging Deploys IBM WebSphere MQ Enterprise messaging (statement of direction) Deploys Deploys IBM MQ Light Development Kit (beta) Tooling for developer platforms Write apps in node.js Elastic MQ in IBM BlueMix (beta) Public cloud messaging
  • 29. © Copyright IBM 2014 Application Messaging Deployment Options MQ Light Runtime (beta) On-premise application messaging Deploys IBM WebSphere MQ Enterprise messaging (Statement of direction) Deploys Deploys IBM MQ Light Development Kit (beta) Tooling for developer platforms Write apps in node.js Elastic MQ in IBM BlueMix (beta) Public cloud messaging
  • 30. © Copyright IBM 2014 IBM MQ Light – for on-premise deployment Some developers will like the new APIs but won't want to deploy to a PaaS – Small line-of-business projects, e.g. queueing up builds – No mission critical features • No HA • No horizontal scaling MQ Light will probably be available to license as the production runtime for messaging applications – Specific licensing plan not yet finalised – Looking at licensing models that work for development teams Fully compatible with the IBM Elastic MQ service in BlueMix – Easy to migrate applications to a PaaS at a later point
  • 31. © Copyright IBM 2014 Application Messaging Deployment Options IBM MQ Light Development Kit (beta) Tooling for developer platforms Write apps in node.js MQ Light Runtime (beta) On-premise application messaging Deploys IBM WebSphere MQ Enterprise messaging (statement of direction) Deploys Deploys Elastic MQ in IBM BlueMix (beta) Public cloud messaging
  • 32. © Copyright IBM 2014 IBM Elastic MQ service - Messaging in a PaaS MQ currently offers cloud deployment options in a couple of flavours – IBM Messaging Extension for Web Application Pattern (IBM PureApp, IBM WD) – WebSphere MQ Hypervisor Edition for AIX/RHEL We also have a beta version of Elastic MQ running in the IBM BlueMix PaaS – Admin-free experience – MQ environment automatically provisioned for each user when they request an instance of it – Applications are linked or 'bound' to the provisioned environment automatically when they are deployed to BlueMix – The MQ Light team are working with BlueMix to offer a seamless development-to- production experience. – Not a full MQ experience in the cloud
  • 33. © Copyright IBM 2014 How does MQ Light fit in PaaS development? The intention is for MQ Light to provide a (probably free) development environment for applications that will deploy against IBM Elastic MQ in BlueMix Gives the developer 2 choices for development: 1. Develop directly in BlueMix. As you make changes to your code you push the new version straight to BlueMix and check your changes are OK 2. Develop on your laptop using MQ Light. Once you're 90% complete, start pushing your app to BlueMix to try it out in the cloud and iron out any remaining bugs. MQ Light offers an offline development environment – Provides a development version of the messaging service that will be offered in the cloud – Makes offline application development possible when connectivity to the cloud is not available – Comparatively small download & install footprint to get you started quickly & easily
  • 34. © Copyright IBM 2014 Download & Install Experience www.ibmdw.net/messaging/mq-light/
  • 35. © Copyright IBM 2014 Web Based Tooling
  • 36. © Copyright IBM 2014 Try it all out for yourselves! MQ Light beta is available to try out now at https://www.ibmdw.net/messaging/mq-light/ or Google “IBM MQ Light” Elastic MQ is available in IBM BlueMix beta today at https://ace.ng.bluemix.net/ or Google “IBM BlueMix”
  • 37. © Copyright IBM 2014 Try out MQ Light and join the discussions on our forum www.ibmdw.net/messaging/mq-light/ We want your feedback on what we're doing
  • 38. Related Sessions AMC1897 : Messaging in the Cloud with Elastic MQ, MQ Light & Bluemix Today 3:45pm – 4:45pm Delfino 4005 AMC1924 : Roundtables; MQ Light in IBM MQ Infrastructures Wednesday 2:15pm – 3:15pm Zeno 4701 Thusday 9:00am – 10:00am Zeno 4701 AMC1917 : Hands-on Lab: MQ Light & Elastic MQ Wednesday 10:30am – 11:30am Murano 3305
  • 40. © Copyright IBM 2014 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 40
  • 42. © Copyright IBM 2014 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.