ESB, OSGi, and the Cloud

Size: px
Start display at page:

Download "ESB, OSGi, and the Cloud"

Transcription

1 ESB, OSGi, and the Cloud Making it Rain with ServiceMix 4 Jeff Genender CTO Savoir Technologies

2 Jeff Genender - Who is this Shmoe? Apache CXF JSR Java EE 6

3 Rules of Engagement

4 Engage yourself!

5 Agenda Evolution of SOA The Cloud The ESB Problem The Solution?

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20 Cloud

21 Cloud Hardware as a service Dynamically Scalable Hence the word elastic Scalable based on load Provision Systems in Minutes Not Hours! This is a Game Changer!

22 Cloud - Typical Use Case

23 A Marriage! That s What s Next!

24 Looking at the ESB

25 Typical Large ESB Implementation

26 What Global 2000 Really Want - Answer to What s Next?

27 Mega Service Bus Characteristics Made up of multiple smaller ESBs connected as one High availability Immediate provisioning of hardware Immediate ESB provisioning Service provisioning Control lifecycle of particular services Hot deploy and un-deploy services on demand Versioning of services

28 Use Cases

29 Architectural challenges Topology (you can t just assume.. you gotta plan) Communication between containers High Availability Failover True Hot Deployability and Provisioning Java/JavaEE can t do it properly Full restarts are required Classloader isolation is key Cross references kill service provisioning Monitoring Service state Intricate control of servers

30 Topology - The Bottom Line

31 Topology - Network of Brokers (Scalability)

32 Topology - Master/Slave (High availability)

33 Topology - Network of Brokers + Master/Slave

34 Panacea for Hot Deploy - OSGi Is The Answer OSGi was MADE for an ESB The Bundles *are* the service Lifecycle Start/Stop Dependency Management Versioning Multiple versions can run at the same time Most importantly! Silo d and Protected Classloading No hanging references thus causing OutOfMemoryExceptions No restarts of the container!

35 OSGi - Lifecycle package org.example; import org.osgi.framework.bundleactivator; import org.osgi.framework.bundlecontext; public class Activator implements BundleActivator { } private BundleContext context; public void start(bundlecontext context) throws Exception { System.out.println("Starting: Hello World"); this.context = context; } public void stop(bundlecontext context) throws Exception { System.out.println("Stopping: Goodbye Cruel World"); this.context = null; }

36 OSGi - META-INF/MANIFEST.MF Bundle-Name: Hello World Bundle-SymbolicName: org.example.helloworld Bundle-Description: A Hello World bundle Bundle-ManifestVersion: 2 Bundle-Version: Bundle-Activator: org.example.activator Export-Package: org.example.helloworld;version="1.0.0" Import-Package: org.osgi.framework;version="1.3.0"

37 Monitoring Java Management Extensions (JMX) / MBeans This goes without saying for any monitoring Control provisioning via JMX console(s) Ability to log in via console to each machine Control install/uninstall via console Review logs via console Review service and container status via console Allow secure communication via console (likely over a public internet) There is a catch! Don t necessarily allow access to the operating system

38 How ya gonna do it?

39 The ServiceMix Stack

40 The Bus Comes with Embedded ActiveMQ Can use it externally too Robust Handles Network of Brokers Topology for High Scalability Has Master/Slave capabilities for High Availability Discovery - Very important! Static based Multicast/Zeroconf (Rendezvous) LDAP Based

41 Discovery

42 Components - Apache Camel Router activemq ibatis mail rmi udp activemq.journal imap mina rnc validation bean irc mock rng velocity cxf jdbc msv seda vm direct jetty multicast sftp xmpp event jbi pojo smtp xquery file jms pop string-template xslt ftp jpa quartz timer webdav http log queue tcp

43 Camel Routes - Spring DSL Spring XML configuration: <camelcontext xmlns=" <route> <from uri="activemq:topic:quotes"/> <filter> <xpath>/quote/product = widget </xpath> <to uri="activemq:queue:widgetquotes"/> </filter> </route> </camelcontext>

44 Camel Routes - Java DSL Java DSL Code: package com.acme.quotes; import org.apache.camel.builder.routebuilder; public class MyRouteBuilder extends RouteBuilder { public void configure() { } } // forward widget quotes to MQSeries from("activemq:topic:quotes). filter().xpath("/quote/product = widget "). to("activemq:queue:widgetquotes");

45 Creating an OSGi Bundle is as easy as... A Maven POM! <build> <!-- SNIP --> <plugin> <groupid>org.apache.felix</groupid> <artifactid>maven-bundle-plugin</artifactid> <extensions>true</extensions> <version>${felix-version}</version> <configuration> <manifestlocation>target/meta-inf</manifestlocation> <instructions> <Bundle- SymbolicName> ${pom.groupid}.${pom.artifactid}</bundle-symbolicname> <Import-Package> org.apache.activemq.camel.component;version="[5.3.0,5.4.0)", org.apache.camel;version="[2.0,2.2)", org.apache.camel.component;version="[2.0,2.2)", org.apache.camel.component.jms;version="[2.0,2.2)", * </Import-Package> <Include-Resource>src/main/resources</Include-Resource> <Spring-Context>*;publishcontext:=false;create-asynchronously:=true</Spring-Context> <Private-Package></Private-Package> </instructions> </configuration></plugin> <!-- END SNIP --> </build>

46 ServiceMix Console

47

48

49 Dear Demo God, I Pray That It Works...

50 Questions? Thank You! jgenender at savoirtech.com jgenender at apache.org

Spoilt for Choice Which Integration Framework to choose? Mule ESB. Integration. Kai Wähner

Spoilt for Choice Which Integration Framework to choose? Mule ESB. Integration.  Kai Wähner Spoilt for Choice Which Integration Framework to choose? Integration vs. Mule ESB vs. Main Tasks Evaluation of Technologies and Products Requirements Engineering Enterprise Architecture Management Business

More information

SOA-14: Continuous Integration in SOA Projects Andreas Gies

SOA-14: Continuous Integration in SOA Projects Andreas Gies Service Mix 4 Topologies Principal Architect http://www.fusesource.com http://open-source-adventures.blogspot.com About the Author Principal Architect PROGRESS - Open Source Center of Competence Degree

More information

Agenda. Why OSGi. What is OSGi. How OSGi Works. Apache projects related to OSGi Progress Software Corporation. All rights reserved.

Agenda. Why OSGi. What is OSGi. How OSGi Works. Apache projects related to OSGi Progress Software Corporation. All rights reserved. OSGi Overview freeman.fang@gmail.com ffang@apache.org Apache Servicemix Commiter/PMC member Apache Cxf Commiter/PMC member Apache Karaf Commiter/PMC member Apache Felix Commiter Agenda Why OSGi What is

More information

Service Oriented Integration With Apache ServiceMix

Service Oriented Integration With Apache ServiceMix Service Oriented Integration With Apache ServiceMix Bruce Snyder bsnyder@apache.org October 2008 Keystone, Colorado Bruce Snyder Service Oriented Integration With Apache ServiceMix Slide 1 Agenda Enterprise

More information

Wednesday, May 22, 13. Java Business Integration

Wednesday, May 22, 13. Java Business Integration Java Business Integration Java Business Integration Enterprise Application Integration and B2B often require non-standard technology this causes lock-in! no single provider can give us all we need. JBI

More information

Service Oriented Integration With Apache ServiceMix. Bruce Snyder 21 Nov 2008 Malmo, Sweden

Service Oriented Integration With Apache ServiceMix. Bruce Snyder 21 Nov 2008 Malmo, Sweden Service Oriented Integration With Apache ServiceMix Bruce Snyder bsnyder@apache.org 21 Nov 2008 Malmo, Sweden Agenda Enterprise Service Bus Java Business Integration Apache ServiceMix ESB 2 What is an

More information

Chapter 9. Inter-Bundle Communication

Chapter 9. Inter-Bundle Communication Chapter 9. Inter-Bundle Communication with the NMR While the OSGi framework provides a model of synchronous communication between bundles (through method invocations on OSGi services), it currently does

More information

SOA-14: Continuous Integration in SOA Projects Andreas Gies

SOA-14: Continuous Integration in SOA Projects Andreas Gies Tooling for Service Mix 4 Principal Architect http://www.fusesource.com http://open-source-adventures.blogspot.com About the Author Principal Architect PROGRESS - Open Source Center of Competence Degree

More information

Modular Java Applications with Spring, dm Server and OSGi

Modular Java Applications with Spring, dm Server and OSGi Modular Java Applications with Spring, dm Server and OSGi Copyright 2005-2008 SpringSource. Copying, publishing or distributing without express written permission is prohibit Topics in this session Introduction

More information

Hiram Chirino Platform Architect June 5th Whats's new in Fuse 6.2

Hiram Chirino Platform Architect June 5th Whats's new in Fuse 6.2 Hiram Chirino Platform Architect June 5th 2015 Whats's new in Fuse 6.2 What is JBoss Fuse? JBoss Fuse: Red Hat JBoss Fuse Developer tools Management Console Cluster Management Management Hawtio Fabric8

More information

Systems Integration in the Cloud Era. Kai Wähner, MaibornWolff et al GmbH

Systems Integration in the Cloud Era. Kai Wähner, MaibornWolff et al GmbH Systems Integration in the Cloud Era Kai Wähner, MaibornWolff et al GmbH Kai Wähner (MaibornWolff et al GmbH, Munich, Germany) Main Tasks Evaluation of Technologies and Products Requirements Engineering

More information

Real World Messaging With Apache ActiveMQ. Bruce Snyder 7 Nov 2008 New Orleans, Louisiana

Real World Messaging With Apache ActiveMQ. Bruce Snyder 7 Nov 2008 New Orleans, Louisiana Real World Messaging With Apache ActiveMQ Bruce Snyder bsnyder@apache.org 7 Nov 2008 New Orleans, Louisiana Do You Use JMS? 2 Agenda Common questions ActiveMQ features 3 What is ActiveMQ? Message-oriented

More information

RED HAT JBOSS FUSE. A lightweight, flexible integration platform

RED HAT JBOSS FUSE. A lightweight, flexible integration platform RED HAT JBOSS FUSE A lightweight, flexible integration platform TECHNOLOGY OVERVIEW We knew that our previous integration hub simply wouldn t allow us to meet our goals. With Red Hat JBoss Fuse, we re

More information

Patterns and Best Practices for dynamic OSGi Applications

Patterns and Best Practices for dynamic OSGi Applications Patterns and Best Practices for dynamic OSGi Applications Kai Tödter, Siemens Corporate Technology Gerd Wütherich, Freelancer Martin Lippert, akquinet it-agile GmbH Agenda» Dynamic OSGi applications» Basics»

More information

Taking Apache Camel For a Ride. Bruce Snyder 11 April 2008 Amsterdam, The Netherlands

Taking Apache Camel For a Ride. Bruce Snyder 11 April 2008 Amsterdam, The Netherlands Taking Apache Camel For a Ride Bruce Snyder 11 April 2008 Amsterdam, The Netherlands System Integration 2 3 Apache Camel http://activemq.apache.org/camel/ 4 What is Apache Camel? 5 Enterprise Integration

More information

JBI based ESB as backbone for SOI applications. Michael Wisler Zühlke Engineering AG Submission ID: 687

JBI based ESB as backbone for SOI applications. Michael Wisler Zühlke Engineering AG Submission ID: 687 JBI based ESB as backbone for SOI applications Michael Wisler Zühlke Engineering AG Submission ID: 687 Goal of this talk 2 This session brings the JBI (Java Business Integration) standard in contex t to

More information

Introducing Apache Geronimo 1.1. Aaron Mulder CTO, Chariot Solutions Committer, Apache Geronimo

Introducing Apache Geronimo 1.1. Aaron Mulder CTO, Chariot Solutions Committer, Apache Geronimo Introducing Apache Geronimo 1.1 Aaron Mulder CTO, Chariot Solutions Committer, Apache Geronimo Speaker Aaron Mulder Geronimo Developer Works on deployment, management, console, kernel, plugins,... Online

More information

Java Lounge. Integration Solutions madeeasy ComparisonofJava Integration Frameworks. Mario Goller

Java Lounge. Integration Solutions madeeasy ComparisonofJava Integration Frameworks. Mario Goller Java Lounge Integration Solutions madeeasy ComparisonofJava Integration Frameworks Mario Goller 28.05.2013 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART

More information

OSGi. Building LinkedIn's Next Generation Architecture with OSGI

OSGi. Building LinkedIn's Next Generation Architecture with OSGI OSGi Building LinkedIn's Next Generation Architecture with OSGI Yan Pujante Distinguished Software Engineer Member of the Founding Team @ LinkedIn ypujante@linkedin.com http://www.linkedin.com/in/yan Background

More information

Building LinkedIn's Next Generation Architecture with OSGI

Building LinkedIn's Next Generation Architecture with OSGI OSGi Building LinkedIn's Next Generation Architecture with OSGI Yan Pujante Distinguished Software Engineer Member of the Founding Team @ LinkedIn ypujante@linkedin.com http://www.linkedin.com/in/yan Yan

More information

RED HAT JBOSS FUSE A lightweight, lexible integration platform

RED HAT JBOSS FUSE A lightweight, lexible integration platform RED HAT JBOSS FUSE A lightweight, lexible integration platform TECHNOLOGY OVERVIEW We knew that our previous integration hub simply wouldn t allow us to meet our goals. With Red Hat JBoss Fuse, we re now

More information

J2EE Development with Apache Geronimo 1.1. Aaron Mulder CTO, Chariot Solutions Committer, Apache Geronimo

J2EE Development with Apache Geronimo 1.1. Aaron Mulder CTO, Chariot Solutions Committer, Apache Geronimo J2EE Development with Apache Geronimo 1.1 Aaron Mulder CTO, Chariot Solutions Committer, Apache Geronimo Speaker Aaron Mulder Geronimo Developer Works on deployment, management, console, kernel, plugins,...

More information

Introduction to OSGi. Marcel Offermans. luminis

Introduction to OSGi. Marcel Offermans. luminis Introduction to OSGi Marcel Offermans luminis Introduction Marcel Offermans marcel.offermans@luminis.nl Luminis Arnhem Apeldoorn Enschede IT solutions from idea to implementation with and for customers:

More information

Using Apache Felix: OSGi best practices. Marcel Offermans luminis

Using Apache Felix: OSGi best practices. Marcel Offermans luminis Using Apache Felix: OSGi best practices Marcel Offermans luminis 1 About me Marcel Offermans Software architect at luminis Consultancy & product development Over 4 years of experience with OSGi Committer

More information

Carsten Ziegeler

Carsten Ziegeler Embrace OSGi Change A Developer's Quickstart Carsten Ziegeler cziegeler@apache.org About Member of the ASF Sling, Felix, Cocoon, Portals, Sanselan, Excalibur, Incubator PMC: Felix, Portals, Cocoon, Incubator,

More information

Camel User Guide. Apache ServiceMix Version 4.5.0

Camel User Guide. Apache ServiceMix Version 4.5.0 Camel User Guide Apache ServiceMix Version 4.5.0 1 1. Introduction Apache Camel is a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration.

More information

Under the Paul Fremantle, CTO, WSO2

Under the Paul Fremantle, CTO, WSO2 Under the Hood @WSO2 Paul Fremantle, CTO, WSO2 Paul Fremantle CTO and Co-Founder 10 years at IBM STSM in WebSphere Development Infoworld CTO 25 in 2008 VP, Apache Synapse Co-Chair, OASIS WSRX TC Why look

More information

Open ESB v2, Open ESB.next and Project Fuji. Andreas Egloff Lead Architect SOA / Business Integration Sun Microsystems

Open ESB v2, Open ESB.next and Project Fuji. Andreas Egloff Lead Architect SOA / Business Integration Sun Microsystems Open ESB v2, Open ESB.next and Project Fuji Andreas Egloff Lead Architect SOA / Business Integration Sun Microsystems 1 Introduction 2 Project Open ESB Over 600 members and 600,000 downloads CDDL license

More information

Enterprise Messaging With ActiveMQ and Spring JMS

Enterprise Messaging With ActiveMQ and Spring JMS Enterprise Messaging With ActiveMQ and Spring JMS Bruce Snyder bruce.snyder@springsource.com SpringOne 29 Apr 2009 Amsterdam, The Netherlands 1 Agenda Installing ActiveMQ Configuring ActiveMQ Using Spring

More information

camel.apache.org/eip from neworder choice from neworder choice when iswidget to widget from neworder choice when iswidget to widget otherwise to therest from (neworder) choice when (iswidget) to (widget)

More information

AMon A Monitoring System for ActiveMQ

AMon A Monitoring System for ActiveMQ A Monitoring System for ActiveMQ Joe Fernandez joe.fernandez@ttmsolutions.com Total Transaction Management, LLC 570 Rancheros Drive, Suite 140 San Marcos, CA 92069 760-591-0273 www.ttmsolutions.com 1 Designed

More information

Oracle Corporation

Oracle Corporation 1 2012 Oracle Corporation Oracle WebLogic Server 12c: Developing Modern, Lightweight Java EE 6 Applications Will Lyons, Director of WebLogic Server Product Management Pieter Humphrey, Principal Product

More information

CS5233 Components Models and Engineering

CS5233 Components Models and Engineering Prof. Dr. Th. Letschert CS5233 Components Models and Engineering (Komponententechnologien) Master of Science (Informatik) OSGI Bundles and Services Slides on OSGi are based on OSGi Alliance: OSGi Service

More information

Red Hat JBoss Fuse 6.1

Red Hat JBoss Fuse 6.1 Red Hat JBoss Fuse 6.1 Getting Started Learn to solve problems with Red Hat JBoss Fuse Last Updated: 2017-10-12 Red Hat JBoss Fuse 6.1 Getting Started Learn to solve problems with Red Hat JBoss Fuse JBoss

More information

Not just an App. Server

Not just an App. Server Israel JBoss User Group Session 01 / 16.3.2006 JBoss Not just an App. Server By : Lior Kanfi Tikal Hosted by Tikal. w w w. t i k a l k. c o m Cost-Benefit Open Source Agenda Introduction» The problem domain

More information

OpenESB Keh-Yoe Ong FAST (Field Assistance Support Team)

OpenESB Keh-Yoe Ong FAST (Field Assistance Support Team) OpenESB Keh-Yoe Ong FAST (Field Assistance Support Team) Sun Microsystems Agenda What is OpenESB? What is JBI? JBI and GlassFish OpenESB Feature Details Deployment Packaging Demo Summary and Q&A 2 What

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

Apache Camel: Integration Nirvana

Apache Camel: Integration Nirvana Apache Camel: Integration Nirvana Jonathan Anstey, Senior Engineer, Progress Software Corporation 3/20/2009 Most up to date version available at DZone http://architects.dzone.com/articles/apache-camel-integration

More information

Why real integration developers ride Camels

Why real integration developers ride Camels Why real integration developers ride Camels Christian Posta Principal Middleware Specialist/Architect Blog: http://blog.christianposta.com Twitter: @christianposta Email: christian@redhat.com Committer

More information

Apps Exception Problem Building Schema Jdeveloper

Apps Exception Problem Building Schema Jdeveloper Apps Exception Problem Building Schema Jdeveloper Getting Error scanning file when running jetty 9 on java 8 using the maven jetty plugin XML- 24500: (Error) Can not build schema located at ' spring-beans-3.1.xsd'

More information

Enterprise Development

Enterprise Development Enterprise Development with What needs to be done to run JEE like applications inside Karaf? @anierbeck - Karaf PMC, Apache Member - OPS4j Pax Web Project Lead - Senior IT Consultant @codecentric - co-author

More information

Apache Karaf Cave 4.x - Documentation

Apache Karaf Cave 4.x - Documentation Apache Karaf Cave 4.x - Documentation Apache Software Foundation Apache Karaf Cave 4.x - Documentation Overview User Guide 1. Installation 1.1. Pre-installation requirements 1.2. Registration of the Apache

More information

Breaking Apart the Monolith with Modularity and Microservices CON3127

Breaking Apart the Monolith with Modularity and Microservices CON3127 Breaking Apart the Monolith with Modularity and Microservices CON3127 Neil Griffin Software Architect, Liferay Inc. Specification Lead, JSR 378 Portlet 3.0 Bridge for JavaServer Faces 2.2 Michael Han Vice

More information

Spring and OSGi. Martin Lippert akquinet agile GmbH Bernd Kolb Gerd Wütherich

Spring and OSGi. Martin Lippert akquinet agile GmbH Bernd Kolb Gerd Wütherich Spring and OSGi Martin Lippert akquinet agile GmbH lippert@acm.org Bernd Kolb b.kolb@kolbware.de Gerd Wütherich gerd@gerd-wuetherich.de 2006 by Martin Lippert, Bernd Kolb & Gerd Wütherich, made available

More information

Purplefinder Enterprise Platform Messagng with ActiveMQ. Peter Potts 13 th October 2010

Purplefinder Enterprise Platform Messagng with ActiveMQ. Peter Potts 13 th October 2010 Purplefinder Enterprise Platform Messagng with ActiveMQ Peter Potts 13 th October 2010 Resources Manning Book: ActiveMQ in Action Apache Documentation & download: http://activemq.apache.org/ 8 example

More information

OSGi. Tales from the Trenches. OSGitales from the trenches

OSGi. Tales from the Trenches. OSGitales from the trenches OSGi Tales from the Trenches Bertrand Delacretaz Senior R&D Developer, Day Software, www.day.com Apache Software Foundation Member and Director bdelacretaz@apache.org blog: http://grep.codeconsult.ch twitter:

More information

Red Hat JBoss Fuse 6.1

Red Hat JBoss Fuse 6.1 Red Hat JBoss Fuse 6.1 Managing OSGi Dependencies How to package applications for OSGi containers Last Updated: 2017-10-12 Red Hat JBoss Fuse 6.1 Managing OSGi Dependencies How to package applications

More information

7. Component Models. Distributed Systems Prof. Dr. Alexander Schill

7. Component Models. Distributed Systems Prof. Dr. Alexander Schill 7. Component Models Distributed Systems http://www.rn.inf.tu-dresden.de Outline Motivation for Component Approach Software Components - Definition Component Platforms EJB (Enterprise JavaBeans) Spring

More information

OSGi. Building and Managing Pluggable Applications

OSGi. Building and Managing Pluggable Applications OSGi Building and Managing Pluggable Applications What A Mess Billing Service Orders Shipping Accounting Workflow Inventory Application From The View Of... Building monolithic applications is evil nuf

More information

Taking Apache Camel For a Ride

Taking Apache Camel For a Ride Taking Apache Camel For a Ride Bruce Snyder bsnyder@apache.org October 2008 Keystone, Colorado Bruce Snyder Taking Apache Camel for a Ride Slide 1 Taking Apache Camel For a Ride Bruce Snyder Taking Apache

More information

Making SOA Groovy Paul Fremantle,

Making SOA Groovy Paul Fremantle, Paul Fremantle, pzf@apache.org Who am I? Paul Fremantle Co-founder of WSO2 - open source SOA middleware company Member of the Apache Software Foundation Committer and Release Manager on Apache Synapse

More information

IBM WebSphere Application Server 8. Java EE 6 Feature Packs

IBM WebSphere Application Server 8. Java EE 6 Feature Packs IBM WebSphere Application Server 8 EE 6 Feature Packs Thomas Bussière- bussiere@fr.ibm.com IT Architect Business Solution Center La Gaude, France Enabling Developers to Start With Open Source/Community

More information

Red Hat Fuse 7.0 Deploying into Apache Karaf

Red Hat Fuse 7.0 Deploying into Apache Karaf Red Hat Fuse 7.0 Deploying into Apache Karaf Deploying application packages into the Apache Karaf container Last Updated: 2018-08-27 Red Hat Fuse 7.0 Deploying into Apache Karaf Deploying application

More information

Enterprise Java Development using JPA, Hibernate and Spring. Srini Penchikala Detroit JUG Developer Day Conference November 14, 2009

Enterprise Java Development using JPA, Hibernate and Spring. Srini Penchikala Detroit JUG Developer Day Conference November 14, 2009 Enterprise Java Development using JPA, Hibernate and Spring Srini Penchikala Detroit JUG Developer Day Conference November 14, 2009 About the Speaker Enterprise Architect Writer, Speaker, Editor (InfoQ)

More information

Learning Karaf Cellar

Learning Karaf Cellar Learning Karaf Cellar Jean-Baptiste Onofré Chapter No. 1 "Apache Karaf Provisioning and Clusters" In this package, you will find: The author s biography A preview chapter from the book, Chapter no.1 "Apache

More information

Configuration Problem Unable To Locate Spring Namespacehandler For Xml Schema Namespace Jpa

Configuration Problem Unable To Locate Spring Namespacehandler For Xml Schema Namespace Jpa Configuration Problem Unable To Locate Spring Namespacehandler For Xml Schema Namespace Jpa Unable to locate Spring NamespaceHandler for XML schema namespace Application-Context gwt-maven-plugin documentation

More information

Apache Felix Shell. Apache Felix Shell. Overview. How the Shell Service Works. package org.apache.felix.shell;

Apache Felix Shell. Apache Felix Shell. Overview. How the Shell Service Works. package org.apache.felix.shell; Apache Felix Shell Apache Felix Shell Overview How the Shell Service Works How Commands Work Creating a Command Security and the Shell Service Feedback Overview In order to interact with Felix it is necessary

More information

Roadmap to Cloud with Cloud Application Foundation

Roadmap to Cloud with Cloud Application Foundation Roadmap to Cloud with Cloud Application Foundation Maciej Gruszka Oracle FMW PM, EMEA Copyright 2014, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The preceding is intended

More information

Module Day Topic. 1 Definition of Cloud Computing and its Basics

Module Day Topic. 1 Definition of Cloud Computing and its Basics Module Day Topic 1 Definition of Cloud Computing and its Basics 1 2 3 1. How does cloud computing provides on-demand functionality? 2. What is the difference between scalability and elasticity? 3. What

More information

OSGi Best Practices. Emily

OSGi Best Practices. Emily OSGi Best Practices Emily Jiang @IBM Use OSGi in the correct way... AGENDA > Why OSGi? > What is OSGi? > How to best use OSGi? 3 Modularization in Java > Jars have no modularization characteristics No

More information

Demystifying OSGi bundles Excerpted from

Demystifying OSGi bundles Excerpted from Demystifying OSGi bundles Excerpted from Spring Dynamic Modules in Action EARLY ACCESS EDITION Arnaud Cogoluegnes, Thierry Templier, and Andy Piper MEAP Release: June 2009 Softbound print: Summer 2010

More information

OSGi & Java Modularity

OSGi & Java Modularity OSGi & Java Modularity Jazoon 2009, Zürich by Peter Kriens Productivity Application Complexity Productivity Assembly Application Complexity Productivity Structured Programming Assembly Application Complexity

More information

Oliver Wulff / Talend. Flexibles Service Enabling mit Apache CXF

Oliver Wulff / Talend. Flexibles Service Enabling mit Apache CXF Oliver Wulff / Talend Flexibles Service Enabling mit Apache CXF Introduction Oliver Wulff Talend Professional Services Solution Architect Web Services (Axis, CXF, ) Security (WS-*, Kerberos, Web SSO, )

More information

Open ESB. Sang Shin, Java Technology Architect Sun Microsystems, Inc.

Open ESB. Sang Shin, Java Technology Architect  Sun Microsystems, Inc. Open ESB Sang Shin, sang.shin@sun.com Java Technology Architect www.javapassion.com Sun Microsystems, Inc. 1 Topics What is Open ESB? What is JBI? JBI and GlassFish Usage Scenario Open ESB Development

More information

Designing, developing, and deploying integration solutions with JBoss Fuse

Designing, developing, and deploying integration solutions with JBoss Fuse Designing, developing, and deploying integration solutions with JBoss Fuse Red Hat JBoss Fuse 6.1 Babak Mozaffari Consulting Software Engineer Systems Engineering Version 1.1 December 2014 100 East Davie

More information

OSGi in Action. Ada Diaconescu

OSGi in Action. Ada Diaconescu OSGi in Action Karl Pauls Clement Escoffier karl.pauls@akquinet.de clement.escoffier@akquinet.de INF 346. Ada Diaconescu ada.diaconescu@telecom-paristech.fr 2 OSGi in Action - Clement Escoffier (clement.escoffier@akquinet.de)

More information

Introduction to JMS & Apache ActiveMQ

Introduction to JMS & Apache ActiveMQ Introduction to JMS & Apache ActiveMQ The web meeting will begin shortly Dial-in Information: Participant Code: 90448865 US Toll free: (1) 877 375 2160 US Toll: (1) 973 935 2036 United Kingdom: 08082348621

More information

Managing Installations and Provisioning of OSGi Applications. Carsten Ziegeler

Managing Installations and Provisioning of OSGi Applications. Carsten Ziegeler Managing Installations and Provisioning of OSGi Applications Carsten Ziegeler cziegeler@apache.org About Member of the ASF Current PMC Chair of Apache Sling Apache Sling, Felix, ACE, Portals (Incubator,

More information

The Next Generation. Prabhat Jha Principal Engineer

The Next Generation. Prabhat Jha Principal Engineer The Next Generation Prabhat Jha Principal Engineer What do you wish you had in an Open Source JEE Application Server? Faster Startup Time? Lighter Memory Footprint? Easier Administration? 7 Reasons To

More information

Patterns and Best Practices for Dynamic OSGi Applications

Patterns and Best Practices for Dynamic OSGi Applications Patterns and Best Practices for Dynamic OSGi Applications Kai Tödter, Siemens Corporate Technology Gerd Wütherich, Freelancer Martin Lippert, akquinet it-agile GmbH Agenda» Dynamic OSGi applications» Basics»

More information

Realization of EAI Patterns with Apache Camel

Realization of EAI Patterns with Apache Camel Institut für Architektur von Anwendungssystemen Universität Stuttgart Universitätsstraße 38 70569 Stuttgart Studienarbeit Nr. 2127 Realization of EAI Patterns with Apache Camel Pascal Kolb Studiengang:

More information

JOnES. Gaël Blondelle CTO and co-founder. Context. JBI: Java Business Integration The Java standard for integration solutions assembly

JOnES. Gaël Blondelle CTO and co-founder. Context. JBI: Java Business Integration The Java standard for integration solutions assembly Petals, JBI & JOnES Gaël Blondelle CTO and co-founder Context JBI: Java Business Integration The Java standard for integration solutions assembly Petals ObjectWeb project to implement a highly distributable

More information

Making RMI clustering easy with CMI. Loris BOUZONNET

Making RMI clustering easy with CMI. Loris BOUZONNET Making RMI clustering easy with CMI Loris BOUZONNET (Loris.Bouzonnet@bull.net) Agenda - A short history - Toward the project CMI - The project CMI - Features - Architecture - Related work - Incoming works

More information

Red Hat JBoss Fuse 6.0

Red Hat JBoss Fuse 6.0 Red Hat JBoss Fuse 6.0 Tutorials Example integration applications Last Updated: 2017-10-13 Red Hat JBoss Fuse 6.0 Tutorials Example integration applications JBoss A-MQ Docs Team Content Services fuse-docs-support@redhat.com

More information

Tuscany: Applying OSGi modularity after the fact

Tuscany: Applying OSGi modularity after the fact Tuscany: Applying OSGi modularity after the fact Luciano Resende lresende@apache.org http://lresende.blogspot.com Raymond Feng rfeng@apache.org Agenda Introduction and Motivation Status of current Tools

More information

Oracle WebLogic Server 11g: Administration Essentials

Oracle WebLogic Server 11g: Administration Essentials Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials

More information

OSGi Cloud Ecosystems. David Bosschaert Principal Engineer, JBoss/Red Hat March 2013

OSGi Cloud Ecosystems. David Bosschaert Principal Engineer, JBoss/Red Hat March 2013 OSGi Cloud Ecosystems David Bosschaert Principal Engineer, JBoss/Red Hat david@redhat.com March 2013 Agenda PaaS today OSGi Cloud Ecosystems 'Demo' PaaS offerings today (1) General deployment containers

More information

Tackling Application Integration Nightmares with WSO2 ESB. Hiranya Jayathilaka

Tackling Application Integration Nightmares with WSO2 ESB. Hiranya Jayathilaka Tackling Application Integration Nightmares with WSO2 ESB Hiranya Jayathilaka hiranya@wso2.com WSO2 Founded in 2005 by acknowledged leaders in XML, Web Services technologies & standards and Open Source

More information

Administering Apache Geronimo With Custom Server Assemblies and Maven. David Jencks

Administering Apache Geronimo With Custom Server Assemblies and Maven. David Jencks Administering Apache Geronimo With Custom Server Assemblies and Maven David Jencks 1 What is Geronimo? JavaEE 5 certified application server from Apache Modular construction Wires together other projects

More information

J2EE Development with Apache Geronimo. Aaron Mulder Chariot Solutions

J2EE Development with Apache Geronimo. Aaron Mulder Chariot Solutions J2EE Development with Apache Geronimo Aaron Mulder Chariot Solutions Agenda Lightning Overview & Status Report Server Installation & Configuration Deployment Tools Configuring J2EE Applications for Geronimo

More information

Apache CXF Web Services

Apache CXF Web Services Apache CXF Web Services Dennis M. Sosnoski Vancouver Java Users Group August 23, 2011 http://www.sosnoski.com http://www.sosnoski.co.nz About me Java, web services, and SOA expert Consultant and mentor

More information

Com S/Geron 415X Gerontechnology in Smart Home Environments Lecture 9 Intro to Service Computing. Dr. Hen-I Yang ComS Dept., ISU

Com S/Geron 415X Gerontechnology in Smart Home Environments Lecture 9 Intro to Service Computing. Dr. Hen-I Yang ComS Dept., ISU Com S/Geron 415X Gerontechnology in Smart Home Environments Lecture 9 Intro to Service Computing Dr. Hen-I Yang ComS Dept., ISU Feb. 22, 2011 Reflection Peeking Ahead Today (2/22) Introduction to Service

More information

Boss integration and automation. Tal Portal JBoss Enterprise Consultant

Boss integration and automation. Tal Portal JBoss Enterprise Consultant Boss integration and automation Tal Portal JBoss Enterprise Consultant talpor@matrix.co.il Agenda ESB Background JBoss Fuse ESB JBoss BPM Suite(BPM + BRMS) Pergola Approval Request Scenario Agenda ESB

More information

Complex event detection on an enterprise service bus

Complex event detection on an enterprise service bus Research Collection Master Thesis Complex event detection on an enterprise service bus Author(s): Kohler, Silvio Publication Date: 2009 Permanent Link: https://doi.org/10.3929/ethz-a-005772951 Rights /

More information

Simplified CICD with Jenkins and Git on the ZeroStack Platform

Simplified CICD with Jenkins and Git on the ZeroStack Platform DATA SHEET Simplified CICD with Jenkins and Git on the ZeroStack Platform In the technical article we will walk through an end to end workflow of starting from virtually nothing and establishing a CICD

More information

Red Hat Fuse 7.1 Fuse on OpenShift Guide

Red Hat Fuse 7.1 Fuse on OpenShift Guide Red Hat Fuse 7.1 Fuse on OpenShift Guide Installing and developing with Red Hat Fuse on OpenShift Last Updated: 2018-09-20 Red Hat Fuse 7.1 Fuse on OpenShift Guide Installing and developing with Red Hat

More information

Red Hat JBoss Fuse 6.2.1

Red Hat JBoss Fuse 6.2.1 Red Hat JBoss Fuse 6.2.1 Getting Started Learn to solve problems with Red Hat JBoss Fuse Last Updated: 2017-09-21 Red Hat JBoss Fuse 6.2.1 Getting Started Learn to solve problems with Red Hat JBoss Fuse

More information

Modularity in Java. With OSGi. Alex Docklands.LJC January Copyright 2016 Alex Blewitt

Modularity in Java. With OSGi. Alex Docklands.LJC January Copyright 2016 Alex Blewitt Modularity in Java With OSGi Alex Blewitt @alblue Docklands.LJC January 2016 Modularity in Java Modularity is Easy? Modularity is Hard! Modularity is Hard! Modularity is Hard! Modularity is Hard! Modularity

More information

OSGi in WebSphere : The Story so far

OSGi in WebSphere : The Story so far OSGi in WebSphere : The Story so far, IBM Hursley chris.wilkinson@uk.ibm.com Disclaimer IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at

More information

Diagnostic & Audit system for Java EE applications

Diagnostic & Audit system for Java EE applications Diagnostic & Audit system for Java EE applications Florent Benoit, BULL/OW2 [ @florentbenoit ] Secure your Java EE project with the performance diagnostic tool provided by OW2 JOnAS # 1 Summary Context

More information

Studienarbeit Nr Web-based Application Integration: Advanced Business Process Monitoring in WSO2 Carbon. Jakob Krein

Studienarbeit Nr Web-based Application Integration: Advanced Business Process Monitoring in WSO2 Carbon. Jakob Krein Institut für Architektur von Anwendungssystemen Universität Stuttgart Universitätsstraße 38 D 70569 Stuttgart Studienarbeit Nr. 2311 Web-based Application Integration: Advanced Business Process Monitoring

More information

Richard S. Hall Karl Pauls Stuart McCulloch David Savage

Richard S. Hall Karl Pauls Stuart McCulloch David Savage Creating modular applications in Java Richard S. Hall Karl Pauls Stuart McCulloch David Savage FOREWORD BY PETER KRIENS SAMPLE CHAPTER MANNING OSGi in Action by Richard S. Hall, Karl Pauls, Stuart McCulloch,

More information

Distributed OSGi through Apache CXF and Web Services

Distributed OSGi through Apache CXF and Web Services Distributed OSGi through Apache CXF and Web Services Irina Astrova Arne Koschel Institute of Cybernetics Faculty IV, Department for Computer Science Tallinn University of Technology University of Applied

More information

Create your own Carbon Component. Sameera Jayasoma Technical Lead and Product Manager of WSO2 Carbon

Create your own Carbon Component. Sameera Jayasoma Technical Lead and Product Manager of WSO2 Carbon Create your own Carbon Component Sameera Jayasoma Technical Lead and Product Manager of WSO2 Carbon sameera@wso2.com WSO2 Founded in 2005 by acknowledged leaders in XML, Web Services Technologies & Standards

More information

EAI War Stories. ! Alexander Martin Praxisbeispiele zu EAI-Pattern und Lessons Learned

EAI War Stories. ! Alexander Martin Praxisbeispiele zu EAI-Pattern und Lessons Learned EAI War Stories Praxisbeispiele zu EAI-Pattern und Lessons Learned! Alexander Heusingfeld, @goldstift Martin Huber, @waterback We take care of it - personally! EAI Pattern in 2013? Nobody uses them anymore!

More information

ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SUITE

ORACLE DATA SHEET KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SUITE ORACLE WEBLOGIC SERVER KEY FEATURES AND BENEFITS ORACLE WEBLOGIC SUITE Oracle WebLogic Server Enterprise Edition, plus Oracle Coherence Enterprise Edition Scale-out for data intensive applications Active

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebSphere Application Server

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebSphere Application Server IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on WebSphere Application Server Note Before using this information and the product it supports, read the information

More information

See JAXB for details how you can control namespace prefix mappings when marshalling using SOAP data format.

See JAXB for details how you can control namespace prefix mappings when marshalling using SOAP data format. SOAP SOAP DataFormat Available as of Camel 2.3 SOAP is a Data Format which uses JAXB2 and JAX-WS annotations to marshal and unmarshal SOAP payloads. It provides the basic features of Apache CXF without

More information

J2EE Development with Apache Geronimo. Aaron Mulder Chariot Solutions

J2EE Development with Apache Geronimo. Aaron Mulder Chariot Solutions J2EE Development with Apache Geronimo Aaron Mulder Chariot Solutions Speaker Aaron Mulder Geronimo Developer Works on deployment, management, console, kernel,... Online Geronimo book at http:// chariotsolutions.com/geronimo/

More information

Carrying Enterprise on a Little Camel. (using Apache Camel, Apache ActiveMQ as applications to integrate systems and people)

Carrying Enterprise on a Little Camel. (using Apache Camel, Apache ActiveMQ as applications to integrate systems and people) Carrying Enterprise on a Little Camel (using Apache Camel, Apache ActiveMQ as applications to integrate systems and people) Goals Show that Apache Camel, ActiveMQ can be used as stand-alone applications,

More information