SlideShare a Scribd company logo
InterConnect
2017
HAJ-1842 Liberty Deep Dive
Alasdair Nottingham - STSM
WAS Liberty Architect
@nottycode
Erik Hochstedt
Liberty Dev Lead
1 3/23/2017
• Lightweight
• Fit for your purpose
• Simple
• Zero Migration
• 5 years old this year
2 3/23/2017
What is Liberty
3 3/23/2017
Fast & Small Startup
0
1
2
3
4
5
6
7
8
9
Liberty 16.0.0.4 Tomcat 9 M11 WildFly 10.1 TomEE Plus 1.7.4
Startup Time
0
50
100
150
200
250
300
Liberty 16.0.0.4 Tomcat 9 M11 WildFly 10.1 TomEE Plus
1.7.4
Footprint
4 3/23/2017
Excellent Throughput
2500
2700
2900
3100
3300
3500
3700
3900
4100
4300
4500
WAS trad 9.0.0.2 Liberty 16.0.0.4 WildFly 10.1 Jboss EAP 7 Glassfish 4.1.1
Req/sec
Req/sec
5
Fit-for-purpose server
• You control which features are loaded into each server instance
Kernel
<feature>servlet-3.1</feature>
servlet-3.1
http-1.1 appmgr
<feature>jsf-2.2</feature>
jsp-2.3 jsf-2.2
Java EE
zOS
ND
Core
Base
New in
1Q17
New in
4Q16
New in
2Q16
New in
3Q16
Java EE 6
subset
couchdb-1.0
mongodb-2.0
wsSecurity-1.1
javaee-7.0
batchManagement-1.0
rtcomm-1.0
rtcommGateway-1.0
sipServlet-1.0 wsSecuritySaml-1.1
mediaServerControl-1.0
wsAtomicTransaction-1.2cloudant-1.0
scalingController-1.0
scalingMember-1.0
dynamicRouting-1.0collectiveController-1.0
clusterMember-1.0
healthManager-1.0
healthAnalyzer-1.0
zosConnect-1.2
zosLocalAdapters-1.0 zosSecurity-1.0zosTransaction-1.0 zosWlm-1.0
zosRequestLogging-1.0
batchSMFLogging-1.0
Programming Model SecurityProduction
webProfile-6.0
distributedMap-1.0
openid-2.0
openidConnectServer-1.0
openidConnectClient-1.0osgiAppIntegration-1.0
spnego-1.0
collectiveMember-1.0
restConnector-2.0
sessionDatabase-1.0
ldapRegistry-3.0
webCache-1.0javaMail-1.5
osgiConsole-1.0
json-1.0
timedOperations-1.0
monitor-1.0
oauth-2.0
serverStatus-1.0
wab-1.0
blueprint-1.0
webProfile-7.0
eventLogging-1.0
requestTiming-1.0
adminCenter-1.0
concurrent-1.0 bells-1.0
samlWeb-2.0
httpWhiteboard-1.0
federatedRepository-1.0
constrainedDelegation-1.0
osgiBundle-1.0
passwordUtilities-1.0
bluemixUtility-1.0
apiDiscovery-1.0
logstashCollector-1.0
scim-1.0
microProfile-1.0 jwt-1.0
productInsights-1.0 transportSecurity-1.0
Liberty Features
7
Simple Config
<server>
<featureManager>
<feature>jsp-2.3</feature>
</featureManager>
<webApplication location=“myweb.war” contextRoot=“/” />
<applicationManager autoExpand="true"/>
</server>
server.xml
-Xmx1g
-Dsystem.prop=value
jvm.options
WLP_OUTPUT_DIR=/usr/wlp-out/
server.env
8
Composing Config
<server>
<httpEndpoint id=“defaultHttpEndpoint” host=“${host}”
httpPort=“${http}”
httpsPort=“${https}”/>
</server>
configDropins/defaults/common-http.xml
<server>
<include location="https://myHost/ports.xml”/>
<variable name=“host” value=“${my.host}”/>
<variable name=“http” value=“${my.host.http}”/>
<variable name=“https” value=“${my.host.https}”/>
</server>
configDropins/overrides/ports.xml
9
Security
• Security by default
• No remotely accessible ports
• Enable admin, enable security
• Enable ssl using ssl-1.0
<feature>restConnector-1.0</feature>
<quickStartSecurity userName=“admin”
userPassword=“{hash}adSDwijgnb==“/>
<feature>transportSecurity-1.0</feature>
<keyStore password=“{aes}adSDwijgnb==“/>
<httpEndpoint id=“defaultHttpEndpoint” host=“*”/>
10
App Security
• Feature to enable
• Configure security role bindings in server.xml
• Configure registry
<feature>appSecurity-2.0</feature>
<webApplication location=“myweb.war”>
<application-bnd>
<security-role name=“user”>
<group name=“myGroup”/>
</security-role>
</application-bnd>
</webApplication>
<feature>ldapRegistry-3.0</feature>
11
Class Visibility - Parent First
JVM
rt.jar jce.jar jsse.jar
Application Server
runtime.jar libx-1.jar was-util.jar
Web Application
myapp.jar libx-2.jar myutil.jar
1
2
3
✗
✓
• App Server & Application use open
source library
• They use different versions
• When application loads class in open
source library, the app server copy is
found first
✘ Application fails as class is not
compatible
12
Class Visibility – Parent Last
JVM
rt.jar jce.jar jsse.jar
Application Server
runtime.jar libx-1.jar was-util.jar
Web Application
myapp.jar libx-2.jar myutil.jar
3
2
1✓ • App Server & Application use open
source library
• They use different versions
• When application loads class in open
source library, the application copy is
found first
✘ If application contains Servlet classes
then the container can’t use the Servlet
classes so application fails
13
Class Visibility - Liberty
JVM
rt.jar jce.jar jsse.jar
Application Server
runtime.jar libx-1.jar was-util.jar
Web Application
myapp.jar libx-2.jar myutil.jar
1
2✓ • App Server & Application use open
source library
• They use different versions
• When application loads class in open
source library, only API class loads are
delegated to the application server
classloader
✔ Application gets the open source class
it wants, server and application agree
on servlet
14
Zero Migration
• Zero config migration
- Write once, run forever
• Zero migration for apps
- No behavior changes in existing features
- New behaviors in new features
• Choose your Java
- Java 8, 7, or 6*
- IBM, Oracle, Open JDK
16.0.0.4
17.0.0.1
WLP_CONFIG_DIR
app1Svr
app2Svr
15 3/23/2017
Continuous Deploy
TestBuild Package
zip
DeployCode
Script Client
Standalone Server Farms
WAS WAS WAS
IHS, DP, or
generic
HTTP
Load balancing and session affinity/failover
Operations target individual
servers
Web server plugin is a
merge of the individual
servers’ plugins. Session
failover uses DB or session
cache.
HTTP/S
WAS WAS WAS
WAS
Liberty Collectives
liberty liberty liberty
liberty
controllers
liberty liberty liberty
IHS/
DP
collective
Script Client
Operations target individual
servers or clusters
HTTP/S
Load balancing and session affinity/failover
libertylibertyliberty
Liberty Dynamic Routing
liberty liberty liberty
liberty
controllers
liberty liberty liberty
IHS/
DP
collective
Script Client
Operations target individual
servers or clusters
HTTP/S
Load balancing and session affinity/failover
libertylibertyliberty
get dynamic
topology
AutoScaling & Dynamic Routing
<scalingPolicy name=”policy1” min=”3”>
<metric name=”heap” max=”80”/>
<bind clusters=”cluster1”/>
</scalingPolicy>
Administratively defined policy
liberty liberty liberty
liberty
controllers
liberty liberty liberty
IHS/
DP
dynamic
start/stop
get dynamic
topology
collective
Script Client
Operations target individual
servers or clusters
HTTP/S
cluster
members
Load balancing and session affinity/failover
libertylibertyliberty
• Policy bound to app clusters
• Automatic start/stop of JVMs to scale up/down capacity.
• Dynamic routing
• Health management
Liberty and Docker
app and config
liberty and java
docker
+
+
os config
+
=
portable container
Private IaaS
WAS Patterns
Pure App System
Local Docker
host
Third-party
PaaSOpenShift
Cloud
Foundry
Apprenda
Public IaaS
IBM Softlayer
MS Azure
Amazon AWS
Last Year
21
16.0.0.2
2Q16
17.0.0.1
1Q17
16.0.0.3
3Q16
16.0.0.4
4Q16
oauth token propagation
default map role to group
enhanced password utils
jaxrs SAML tokens
apiDiscovery enhanced
zosRequestLogging
jaxws policy attachments
dashDB service plugin
collective docker & node
wdt docker dev enhanced
wdt swagger enhanced
migration tools enhanced
install consolidation
server pckge file perms
json web token issue & accept
vmm custom adapter spi
jsse helper api
collective user cert doc
plugin config auto generation
restConnector-2.0 feature
z/os local adapter for ims
async tcpip for zos
unwrapped jdbc vendor apis
sqlj for db2
java batch logs from native cli
batchSMFLogging-1.0 feature
java batch events to jms
java batch multi-files prop/parm
wdt custom p/w encrypt
wdt jax-rs gen from swagger
cloudant-1.0 feature
microProfile-1.0 feature
node.js in docker + autoscale
Plugin config util for clusters
merge jvm.options files
logstashCollector w/binary log
z/OS angel management +
arbitrary SQL at connection init
DB conn validation/pretest
MS SQL 2016 certification
batch events at timer intervals
Admin Center Batch tool
jwt-1.0 & enhancements
Windows service
WAMT skeleton server.xml gen
WAMT pre-deploy app analysis
WDT docker workspace apps
WDT fine-grained auto feature
WDT apiTypeVisibilty
Override deployment
descriptors in configuration
IBM Cloud Product Insights
integration
Dynamic Routing support for
routing rules
Route to same app in multiple
collectives
Api discovery works without
authentication.
Customize swagger UI css
AdminCenter batch job
stop/restart
Outbound SSL config
independent from inbound
Log dates in ISO format
Pause HTTP traffic
22
Customer Requirements
• Please, create and vote on Requests For Enhancement
https://www.ibm.com/developerworks/rfe/execute?use_case=submitRfe
• Also: lab advocates, workshops, WASdev forum and others
• Are we delivering?
16.0.0.3
SQLJ 19
Plugin merge tool 18
Batch CLI restart 6
Batch CLI param files 5
16.0.0.4
Windows service 51
DB test on connect 47
CMD-line plugin generation 12
17.0.0.1
Outbound SSL (partial) 55
API explorer fixes 21
Batch SMF records 16
Custom DN in routing cert. 14
Pause/Resume HTTP 12
OIDC Cluster support 9
ISO data format 5
Raw kerberos token 5
Routing rules 4
Binding overrides 4
Liberty Top 10
Outbound SSL 55
OAuth PKCE 31
Custom roles 28
HTTP 2.0* 27
Admin/App traffic 27
Config merge view 26
HTTP method restrictions 24
IIOP Txn propagation 24
Collective bulk update 15
Collective cert. SAF 14
23
WASdev.net
24 3/23/2017
Notices and disclaimers
Copyright © 2017 by International Business Machines Corporation (IBM).
No part of this document may be reproduced or transmitted in any form
without written permission from IBM.
U.S. Government Users Restricted Rights — use, duplication or
disclosure restricted by GSA ADP Schedule Contract with IBM.
Information in these presentations (including information relating to
products that have not yet been announced by IBM) has been reviewed
for accuracy as of the date of initial publication and could include
unintentional technical or typographical errors. IBM shall have no
responsibility to update this information. This document is distributed
“as is” without any warranty, either express or implied. In no event
shall IBM be liable for any damage arising from the use of this
information, including but not limited to, loss of data, business
interruption, loss of profit or loss of opportunity. IBM products and
services are warranted according to the terms and conditions of the
agreements under which they are provided.
IBM products are manufactured from new parts or new and used parts.
In some cases, a product may not be new and may have been previously
installed. Regardless, our warranty terms apply.”
Any statements regarding IBM's future direction, intent or product
plans are subject to change or withdrawal without notice.
Performance data contained herein was generally obtained in a
controlled, isolated environments. Customer examples are presented
as illustrations of how those customers have used IBM products and
the results they may have achieved. Actual performance, cost, savings or
other results in other operating environments may vary.
References in this document to IBM products, programs, or services
does not imply that IBM intends to make such products, programs or
services available in all countries in which IBM operates or does
business.
Workshops, sessions and associated materials may have been prepared
by independent session speakers, and do not necessarily reflect the
views of IBM. All materials and discussions are provided for informational
purposes only, and are neither intended to, nor shall constitute legal or
other guidance or advice to any individual participant or their specific
situation.
It is the customer’s responsibility to insure its own compliance with legal
requirements and to obtain advice of competent legal counsel as to
the identification and interpretation of any relevant laws and regulatory
requirements that may affect the customer’s business and any actions
the customer may need to take to comply with such laws. IBM does not
provide legal advice or represent or warrant that its services or products
will ensure that the customer is in compliance with any law.
25 3/23/2017
Notices and disclaimers
continued
Information concerning non-IBM products was obtained from the
suppliers of those products, their published announcements or other
publicly available sources. IBM has not tested those products in
connection with this publication and cannot confirm the accuracy of
performance, compatibility or any other claims related to non-IBM
products. Questions on the capabilities of non-IBM products should be
addressed to the suppliers of those products. IBM does not warrant the
quality of any third-party products, or the ability of any such third-party
products to interoperate with IBM’s products. IBM expressly disclaims
all warranties, expressed or implied, including but not limited to, the
implied warranties of merchantability and fitness for a particular,
purpose.
The provision of the information contained herein is not intended to, and
does not, grant any right or license under any IBM patents, copyrights,
trademarks or other intellectual property right.
IBM, the IBM logo, ibm.com, Aspera®, Bluemix, Blueworks Live, CICS,
Clearcase, Cognos®, DOORS®, Emptoris®, Enterprise Document
Management System™, FASP®, FileNet®, Global Business Services®,
Global Technology Services®, IBM ExperienceOne™, IBM SmartCloud®,
IBM Social Business®, Information on Demand, ILOG, Maximo®,
MQIntegrator®, MQSeries®, Netcool®, OMEGAMON, OpenPower,
PureAnalytics™, PureApplication®, pureCluster™, PureCoverage®,
PureData®, PureExperience®, PureFlex®, pureQuery®, pureScale®,
PureSystems®, QRadar®, Rational®, Rhapsody®, Smarter Commerce®,
SoDA, SPSS, Sterling Commerce®, StoredIQ, Tealeaf®, Tivoli® Trusteer®,
Unica®, urban{code}®, Watson, WebSphere®, Worklight®, X-Force® and
System z® Z/OS, are trademarks of International Business Machines
Corporation, registered in many jurisdictions worldwide. Other product
and service names might be trademarks of IBM or other companies. A
current list of IBM trademarks is available on the Web at "Copyright and
trademark information" at: www.ibm.com/legal/copytrade.shtml.
InterConnect
2017
26 3/23/2017

More Related Content

What's hot

WebSphere App Server vs JBoss vs WebLogic vs Tomcat
WebSphere App Server vs JBoss vs WebLogic vs TomcatWebSphere App Server vs JBoss vs WebLogic vs Tomcat
WebSphere App Server vs JBoss vs WebLogic vs Tomcat
WASdev Community
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
David Currie
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
David Currie
 
AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...
AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...
AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...
WASdev Community
 
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
Roman Kharkovski
 
IBM WebSphere application server
IBM WebSphere application serverIBM WebSphere application server
IBM WebSphere application server
IBM Sverige
 
AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...
AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...
AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...
WASdev Community
 
Planning For Catastrophe with IBM WAS and IBM BPM
Planning For Catastrophe with IBM WAS and IBM BPMPlanning For Catastrophe with IBM WAS and IBM BPM
Planning For Catastrophe with IBM WAS and IBM BPMWASdev Community
 
WAS vs JBoss, WebLogic, Tomcat (year 2015)
WAS vs JBoss, WebLogic, Tomcat (year 2015)WAS vs JBoss, WebLogic, Tomcat (year 2015)
WAS vs JBoss, WebLogic, Tomcat (year 2015)
Roman Kharkovski
 
AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...
AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...
AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...
WASdev Community
 
IBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerIBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and Docker
David Currie
 
Was liberty in deployments
Was liberty in deploymentsWas liberty in deployments
Was liberty in deploymentssflynn073
 
Was liberty at scale
Was liberty at scaleWas liberty at scale
Was liberty at scalesflynn073
 
WebSphere Application Server JBoss TCO analysis
WebSphere Application Server JBoss TCO analysisWebSphere Application Server JBoss TCO analysis
WebSphere Application Server JBoss TCO analysis
Shetal Patel
 
Building out a Microservices Architecture with WebSphere Liberty Profile and ...
Building out a Microservices Architecture with WebSphere Liberty Profile and ...Building out a Microservices Architecture with WebSphere Liberty Profile and ...
Building out a Microservices Architecture with WebSphere Liberty Profile and ...
David Currie
 
Web Logic Jboss Final
Web Logic Jboss FinalWeb Logic Jboss Final
Web Logic Jboss FinalMohamed Atef
 
JBoss EAP / WildFly, State of the Union
JBoss EAP / WildFly, State of the UnionJBoss EAP / WildFly, State of the Union
JBoss EAP / WildFly, State of the Union
Dimitris Andreadis
 
WebSphere and Docker
WebSphere and DockerWebSphere and Docker
WebSphere and Docker
David Currie
 
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloudMigrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
John Donaldson
 
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-ServiceMigrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
David Currie
 

What's hot (20)

WebSphere App Server vs JBoss vs WebLogic vs Tomcat
WebSphere App Server vs JBoss vs WebLogic vs TomcatWebSphere App Server vs JBoss vs WebLogic vs Tomcat
WebSphere App Server vs JBoss vs WebLogic vs Tomcat
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
 
AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...
AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...
AAI-3281 Smarter Production with WebSphere Application Server ND Intelligent ...
 
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
 
IBM WebSphere application server
IBM WebSphere application serverIBM WebSphere application server
IBM WebSphere application server
 
AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...
AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...
AAI-2016 WebSphere Application Server Installation and Maintenance in the Ent...
 
Planning For Catastrophe with IBM WAS and IBM BPM
Planning For Catastrophe with IBM WAS and IBM BPMPlanning For Catastrophe with IBM WAS and IBM BPM
Planning For Catastrophe with IBM WAS and IBM BPM
 
WAS vs JBoss, WebLogic, Tomcat (year 2015)
WAS vs JBoss, WebLogic, Tomcat (year 2015)WAS vs JBoss, WebLogic, Tomcat (year 2015)
WAS vs JBoss, WebLogic, Tomcat (year 2015)
 
AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...
AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...
AAI-2013 Preparing to Fail: Practical WebSphere Application Server High Avail...
 
IBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerIBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and Docker
 
Was liberty in deployments
Was liberty in deploymentsWas liberty in deployments
Was liberty in deployments
 
Was liberty at scale
Was liberty at scaleWas liberty at scale
Was liberty at scale
 
WebSphere Application Server JBoss TCO analysis
WebSphere Application Server JBoss TCO analysisWebSphere Application Server JBoss TCO analysis
WebSphere Application Server JBoss TCO analysis
 
Building out a Microservices Architecture with WebSphere Liberty Profile and ...
Building out a Microservices Architecture with WebSphere Liberty Profile and ...Building out a Microservices Architecture with WebSphere Liberty Profile and ...
Building out a Microservices Architecture with WebSphere Liberty Profile and ...
 
Web Logic Jboss Final
Web Logic Jboss FinalWeb Logic Jboss Final
Web Logic Jboss Final
 
JBoss EAP / WildFly, State of the Union
JBoss EAP / WildFly, State of the UnionJBoss EAP / WildFly, State of the Union
JBoss EAP / WildFly, State of the Union
 
WebSphere and Docker
WebSphere and DockerWebSphere and Docker
WebSphere and Docker
 
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloudMigrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
 
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-ServiceMigrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
 

Viewers also liked

Introduction to WebSockets
Introduction to WebSocketsIntroduction to WebSockets
Introduction to WebSockets
WASdev Community
 
3Com 10/100BASE-TX
3Com 10/100BASE-TX3Com 10/100BASE-TX
3Com 10/100BASE-TX
savomir
 
Tipos recoleccion de datos
Tipos recoleccion de datosTipos recoleccion de datos
Tipos recoleccion de datos
Faber OrdoñeZ
 
Semana 2 movimientos compositivos
Semana 2   movimientos compositivosSemana 2   movimientos compositivos
Semana 2 movimientos compositivos
Jaider Junior Huamaní Gonzales
 
Газета январь 2016
Газета январь 2016Газета январь 2016
Газета январь 2016
Andrewlol
 
Historia del teléfono
Historia del teléfonoHistoria del teléfono
Historia del teléfono
Bryan Alexander Romero Alejo
 
Year 10 Film Studies Taster Session
Year 10 Film Studies Taster SessionYear 10 Film Studies Taster Session
Year 10 Film Studies Taster Session
enmediaellie
 
Presentación
PresentaciónPresentación
Presentación
anasilmar1
 
Creative industries: EU Policy: McGill Globalization Forum
Creative industries: EU Policy: McGill Globalization ForumCreative industries: EU Policy: McGill Globalization Forum
Creative industries: EU Policy: McGill Globalization Forum
Lidia Varbanova
 
Sandstorm or Significant: The evolving role of context in Incident Management
Sandstorm or Significant: The evolving role of context in Incident ManagementSandstorm or Significant: The evolving role of context in Incident Management
Sandstorm or Significant: The evolving role of context in Incident Management
Jules Pierre-Louis
 
Parte I. Riesgos terremotos y volcanes
Parte I. Riesgos terremotos y volcanesParte I. Riesgos terremotos y volcanes
Parte I. Riesgos terremotos y volcanes
saragalanbiogeo
 
Literal g cedulas gastos julio 2016
Literal g cedulas gastos julio 2016Literal g cedulas gastos julio 2016
Love and Happiness: Building Community with Smart Communications
Love and Happiness: Building Community with Smart CommunicationsLove and Happiness: Building Community with Smart Communications
Love and Happiness: Building Community with Smart Communications
Farra Trompeter, Big Duck
 
Don't Wait! Develop Responsive Applications with Java EE7 Instead
Don't Wait! Develop Responsive Applications with Java EE7 InsteadDon't Wait! Develop Responsive Applications with Java EE7 Instead
Don't Wait! Develop Responsive Applications with Java EE7 Instead
WASdev Community
 
IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015
IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015
IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015
ibmwebspheresoftware
 
WildFly AppServer - State of the Union
WildFly AppServer - State of the UnionWildFly AppServer - State of the Union
WildFly AppServer - State of the Union
Dimitris Andreadis
 
WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.
WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.
WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.
Dimitris Andreadis
 
Java micro-services
Java micro-servicesJava micro-services
Java micro-services
James Lewis
 
Productivity Tips for Java EE and Spring Developers
 Productivity Tips for Java EE and Spring Developers Productivity Tips for Java EE and Spring Developers
Productivity Tips for Java EE and Spring Developers
Simon Maple
 
InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...
InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...
InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...
Brian Petrini
 

Viewers also liked (20)

Introduction to WebSockets
Introduction to WebSocketsIntroduction to WebSockets
Introduction to WebSockets
 
3Com 10/100BASE-TX
3Com 10/100BASE-TX3Com 10/100BASE-TX
3Com 10/100BASE-TX
 
Tipos recoleccion de datos
Tipos recoleccion de datosTipos recoleccion de datos
Tipos recoleccion de datos
 
Semana 2 movimientos compositivos
Semana 2   movimientos compositivosSemana 2   movimientos compositivos
Semana 2 movimientos compositivos
 
Газета январь 2016
Газета январь 2016Газета январь 2016
Газета январь 2016
 
Historia del teléfono
Historia del teléfonoHistoria del teléfono
Historia del teléfono
 
Year 10 Film Studies Taster Session
Year 10 Film Studies Taster SessionYear 10 Film Studies Taster Session
Year 10 Film Studies Taster Session
 
Presentación
PresentaciónPresentación
Presentación
 
Creative industries: EU Policy: McGill Globalization Forum
Creative industries: EU Policy: McGill Globalization ForumCreative industries: EU Policy: McGill Globalization Forum
Creative industries: EU Policy: McGill Globalization Forum
 
Sandstorm or Significant: The evolving role of context in Incident Management
Sandstorm or Significant: The evolving role of context in Incident ManagementSandstorm or Significant: The evolving role of context in Incident Management
Sandstorm or Significant: The evolving role of context in Incident Management
 
Parte I. Riesgos terremotos y volcanes
Parte I. Riesgos terremotos y volcanesParte I. Riesgos terremotos y volcanes
Parte I. Riesgos terremotos y volcanes
 
Literal g cedulas gastos julio 2016
Literal g cedulas gastos julio 2016Literal g cedulas gastos julio 2016
Literal g cedulas gastos julio 2016
 
Love and Happiness: Building Community with Smart Communications
Love and Happiness: Building Community with Smart CommunicationsLove and Happiness: Building Community with Smart Communications
Love and Happiness: Building Community with Smart Communications
 
Don't Wait! Develop Responsive Applications with Java EE7 Instead
Don't Wait! Develop Responsive Applications with Java EE7 InsteadDon't Wait! Develop Responsive Applications with Java EE7 Instead
Don't Wait! Develop Responsive Applications with Java EE7 Instead
 
IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015
IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015
IBM WebSphere Application Foundation Sessions at IBM InterConnect 2015
 
WildFly AppServer - State of the Union
WildFly AppServer - State of the UnionWildFly AppServer - State of the Union
WildFly AppServer - State of the Union
 
WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.
WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.
WildFly v9 - State of the Union Session at Voxxed, Istanbul, May/9th 2015.
 
Java micro-services
Java micro-servicesJava micro-services
Java micro-services
 
Productivity Tips for Java EE and Spring Developers
 Productivity Tips for Java EE and Spring Developers Productivity Tips for Java EE and Spring Developers
Productivity Tips for Java EE and Spring Developers
 
InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...
InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...
InterConnect 2017 HBP-3394-Enable innovative cloud solutions with IBM BPM and...
 

Similar to Liberty Deep Dive

WSO2 Intro Webinar - Scale your business with the cloud enabled WSO2 Applica...
WSO2 Intro Webinar -  Scale your business with the cloud enabled WSO2 Applica...WSO2 Intro Webinar -  Scale your business with the cloud enabled WSO2 Applica...
WSO2 Intro Webinar - Scale your business with the cloud enabled WSO2 Applica...WSO2
 
MySQL Options in OpenStack
MySQL Options in OpenStackMySQL Options in OpenStack
MySQL Options in OpenStack
Tesora
 
OpenStack Days East -- MySQL Options in OpenStack
OpenStack Days East -- MySQL Options in OpenStackOpenStack Days East -- MySQL Options in OpenStack
OpenStack Days East -- MySQL Options in OpenStack
Matt Lord
 
WSO2 Application Server - 5.0.0
WSO2 Application Server - 5.0.0WSO2 Application Server - 5.0.0
WSO2 Application Server - 5.0.0WSO2
 
To Build My Own Cloud with Blackjack…
To Build My Own Cloud with Blackjack…To Build My Own Cloud with Blackjack…
To Build My Own Cloud with Blackjack…
Sergey Dzyuban
 
Overview of PaaS: Java experience
Overview of PaaS: Java experienceOverview of PaaS: Java experience
Overview of PaaS: Java experienceIgor Anishchenko
 
Overview of PaaS: Java experience
Overview of PaaS: Java experienceOverview of PaaS: Java experience
Overview of PaaS: Java experience
Alex Tumanoff
 
Docker based Architecture by Denys Serdiuk
Docker based Architecture by Denys SerdiukDocker based Architecture by Denys Serdiuk
Docker based Architecture by Denys Serdiuk
Lohika_Odessa_TechTalks
 
Docker intro
Docker introDocker intro
Docker introspiddy
 
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
Frank Munz
 
Detailed Introduction To Docker
Detailed Introduction To DockerDetailed Introduction To Docker
Detailed Introduction To Docker
nklmish
 
Tech-Spark: SQL Server on Linux
Tech-Spark: SQL Server on LinuxTech-Spark: SQL Server on Linux
Tech-Spark: SQL Server on Linux
Ralph Attard
 
Putting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OS
Putting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OSPutting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OS
Putting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OS
Lightbend
 
The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ...
 The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ... The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ...
The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ...
Josef Adersberger
 
Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...
Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...
Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...
QAware GmbH
 
What’s new in WSO2 Enterprise Integrator 6.6
What’s new in WSO2 Enterprise Integrator 6.6What’s new in WSO2 Enterprise Integrator 6.6
What’s new in WSO2 Enterprise Integrator 6.6
WSO2
 
Best practices in IBM Operational Decision Manager Standard 8.7.0 topologies
Best practices in IBM Operational Decision Manager Standard 8.7.0 topologiesBest practices in IBM Operational Decision Manager Standard 8.7.0 topologies
Best practices in IBM Operational Decision Manager Standard 8.7.0 topologies
Pierre Feillet
 
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Mandi Walls
 
Was liberty profile and docker
Was liberty profile and dockerWas liberty profile and docker
Was liberty profile and dockersflynn073
 
Going Serverless with OpenWhisk
Going Serverless with OpenWhiskGoing Serverless with OpenWhisk
Going Serverless with OpenWhisk
Alex Glikson
 

Similar to Liberty Deep Dive (20)

WSO2 Intro Webinar - Scale your business with the cloud enabled WSO2 Applica...
WSO2 Intro Webinar -  Scale your business with the cloud enabled WSO2 Applica...WSO2 Intro Webinar -  Scale your business with the cloud enabled WSO2 Applica...
WSO2 Intro Webinar - Scale your business with the cloud enabled WSO2 Applica...
 
MySQL Options in OpenStack
MySQL Options in OpenStackMySQL Options in OpenStack
MySQL Options in OpenStack
 
OpenStack Days East -- MySQL Options in OpenStack
OpenStack Days East -- MySQL Options in OpenStackOpenStack Days East -- MySQL Options in OpenStack
OpenStack Days East -- MySQL Options in OpenStack
 
WSO2 Application Server - 5.0.0
WSO2 Application Server - 5.0.0WSO2 Application Server - 5.0.0
WSO2 Application Server - 5.0.0
 
To Build My Own Cloud with Blackjack…
To Build My Own Cloud with Blackjack…To Build My Own Cloud with Blackjack…
To Build My Own Cloud with Blackjack…
 
Overview of PaaS: Java experience
Overview of PaaS: Java experienceOverview of PaaS: Java experience
Overview of PaaS: Java experience
 
Overview of PaaS: Java experience
Overview of PaaS: Java experienceOverview of PaaS: Java experience
Overview of PaaS: Java experience
 
Docker based Architecture by Denys Serdiuk
Docker based Architecture by Denys SerdiukDocker based Architecture by Denys Serdiuk
Docker based Architecture by Denys Serdiuk
 
Docker intro
Docker introDocker intro
Docker intro
 
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...What You Should Know About WebLogic Server 12c (12.2.1.2)  #oow2015 #otntour2...
What You Should Know About WebLogic Server 12c (12.2.1.2) #oow2015 #otntour2...
 
Detailed Introduction To Docker
Detailed Introduction To DockerDetailed Introduction To Docker
Detailed Introduction To Docker
 
Tech-Spark: SQL Server on Linux
Tech-Spark: SQL Server on LinuxTech-Spark: SQL Server on Linux
Tech-Spark: SQL Server on Linux
 
Putting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OS
Putting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OSPutting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OS
Putting Kafka In Jail – Best Practices To Run Kafka On Kubernetes & DC/OS
 
The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ...
 The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ... The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ...
The Good, the Bad and the Ugly of Migrating Hundreds of Legacy Applications ...
 
Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...
Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...
Migrating Hundreds of Legacy Applications to Kubernetes - The Good, the Bad, ...
 
What’s new in WSO2 Enterprise Integrator 6.6
What’s new in WSO2 Enterprise Integrator 6.6What’s new in WSO2 Enterprise Integrator 6.6
What’s new in WSO2 Enterprise Integrator 6.6
 
Best practices in IBM Operational Decision Manager Standard 8.7.0 topologies
Best practices in IBM Operational Decision Manager Standard 8.7.0 topologiesBest practices in IBM Operational Decision Manager Standard 8.7.0 topologies
Best practices in IBM Operational Decision Manager Standard 8.7.0 topologies
 
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
 
Was liberty profile and docker
Was liberty profile and dockerWas liberty profile and docker
Was liberty profile and docker
 
Going Serverless with OpenWhisk
Going Serverless with OpenWhiskGoing Serverless with OpenWhisk
Going Serverless with OpenWhisk
 

More from WASdev Community

ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...
ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...
ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...
WASdev Community
 
AAI-2236 Using the new Java Concurrency Utilities with IBM WebSphere
AAI-2236 Using the new Java Concurrency Utilities with IBM WebSphereAAI-2236 Using the new Java Concurrency Utilities with IBM WebSphere
AAI-2236 Using the new Java Concurrency Utilities with IBM WebSphere
WASdev Community
 
AAI-2235 Open JPA and EclipseLink Usage Scenarios Explained
AAI-2235 Open JPA and EclipseLink Usage Scenarios ExplainedAAI-2235 Open JPA and EclipseLink Usage Scenarios Explained
AAI-2235 Open JPA and EclipseLink Usage Scenarios Explained
WASdev Community
 
AAI-1713 Introduction to Java EE 7
AAI-1713 Introduction to Java EE 7AAI-1713 Introduction to Java EE 7
AAI-1713 Introduction to Java EE 7
WASdev Community
 
Deploy, Monitor and Manage in Style with WebSphere Liberty Admin Center
Deploy, Monitor and Manage in Style with WebSphere Liberty Admin CenterDeploy, Monitor and Manage in Style with WebSphere Liberty Admin Center
Deploy, Monitor and Manage in Style with WebSphere Liberty Admin Center
WASdev Community
 
Arduinos, application servers, and me: Adventures in and out of the cloud
Arduinos, application servers, and me: Adventures in and out of the cloudArduinos, application servers, and me: Adventures in and out of the cloud
Arduinos, application servers, and me: Adventures in and out of the cloud
WASdev Community
 

More from WASdev Community (6)

ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...
ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...
ASZ-3034 Build a WebSphere Linux Cloud on System z: From Roll-Your-Own to Pre...
 
AAI-2236 Using the new Java Concurrency Utilities with IBM WebSphere
AAI-2236 Using the new Java Concurrency Utilities with IBM WebSphereAAI-2236 Using the new Java Concurrency Utilities with IBM WebSphere
AAI-2236 Using the new Java Concurrency Utilities with IBM WebSphere
 
AAI-2235 Open JPA and EclipseLink Usage Scenarios Explained
AAI-2235 Open JPA and EclipseLink Usage Scenarios ExplainedAAI-2235 Open JPA and EclipseLink Usage Scenarios Explained
AAI-2235 Open JPA and EclipseLink Usage Scenarios Explained
 
AAI-1713 Introduction to Java EE 7
AAI-1713 Introduction to Java EE 7AAI-1713 Introduction to Java EE 7
AAI-1713 Introduction to Java EE 7
 
Deploy, Monitor and Manage in Style with WebSphere Liberty Admin Center
Deploy, Monitor and Manage in Style with WebSphere Liberty Admin CenterDeploy, Monitor and Manage in Style with WebSphere Liberty Admin Center
Deploy, Monitor and Manage in Style with WebSphere Liberty Admin Center
 
Arduinos, application servers, and me: Adventures in and out of the cloud
Arduinos, application servers, and me: Adventures in and out of the cloudArduinos, application servers, and me: Adventures in and out of the cloud
Arduinos, application servers, and me: Adventures in and out of the cloud
 

Recently uploaded

Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 

Recently uploaded (20)

Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 

Liberty Deep Dive

  • 1. InterConnect 2017 HAJ-1842 Liberty Deep Dive Alasdair Nottingham - STSM WAS Liberty Architect @nottycode Erik Hochstedt Liberty Dev Lead 1 3/23/2017
  • 2. • Lightweight • Fit for your purpose • Simple • Zero Migration • 5 years old this year 2 3/23/2017 What is Liberty
  • 3. 3 3/23/2017 Fast & Small Startup 0 1 2 3 4 5 6 7 8 9 Liberty 16.0.0.4 Tomcat 9 M11 WildFly 10.1 TomEE Plus 1.7.4 Startup Time 0 50 100 150 200 250 300 Liberty 16.0.0.4 Tomcat 9 M11 WildFly 10.1 TomEE Plus 1.7.4 Footprint
  • 4. 4 3/23/2017 Excellent Throughput 2500 2700 2900 3100 3300 3500 3700 3900 4100 4300 4500 WAS trad 9.0.0.2 Liberty 16.0.0.4 WildFly 10.1 Jboss EAP 7 Glassfish 4.1.1 Req/sec Req/sec
  • 5. 5 Fit-for-purpose server • You control which features are loaded into each server instance Kernel <feature>servlet-3.1</feature> servlet-3.1 http-1.1 appmgr <feature>jsf-2.2</feature> jsp-2.3 jsf-2.2 Java EE
  • 6. zOS ND Core Base New in 1Q17 New in 4Q16 New in 2Q16 New in 3Q16 Java EE 6 subset couchdb-1.0 mongodb-2.0 wsSecurity-1.1 javaee-7.0 batchManagement-1.0 rtcomm-1.0 rtcommGateway-1.0 sipServlet-1.0 wsSecuritySaml-1.1 mediaServerControl-1.0 wsAtomicTransaction-1.2cloudant-1.0 scalingController-1.0 scalingMember-1.0 dynamicRouting-1.0collectiveController-1.0 clusterMember-1.0 healthManager-1.0 healthAnalyzer-1.0 zosConnect-1.2 zosLocalAdapters-1.0 zosSecurity-1.0zosTransaction-1.0 zosWlm-1.0 zosRequestLogging-1.0 batchSMFLogging-1.0 Programming Model SecurityProduction webProfile-6.0 distributedMap-1.0 openid-2.0 openidConnectServer-1.0 openidConnectClient-1.0osgiAppIntegration-1.0 spnego-1.0 collectiveMember-1.0 restConnector-2.0 sessionDatabase-1.0 ldapRegistry-3.0 webCache-1.0javaMail-1.5 osgiConsole-1.0 json-1.0 timedOperations-1.0 monitor-1.0 oauth-2.0 serverStatus-1.0 wab-1.0 blueprint-1.0 webProfile-7.0 eventLogging-1.0 requestTiming-1.0 adminCenter-1.0 concurrent-1.0 bells-1.0 samlWeb-2.0 httpWhiteboard-1.0 federatedRepository-1.0 constrainedDelegation-1.0 osgiBundle-1.0 passwordUtilities-1.0 bluemixUtility-1.0 apiDiscovery-1.0 logstashCollector-1.0 scim-1.0 microProfile-1.0 jwt-1.0 productInsights-1.0 transportSecurity-1.0 Liberty Features
  • 7. 7 Simple Config <server> <featureManager> <feature>jsp-2.3</feature> </featureManager> <webApplication location=“myweb.war” contextRoot=“/” /> <applicationManager autoExpand="true"/> </server> server.xml -Xmx1g -Dsystem.prop=value jvm.options WLP_OUTPUT_DIR=/usr/wlp-out/ server.env
  • 8. 8 Composing Config <server> <httpEndpoint id=“defaultHttpEndpoint” host=“${host}” httpPort=“${http}” httpsPort=“${https}”/> </server> configDropins/defaults/common-http.xml <server> <include location="https://myHost/ports.xml”/> <variable name=“host” value=“${my.host}”/> <variable name=“http” value=“${my.host.http}”/> <variable name=“https” value=“${my.host.https}”/> </server> configDropins/overrides/ports.xml
  • 9. 9 Security • Security by default • No remotely accessible ports • Enable admin, enable security • Enable ssl using ssl-1.0 <feature>restConnector-1.0</feature> <quickStartSecurity userName=“admin” userPassword=“{hash}adSDwijgnb==“/> <feature>transportSecurity-1.0</feature> <keyStore password=“{aes}adSDwijgnb==“/> <httpEndpoint id=“defaultHttpEndpoint” host=“*”/>
  • 10. 10 App Security • Feature to enable • Configure security role bindings in server.xml • Configure registry <feature>appSecurity-2.0</feature> <webApplication location=“myweb.war”> <application-bnd> <security-role name=“user”> <group name=“myGroup”/> </security-role> </application-bnd> </webApplication> <feature>ldapRegistry-3.0</feature>
  • 11. 11 Class Visibility - Parent First JVM rt.jar jce.jar jsse.jar Application Server runtime.jar libx-1.jar was-util.jar Web Application myapp.jar libx-2.jar myutil.jar 1 2 3 ✗ ✓ • App Server & Application use open source library • They use different versions • When application loads class in open source library, the app server copy is found first ✘ Application fails as class is not compatible
  • 12. 12 Class Visibility – Parent Last JVM rt.jar jce.jar jsse.jar Application Server runtime.jar libx-1.jar was-util.jar Web Application myapp.jar libx-2.jar myutil.jar 3 2 1✓ • App Server & Application use open source library • They use different versions • When application loads class in open source library, the application copy is found first ✘ If application contains Servlet classes then the container can’t use the Servlet classes so application fails
  • 13. 13 Class Visibility - Liberty JVM rt.jar jce.jar jsse.jar Application Server runtime.jar libx-1.jar was-util.jar Web Application myapp.jar libx-2.jar myutil.jar 1 2✓ • App Server & Application use open source library • They use different versions • When application loads class in open source library, only API class loads are delegated to the application server classloader ✔ Application gets the open source class it wants, server and application agree on servlet
  • 14. 14 Zero Migration • Zero config migration - Write once, run forever • Zero migration for apps - No behavior changes in existing features - New behaviors in new features • Choose your Java - Java 8, 7, or 6* - IBM, Oracle, Open JDK 16.0.0.4 17.0.0.1 WLP_CONFIG_DIR app1Svr app2Svr
  • 16. Script Client Standalone Server Farms WAS WAS WAS IHS, DP, or generic HTTP Load balancing and session affinity/failover Operations target individual servers Web server plugin is a merge of the individual servers’ plugins. Session failover uses DB or session cache. HTTP/S WAS WAS WAS WAS
  • 17. Liberty Collectives liberty liberty liberty liberty controllers liberty liberty liberty IHS/ DP collective Script Client Operations target individual servers or clusters HTTP/S Load balancing and session affinity/failover libertylibertyliberty
  • 18. Liberty Dynamic Routing liberty liberty liberty liberty controllers liberty liberty liberty IHS/ DP collective Script Client Operations target individual servers or clusters HTTP/S Load balancing and session affinity/failover libertylibertyliberty get dynamic topology
  • 19. AutoScaling & Dynamic Routing <scalingPolicy name=”policy1” min=”3”> <metric name=”heap” max=”80”/> <bind clusters=”cluster1”/> </scalingPolicy> Administratively defined policy liberty liberty liberty liberty controllers liberty liberty liberty IHS/ DP dynamic start/stop get dynamic topology collective Script Client Operations target individual servers or clusters HTTP/S cluster members Load balancing and session affinity/failover libertylibertyliberty • Policy bound to app clusters • Automatic start/stop of JVMs to scale up/down capacity. • Dynamic routing • Health management
  • 20. Liberty and Docker app and config liberty and java docker + + os config + = portable container Private IaaS WAS Patterns Pure App System Local Docker host Third-party PaaSOpenShift Cloud Foundry Apprenda Public IaaS IBM Softlayer MS Azure Amazon AWS
  • 21. Last Year 21 16.0.0.2 2Q16 17.0.0.1 1Q17 16.0.0.3 3Q16 16.0.0.4 4Q16 oauth token propagation default map role to group enhanced password utils jaxrs SAML tokens apiDiscovery enhanced zosRequestLogging jaxws policy attachments dashDB service plugin collective docker & node wdt docker dev enhanced wdt swagger enhanced migration tools enhanced install consolidation server pckge file perms json web token issue & accept vmm custom adapter spi jsse helper api collective user cert doc plugin config auto generation restConnector-2.0 feature z/os local adapter for ims async tcpip for zos unwrapped jdbc vendor apis sqlj for db2 java batch logs from native cli batchSMFLogging-1.0 feature java batch events to jms java batch multi-files prop/parm wdt custom p/w encrypt wdt jax-rs gen from swagger cloudant-1.0 feature microProfile-1.0 feature node.js in docker + autoscale Plugin config util for clusters merge jvm.options files logstashCollector w/binary log z/OS angel management + arbitrary SQL at connection init DB conn validation/pretest MS SQL 2016 certification batch events at timer intervals Admin Center Batch tool jwt-1.0 & enhancements Windows service WAMT skeleton server.xml gen WAMT pre-deploy app analysis WDT docker workspace apps WDT fine-grained auto feature WDT apiTypeVisibilty Override deployment descriptors in configuration IBM Cloud Product Insights integration Dynamic Routing support for routing rules Route to same app in multiple collectives Api discovery works without authentication. Customize swagger UI css AdminCenter batch job stop/restart Outbound SSL config independent from inbound Log dates in ISO format Pause HTTP traffic
  • 22. 22 Customer Requirements • Please, create and vote on Requests For Enhancement https://www.ibm.com/developerworks/rfe/execute?use_case=submitRfe • Also: lab advocates, workshops, WASdev forum and others • Are we delivering? 16.0.0.3 SQLJ 19 Plugin merge tool 18 Batch CLI restart 6 Batch CLI param files 5 16.0.0.4 Windows service 51 DB test on connect 47 CMD-line plugin generation 12 17.0.0.1 Outbound SSL (partial) 55 API explorer fixes 21 Batch SMF records 16 Custom DN in routing cert. 14 Pause/Resume HTTP 12 OIDC Cluster support 9 ISO data format 5 Raw kerberos token 5 Routing rules 4 Binding overrides 4 Liberty Top 10 Outbound SSL 55 OAuth PKCE 31 Custom roles 28 HTTP 2.0* 27 Admin/App traffic 27 Config merge view 26 HTTP method restrictions 24 IIOP Txn propagation 24 Collective bulk update 15 Collective cert. SAF 14
  • 24. 24 3/23/2017 Notices and disclaimers Copyright © 2017 by International Business Machines Corporation (IBM). No part of this document may be reproduced or transmitted in any form without written permission from IBM. U.S. Government Users Restricted Rights — use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM. Information in these presentations (including information relating to products that have not yet been announced by IBM) has been reviewed for accuracy as of the date of initial publication and could include unintentional technical or typographical errors. IBM shall have no responsibility to update this information. This document is distributed “as is” without any warranty, either express or implied. In no event shall IBM be liable for any damage arising from the use of this information, including but not limited to, loss of data, business interruption, loss of profit or loss of opportunity. IBM products and services are warranted according to the terms and conditions of the agreements under which they are provided. IBM products are manufactured from new parts or new and used parts. In some cases, a product may not be new and may have been previously installed. Regardless, our warranty terms apply.” Any statements regarding IBM's future direction, intent or product plans are subject to change or withdrawal without notice. Performance data contained herein was generally obtained in a controlled, isolated environments. Customer examples are presented as illustrations of how those customers have used IBM products and the results they may have achieved. Actual performance, cost, savings or other results in other operating environments may vary. References in this document to IBM products, programs, or services does not imply that IBM intends to make such products, programs or services available in all countries in which IBM operates or does business. Workshops, sessions and associated materials may have been prepared by independent session speakers, and do not necessarily reflect the views of IBM. All materials and discussions are provided for informational purposes only, and are neither intended to, nor shall constitute legal or other guidance or advice to any individual participant or their specific situation. It is the customer’s responsibility to insure its own compliance with legal requirements and to obtain advice of competent legal counsel as to the identification and interpretation of any relevant laws and regulatory requirements that may affect the customer’s business and any actions the customer may need to take to comply with such laws. IBM does not provide legal advice or represent or warrant that its services or products will ensure that the customer is in compliance with any law.
  • 25. 25 3/23/2017 Notices and disclaimers continued Information concerning non-IBM products was obtained from the suppliers of those products, their published announcements or other publicly available sources. IBM has not tested those products in connection with this publication and cannot confirm the accuracy of performance, compatibility or any other claims related to non-IBM products. Questions on the capabilities of non-IBM products should be addressed to the suppliers of those products. IBM does not warrant the quality of any third-party products, or the ability of any such third-party products to interoperate with IBM’s products. IBM expressly disclaims all warranties, expressed or implied, including but not limited to, the implied warranties of merchantability and fitness for a particular, purpose. The provision of the information contained herein is not intended to, and does not, grant any right or license under any IBM patents, copyrights, trademarks or other intellectual property right. IBM, the IBM logo, ibm.com, Aspera®, Bluemix, Blueworks Live, CICS, Clearcase, Cognos®, DOORS®, Emptoris®, Enterprise Document Management System™, FASP®, FileNet®, Global Business Services®, Global Technology Services®, IBM ExperienceOne™, IBM SmartCloud®, IBM Social Business®, Information on Demand, ILOG, Maximo®, MQIntegrator®, MQSeries®, Netcool®, OMEGAMON, OpenPower, PureAnalytics™, PureApplication®, pureCluster™, PureCoverage®, PureData®, PureExperience®, PureFlex®, pureQuery®, pureScale®, PureSystems®, QRadar®, Rational®, Rhapsody®, Smarter Commerce®, SoDA, SPSS, Sterling Commerce®, StoredIQ, Tealeaf®, Tivoli® Trusteer®, Unica®, urban{code}®, Watson, WebSphere®, Worklight®, X-Force® and System z® Z/OS, are trademarks of International Business Machines Corporation, registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at: www.ibm.com/legal/copytrade.shtml.

Editor's Notes

  1. The server configuration allows you to control which features are loaded into a given server instance at a very fine-grained level, so you get exactly the function you want and no more.
  2. Mention you can check in config.
  3. One deliberate behavior difference between the Full and Liberty profiles is in classloading. In WAS Classic, all runtime classes are visible to the application classloader. This can cause problems if the application needs to package its own versions of the same classes (eg Jackson). In liberty, the only runtime classes that are visible to the application classloader are those that we explicitly declare to be API, so the application is free to package its own copies of any other class without having to modify classloader settings.
  4. One deliberate behavior difference between the Full and Liberty profiles is in classloading. In WAS Classic, all runtime classes are visible to the application classloader. This can cause problems if the application needs to package its own versions of the same classes (eg Jackson). In liberty, the only runtime classes that are visible to the application classloader are those that we explicitly declare to be API, so the application is free to package its own copies of any other class without having to modify classloader settings.
  5. One deliberate behavior difference between the Full and Liberty profiles is in classloading. In WAS Classic, all runtime classes are visible to the application classloader. This can cause problems if the application needs to package its own versions of the same classes (eg Jackson). In liberty, the only runtime classes that are visible to the application classloader are those that we explicitly declare to be API, so the application is free to package its own copies of any other class without having to modify classloader settings.
  6. 'Roll your own' management of standalone core or base liberty servers via JMX. Web server plugin configuration can be obtained from each server, merged manually and used to spray HTTP requests across unlimited number of servers. Configure servers to persist HTTP sessions in database or distributed cache to provide session failover. JMX operations against servers can be scripted. Can be done with any edition of liberty (including Liberty Core edition); there is no longer any limit on the number of app servers that can participate in HTTP spray/failover from a single web server plugin. Admin Center and JMX clients operate on individual servers (JVMs). Load balancing by the web server plugin (in the HTTP proxy) with session affinity routine and failover (not shown) if a DB or WXS used for shared session persistence/
  7. A collective gives you a single, agentless, point of administration and management. Configuration is managed in a shared nothing model meaning the individual servers still own their configuration. Colour key: Light blue = Base/Core license Dark blue = ND license
  8. Dynamic configuration information describing the current state of the domain is held in a RESTful service that runs in the controller and is queried by the web server (IHS / Datapower). Colour key: Light blue = Base/Core license Dark blue = ND license Pink = unstarted pooled cluster member (ND).
  9. In a collective, dynamic configuration information describing the current state of the domain is held in a RESTful service that runs in the controller and is queried by the web server (IHS / Datapower). Dynamic scaling policies are acted upon by the controller based on whether specified resource targets are being met or not. Looking at WAS full profile cells now…. Colour key: Light blue = Base/Core license Dark blue = ND license Pink = unstarted pooled cluster member (ND).
  10. In any environment – bare metal, virtualised, cloud, containers – WAS is supported on a wide variety of operating systems and you can roll your own cloud using scripting, dev/ops tools, or a technology of your choice * In the IBM Bluemix cloud, liberty runs on all three compute options: in the original Bluemix environment: CloudFoundry PaaS or ‘Instant Runtimes’, liberty provides the Java runtime * in the IBM Container Service, liberty servers can be wrapped in portable Docker containers and managed by the container service WAS can be installed and run in VMs provided by the OpenStack VM service which is currently in Beta Just available this month is ‘IBM Application Server on Cloud in Bluemix’ which will let users rent WAS instances in a shared environment more info on Bluemix compute options: https://developer.ibm.com/bluemix/2015/08/05/bluemix-instant-runtimes-containers-or-virtual-machines/ * Liberty can be easily installed and configured in a private IaaS environment. Pure Application patterns for WebSphere make the deployment of servers more efficient. * Public IaaS options are also available: on IBM’s SoftLayer you can install and configure Liberty directly onto rented VMs, or get pre-configured instances from the ‘IBM Application Server on Cloud’ service, this time in a dedicated environment. You can also rent WAS instances on Microsoft Azure and Amazon Web Services If you choose a non-IBM PaaS you can also run Liberty there. There is an open-source buildpack for CloudFoundry and Heroku, which forms the core of the Bluemix buildpack so is highly functional and very well tested. That buildpack is also wrapped to provide the liberty cartridge for use in the OpenShift PaaS. So we provide a wide choice of cloud environments for running WAS, and the bottom line is that WAS Liberty is technically small and simple enough to run in any environment, and we want to support you in running Liberty in whatever environment you choose.
  11. oauth token propagation 179587 map role to group if no bnd 179580 enhanced password utils 185832 jaxrs SAML tokens 204948 odrlib certificate security 201173 jaxws dynamic policy dashDB service plugin 69742 zosRequestLogging 152068/186374 collective node 152068 collective docker docker data center integ wdt docker dev enhanced 199470 wdt swagger enhanced 210256 admin center ++ 209375 osgi jars 138001 osgi apps w/shared libs 158238 installer consolidation