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

Size: px
Start display at page:

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

Transcription

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

2 AGENDA 1. Enterprise Integration (Patterns) 2. Spring Integration 3. Apache Camel 4. Mule ESB 5. Conclusion 2

3 Enterprise Integration Everybody communicates to everybody 3

4 Enterprise Integration Only for specialists? 4

5 Enterprise Integration Patterns Goals Standardized Modeling Efficient Realization Automatic Testing 5

6 Enterprise Integration Patterns 6

7 Why Enterprise Integration Frameworks? Writing Glue Code? ConnectionFactory connectionfactory = new ActiveMQConnectionFactory("vm://localhost"); Connection connection = connectionfactory.createconnection(); connection.start(); int autoack = Session.AUTO_ACKNOWLEDGE; Session session = connection.createsession(false, autoack); Destination queue = new ActiveMQQueue("siia.queue.order"); MessageProducer producer = session.createproducer(queue); MessageConsumer consumer = session.createconsumer(queue); Message messagetosend = session.createtextmessage(orderfilecontent.tostring()); producer.send(messagetosend); Message receivedmessage = consumer.receive(5000); if (!(receivedmessage instanceof TextMessage)) { throw new RuntimeException("expected a TextMessage"); } String text = ((TextMessage) receivedmessage).gettext(); connection.close(); 7

8 Why Enterprise Integration Frameworks? Keep itsimple withdsl from("file://inbox/order").to("jms:queue:order?jmsmessagetype=text"); <from uri="file:inbox/order?noop=true«/> <to uri="jms:queue:order?jmsmessagetype=text "/> 8

9 Enterprise Integration Frameworks Why do we need Integration? Your apps are build using different tech stacks Critical for your business to integrate Why Integration Frameworks? Framework do the heavy lifting Focus on business problem Not "reinventing the wheel" 9

10 Why Enterprise Integration Frameworks? Making integration easier and more accessible to developers 10

11 AGENDA 1. Enterprise Integration (Patterns) 2. Spring Integration 3. Apache Camel 4. Mule ESB 5. Conclusion 11

12 Spring Integration Framework Is a routing and mediation framework Can be used from within an existing application. Lightweight (like any Spring application): runfrom JUnittest run within webapp Focussed on messaging and integration Not an ESB Based on Java Business Integration Spec. (Mediated Message Exchange Model) Apache License 12

13 Goals of Spring Integration Provide a simple model for implementing complex enterprise integration solutions Facilitate asynchronous, message-driven behavior within a Spring-based application 13

14 Spring Integration Building Blocks The Spring Integration framework is built on a few basic building blocks: Messages represents a container for information data Channels(Message Channels) represents the location where message is being sent Out of the box: QueueChannel, PriorityChannel, RendezvousChannel, 14

15 Spring Integration Building Blocks Endpoints Endpoints are basically components that consume messages from an input channel and deliver to an output channel several out-of-the-box endpoints Transformer / Filter Splitter / Aggregator Router Service Activator 15

16 Spring Integration Channel Adapters Endpoint that connects a Message Channel to some other system or transport Lot of build-in Integration Adapters AMQP, Feed, File, FTP(S), SFTP, HTTP, TCP, UDP, JDBC, JMS, JPA, Mail, MongoDB, RMI, Stream, Twitter, Web Service, XML, XMPP There is also a Spring Integration Extensions project: Repo: XQuery Adapter, AWS Adapter, SMB Adapter, 16

17 Spring Integration XML DSL <int-file:outbound-channel-adapter id="otherfilesout" directory="file:target/output/other«delete-source-files="true" /> <int-file:outbound-channel-adapter id="xmlfilesout" directory="file:target/output/xml«delete-source-files="true" /> <int-file:outbound-channel-adapter id="csvfilesout" directory="file:target/output/csv«delete-source-files="true" /> <int:logging-channel-adapter id="loggingchannel" level="info" expression="'processing file: ' + payload " /> <int:channel id="xmlfilestemp"> <int:interceptors> <int:wire-tap channel="loggingchannel" /> </int:interceptors> </int:channel> 17

18 Spring Integration IDE STS 18

19 AGENDA 1. Enterprise Integration (Patterns) 2. Spring Integration 3. Apache Camel 4. Mule ESB 5. Conclusion 19

20 Camel- Feature Overview Integration framework Lightweight Set of jar files Deployment JVM, Tomcat, JBoss, Websphere, Weblogic Feature rich Enterprise Integration Patterns 70+ technology adapters Simple programming Java DSL, Spring XML, Scala, Groovy Add ons, data formats Twitter, FIX, HL7, Scalability primitives Apache License 20

21 Camel- Connectivity 21

22 Apache Camel- Concepts CamelContext(collection of Components) Components provide an Endpoint interface A Component is essentially a factory of Endpoint instances only 12 essential components. There are over 60 components outside the core By using URIs, you can send or receive messages on Endpoints in a uniform way. By specifying a endpoint URI, you can identify the component you want to use and how that component is configured 22

23 Apache Camel- Concepts 23

24 Apache Camel-IDE 24

25 Camel Route DSL <camelcontext xmlns=" <route> <from uri="file:src/data?noop=true"/> <choice> <when> <xpath>/destination/country = 'CH'</xpath> <log message="ch order"/> <to uri="file:target/orders/ch"/> </when> <otherwise> <log message="other order"/> <to uri="file:target/orders/others"/> </otherwise> </choice> </route> </camelcontext> XML from("file:src/data?noop=true").choice().when(xpath("/destination/country = 'CH'")).to("file:target/orders/ch").otherwise().to("file:target/orders/others"); Java DSL 25

26 Automatic Unit and Integration Tests Test Kit camel-test.jar JUnitbased (3.x and 4.x) Supports Spring Quick prototyping extends CamelTestSupport Right Click -> Run Debug Inline RouteBuilder 26

27 AGENDA 1. Enterprise Integration (Patterns) 2. Spring Integration 3. Apache Camel 4. Mule ESB 5. Conclusion 27

28 Mule ESB Mule is a Java-based enterprise service bus (ESB) and integration platform that allows developers to quickly and easily connect applications to exchange data Open Source Project MuleSoft( MuleForge Mule Enterprise MuleMQ Tcat Server lightweight integration platform and service container Common Public Attribution License(CPAL) 28

29 MuleESB Big Picture 29

30 Mule Application Achitecture Message Source Message Processor Endpoints Transformers Filters Flow Controls Components Connectors Endpoints (Inbound/ Outbound) Connectorsprovide an abstraction layer over data transport mechanisms. Connectors exist for things such as files, messages, databases, JMS, 30

31 Mule Application Achitecture Flow Mule applications accept and process messages through several Legoblock-like message processors plugged together in what we call a flow Inbound Endpoint Transformer Filters Routers Anything 31

32 Mule Application Achitecture Flow Example 32

33 Mule Features No prescribed message format XML, CSV, Binary, Streams, Record, Java Objects Mix andmatch Existing objects can be managed POJOs, IoC Objects, EJB Session Beans, Remote Objects REST & Web Services Easy totest Mule can be run easily from a JUnit test case Framework provides a Test 33

34 Mule Flow - Example <flow name="fulfillment" doc:name="fulfillment"> <file:inbound-endpoint path="src/data"/> <choice doc:name="choice"> <when expression="#[xpath('/destination/country').text] == 'CH']"> <file:outbound-endpoint path="target/orders/ch" doc:name="ch Order"/> </when> <otherwise> <file:outbound-endpoint path="target/orders/others" doc:name="other Order"/> </otherwise> </choice> </flow> 34

35 Mule- Connectivity 35

36 Mule Studio IDE 36

37 AGENDA 1. Enterprise Integration (Patterns) 2. Spring Integration 3. Apache Camel 4. Mule ESB 5. Conclusion 37

38 Which Framework should I use? Spring Project Typical JVM Technologies No additional Framework One of the available proprietary Connectorsisrequired(more restrictive commercial license) In all other Cases 38

39 Questions? 39

40 THANK YOU. Trivadis AG Mario Goller Europastrasse 5 CH-8152 Glattbrugg(ZH) Tel Fax info@trivadis.com BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 40 Java Web Services

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

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

REALTIME WEB APPLICATIONS WITH ORACLE APEX

REALTIME WEB APPLICATIONS WITH ORACLE APEX REALTIME WEB APPLICATIONS WITH ORACLE APEX DOAG Conference 2012 Johannes Mangold Senior Consultant, Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART

More information

Distributed Systems. Messaging and JMS Distributed Systems 1. Master of Information System Management

Distributed Systems. Messaging and JMS Distributed Systems 1. Master of Information System Management Distributed Systems Messaging and JMS 1 Example scenario Scenario: Store inventory is low This impacts multiple departments Inventory Sends a message to the factory when the inventory level for a product

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

Best Practices for Testing SOA Suite 11g based systems

Best Practices for Testing SOA Suite 11g based systems Best Practices for Testing SOA Suite 11g based systems ODTUG 2010 Guido Schmutz, Technology Manager / Partner Trivadis AG 29.06.2010, Washington Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M.

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

Java Message System. Petr Adámek. April 11 th 2016

Java Message System. Petr Adámek. April 11 th 2016 Java Message System Petr Adámek April 11 th 2016 What is this presentation about Why and how to use asynchronous communication. How to use JMS (but not only JMS). Commons mistakes and bests practices when

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

Welcome. Oracle SOA Suite meets Java The best of both worlds. Guido Schmutz DOAG Konferenz 2013 Nürnberg,

Welcome. Oracle SOA Suite meets Java The best of both worlds. Guido Schmutz DOAG Konferenz 2013 Nürnberg, Welcome Oracle SOA Suite meets Java The best of both worlds Guido Schmutz DOAG Konferenz 2013 Nürnberg, BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN

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

ESB, OSGi, and the Cloud

ESB, OSGi, and the Cloud ESB, OSGi, and the Cloud Making it Rain with ServiceMix 4 Jeff Genender CTO Savoir Technologies Jeff Genender - Who is this Shmoe? Apache CXF JSR 316 - Java EE 6 Rules of Engagement Engage yourself! Agenda

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

Example simple-mdb can be browsed at https://github.com/apache/tomee/tree/master/examples/simple-mdb

Example simple-mdb can be browsed at https://github.com/apache/tomee/tree/master/examples/simple-mdb Simple MDB Example simple-mdb can be browsed at https://github.com/apache/tomee/tree/master/examples/simple-mdb Below is a fun app, a chat application that uses JMS. We create a message driven bean, by

More information

Automated Web Tests withselenium2

Automated Web Tests withselenium2 Automated Web Tests withselenium2 Java Forum Stuttgart 2013 Mario Goller Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 1 AGENDA 1. Selenium

More information

Connecting Enterprise Systems to WebSphere Application Server

Connecting Enterprise Systems to WebSphere Application Server Connecting Enterprise Systems to WebSphere Application Server David Currie Senior IT Specialist Introduction Many organisations have data held in enterprise systems with non-standard interfaces There are

More information

Communication Technologies MoM JMS.NET. Part VI. Message-Oriented Middleware

Communication Technologies MoM JMS.NET. Part VI. Message-Oriented Middleware Part VI Message-Oriented Middleware 174 Outline 1. Communication Technologies 2. Message-Oriented Middleware 3. JMS 4. Messaging and.net 175 Communication via RMI / RPC causes tight coupling of communicating

More information

Pimping up Industry Devices with Rasperry Pi, Vert.x und Java 8

Pimping up Industry Devices with Rasperry Pi, Vert.x und Java 8 Pimping up Industry Devices with Rasperry Pi, Vert.x und Java 8 Anatole Tresch Principal Consultant @atsticks BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

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

Welcome to the OWASP TOP 10

Welcome to the OWASP TOP 10 Welcome to the OWASP TOP 10 Secure Development for Java Developers Dominik Schadow 03/20/2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 1 AGENDA

More information

Asynchronous Messaging. Benoît Garbinato

Asynchronous Messaging. Benoît Garbinato Asynchronous Messaging Benoît Garbinato Fundamental idea Provide a communication abstraction that decouples collaborating distributed entities Time decoupling asynchrony Space decoupling anonymity Asynchrony

More information

Service discovery in Kubernetes with Fabric8

Service discovery in Kubernetes with Fabric8 Service discovery in Kubernetes with Fabric8 Andy Moncsek Senior Consultant Andy.Moncsek@trivadis.com Twitter: @AndyAHCP BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN

More information

The Java EE 6 Tutorial

The Java EE 6 Tutorial 1 of 8 12/05/2013 5:13 PM Document Information Preface Part I Introduction 1. Overview 2. Using the Tutorial Examples Part II The Web Tier 3. Getting Started with Web Applications 4. JavaServer Faces Technology

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

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

Sichere Software vom Java-Entwickler

Sichere Software vom Java-Entwickler Sichere Software vom Java-Entwickler Dominik Schadow Java Forum Stuttgart 05.07.2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN We can no longer

More information

Apache Tamaya Configuring your Containers...

Apache Tamaya Configuring your Containers... Apache Tamaya Configuring your Containers... BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH About Me Anatole Tresch Principal Consultant,

More information

Mischa Kölliker. JavaLounge Zürich, 23. Juni 2009

Mischa Kölliker. JavaLounge Zürich, 23. Juni 2009 Mischa Kölliker Ueli Kistler JavaLounge Zürich, 23. Juni 2009 Basel Baden Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart Wien & The RIA space What is Adobe

More information

Integration of Oracle VM 3 in Enterprise Manager 12c

Integration of Oracle VM 3 in Enterprise Manager 12c Integration of Oracle VM 3 in Enterprise Manager 12c DOAG SIG Infrastruktur Martin Bracher Senior Consultant Trivadis AG 8. März 2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

EJB applications guided by tests Jakub Marchwicki

EJB applications guided by tests Jakub Marchwicki EJB applications guided by tests Jakub Marchwicki ? pain The experiment pain The experiment nb of slides The experiment 20 slides pain Severe health risk OK nb of slides The experiment 60 slides + IDE

More information

Red Hat JBoss Fuse Service Works Integration Recipes, Best Practices & Cheat Codes

Red Hat JBoss Fuse Service Works Integration Recipes, Best Practices & Cheat Codes Red Hat JBoss Fuse Service Works Integration Recipes, Best Practices & Cheat Codes Keith Babo SwitchYard Project Lead, Red Hat There is Still Time To Leave We will be talking integration and SOA If your

More information

Integration Patterns for Mission Critical System of. Systems. OpenSplice DDS. Julien ENOCH Engineering Team Lead PrismTech.

Integration Patterns for Mission Critical System of. Systems. OpenSplice DDS. Julien ENOCH Engineering Team Lead PrismTech. Integration Patterns for Mission Critical System of OpenSplice Systems Julien ENOCH Engineering Team Lead PrismTech julien.enoch@prismtech.com System Integration Challenges OpenSplice Subsystems integration

More information

MODERN APPLICATION ARCHITECTURE DEMO. Wanja Pernath EMEA Partner Enablement Manager, Middleware & OpenShift

MODERN APPLICATION ARCHITECTURE DEMO. Wanja Pernath EMEA Partner Enablement Manager, Middleware & OpenShift MODERN APPLICATION ARCHITECTURE DEMO Wanja Pernath EMEA Partner Enablement Manager, Middleware & OpenShift COOLSTORE APPLICATION COOLSTORE APPLICATION Online shop for selling products Web-based polyglot

More information

Crossing boarders with the bus Integrating enterprise data with public APIs!

Crossing boarders with the bus Integrating enterprise data with public APIs! Crossing boarders with the bus Integrating enterprise data with public APIs! What is Mule?" 2 Not a donkey" All contents Copyright 2009, MuleSoft Inc.! 3 Not a llama" 4 Not a camel" 5 BaaS: Beer As A Service"

More information

J2EE. Enterprise Architecture Styles: Two-Tier Architectures:

J2EE. Enterprise Architecture Styles: Two-Tier Architectures: J2EE J2EE is a unified standard for distributed applications through a component-based application model. It is a specification, not a product. There is a reference implementation available from Sun. We

More information

Get Groovy with ODI Trivadis

Get Groovy with ODI Trivadis BASEL 1 BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART VIENNA AGENDA 1 What is Groovy? 2 Groovy in ODI 3 What I want to reach 4 Live Demo 5 Helpful documentation

More information

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints Active Endpoints ActiveVOS Platform Architecture ActiveVOS Unique process automation platforms to develop, integrate, and deploy business process applications quickly User Experience Easy to learn, use

More information

Amazon MQ. Developer Guide

Amazon MQ. Developer Guide Amazon MQ Developer Guide Amazon MQ: Developer Guide Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection

More information

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject

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

ORACLE INTRODCUTION. Service Bus 11g For the Busy IT Professional. munz & more Dr. Frank Munz November getting started

ORACLE INTRODCUTION. Service Bus 11g For the Busy IT Professional. munz & more Dr. Frank Munz November getting started ORACLE Service Bus 11g For the Busy IT Professional munz & more Dr. Frank Munz November 2010 getting started INTRODCUTION 1 Agenda 1. Introduction 2. Service Bus Positioning 3. Core OSB Features, Development

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

Getting Started with Spring Integration

Getting Started with Spring Integration Getting Started with Spring Integration Mark Fisher Senior Engineer, SpringSource http://www.springsource.org/spring-integration Topics Background Enterprise Integration Patterns Spring Integration Core

More information

the open source choice for SOA infrastructure Lightweight RESTful Integration with Mule Dan Diephouse

the open source choice for SOA infrastructure Lightweight RESTful Integration with Mule Dan Diephouse the open source choice for SOA infrastructure Lightweight RESTful Integration with Mule Dan Diephouse SOA defined All contents Copyright! 2008, MuleSource Inc. 2 SOA is dead? All contents Copyright! 2008,

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

EMBEDDED MESSAGING USING ACTIVEMQ

EMBEDDED MESSAGING USING ACTIVEMQ Mark Richards EMBEDDED MESSAGING USING ACTIVEMQ Embedded messaging is useful when you need localized messaging within your application and don t need (or want) an external message broker. It s a good technique

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

java message service marek konieczny

java message service marek konieczny java message service marek konieczny Agenda Introduction to message oriented computing basic communication models and domains Java Message Service API Communication API Message structure Selectors API

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

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

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

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP 2013 Empowering Innovation DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP contact@dninfotech.com www.dninfotech.com 1 JAVA 500: Core JAVA Java Programming Overview Applications Compiler Class Libraries

More information

MTAT Enterprise System Integration. Lecture 2: Middleware & Web Services

MTAT Enterprise System Integration. Lecture 2: Middleware & Web Services MTAT.03.229 Enterprise System Integration Lecture 2: Middleware & Web Services Luciano García-Bañuelos Slides by Prof. M. Dumas Overall view 2 Enterprise Java 2 Entity classes (Data layer) 3 Enterprise

More information

Spring Integration Reference Manual

Spring Integration Reference Manual Reference Manual Mark Fisher Marius Bogoevici Iwein Fuld Jonas Partner Oleg Zhurakousky Gary Russell Dave Syer Josh Long David Turanski Gunnar Hillert Artem Bilan Reference Manual by Mark Fisher, Marius

More information

Migrating traditional Java EE applications to mobile

Migrating traditional Java EE applications to mobile Migrating traditional Java EE applications to mobile Serge Pagop Sr. Channel MW Solution Architect, Red Hat spagop@redhat.com Burr Sutter Product Management Director, Red Hat bsutter@redhat.com 2014-04-16

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

Exadata Database Machine Resource Management teile und herrsche!

Exadata Database Machine Resource Management teile und herrsche! Exadata Database Machine Resource Management teile und herrsche! DOAG Conference 2011 Konrad Häfeli Senior Technology Manager Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

Red Hat Summit 2009 Jonathan Robie

Red Hat Summit 2009 Jonathan Robie 1 MRG Messaging: A Programmer's Overview Jonathan Robie jonathan.robie@redhat.com Software Engineer, Red Hat 2009-Sept-03 2 Red Hat MRG Messaging AMQP Messaging Broker High speed Reliable AMQP Client Libraries

More information

Angelo Corsaro, Ph.D. Chief Technology Officer! OMG DDS Sig Co-Chair PrismTech

Angelo Corsaro, Ph.D. Chief Technology Officer! OMG DDS Sig Co-Chair PrismTech Angelo Corsaro, Ph.D. Chief Technology Officer! OMG DDS Sig Co-Chair PrismTech angelo.corsaro@prismtech.com! Standards Scopes Standards Compared DDS Standard v1.2 2004 Programming Language Independent

More information

Oracle Exam 1z0-895 Java EE 6 Enterprise JavaBeans Developer Certified Expert Exam Version: 14.0 [ Total Questions: 90 ]

Oracle Exam 1z0-895 Java EE 6 Enterprise JavaBeans Developer Certified Expert Exam Version: 14.0 [ Total Questions: 90 ] s@lm@n Oracle Exam 1z0-895 Java EE 6 Enterprise JavaBeans Developer Certified Expert Exam Version: 14.0 [ Total Questions: 90 ] Oracle 1z0-895 : Practice Test Question No : 1 A developer wants to create

More information

Reactive Integrations - Caveats and bumps in the road explained

Reactive Integrations - Caveats and bumps in the road explained Reactive Integrations - Caveats and bumps in the road explained @myfear Why is everybody talking about cloud and microservices and what the **** is streaming? Biggest Problems in Software Development High

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

MuleSoft Certified Developer - Integration Professional Exam Preparation Guide

MuleSoft Certified Developer - Integration Professional Exam Preparation Guide MuleSoft Certified Developer - Integration Professional Exam Preparation Guide Mule Runtime 3.8 June 24, 2016 1 Table of Contents PREPARATION GUIDE PURPOSE... 3 EXAM OBJECTIVE... 3 PREPARATION RECOMMENDATIONS...

More information

JBoss World 2009 Aaron Darcy

JBoss World 2009 Aaron Darcy 1 Java Application Platforms for Lightweight Workloads Insight into Red Hat's Application Platform Strategy Aaron Darcy JBoss Product Line Director Red Hat September 2009 2 About Me JBoss Product Line

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

Oracle Access Management

Oracle Access Management Oracle Access Management Needful things to survive Michael Mühlbeyer, Trivadis GmbH BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH

More information

presentation DAD Distributed Applications Development Cristian Toma

presentation DAD Distributed Applications Development Cristian Toma Lecture 12 S4 - Core Distributed Middleware Programming in JEE Distributed Development of Business Logic Layer presentation DAD Distributed Applications Development Cristian Toma D.I.C.E/D.E.I.C Department

More information

Java TM. Message-Driven Beans. Jaroslav Porubän 2007

Java TM. Message-Driven Beans. Jaroslav Porubän 2007 Message-Driven Beans Jaroslav Porubän 2007 Java Message Service Vendor-agnostic Java API that can be used with many different message-oriented middleware Supports message production, distribution, delivery

More information

Arquillian & ShrinkWrap

Arquillian & ShrinkWrap Arquillian & ShrinkWrap Integration testing made simple November 2014 What do they do? ShrinkWrap to package your test artifacts Arquillian deploys the package to target container Arquillian enriches and

More information

Introduction to WebSphere Platform Messaging (WPM)

Introduction to WebSphere Platform Messaging (WPM) Introduction to WebSphere Platform Messaging (WPM) Unit Objectives After completing this unit, you should be able to discuss: Overview of WebSphere Messaging system Service Integration Bus Architecture

More information

Kicking the Tires on the Bus ETE

Kicking the Tires on the Bus ETE Chariot Solutions Kicking the Tires on the Bus ETE The Problem Being asked by clients to assist in evaluating and implementing SOA solutions Many products Development Environment: Traditional (app server

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

Integrating Legacy Assets Using J2EE Web Services

Integrating Legacy Assets Using J2EE Web Services Integrating Legacy Assets Using J2EE Web Services Jonathan Maron Oracle Corporation Page Agenda SOA-based Enterprise Integration J2EE Integration Scenarios J2CA and Web Services Service Enabling Legacy

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

MODERN IT ARCHITECTURE

MODERN IT ARCHITECTURE MODERN IT ARCHITECTURE 2 ABOUT ME 3 ABOUT ME AGENDA 1. KEY CONCEPTS Microservices, containers, etc. 2. HOLISTIC VIEW Making businesses agile 3. ARCHITECTURE Faster, flatter, and more flexible 4. LAB MATERIALS

More information

Course Content for Java J2EE

Course Content for Java J2EE CORE JAVA Course Content for Java J2EE After all having a lot number of programming languages. Why JAVA; yet another language!!! AND NOW WHY ONLY JAVA??? PART-1 Basics & Core Components Features and History

More information

SPEC Enterprise Java Benchmarks State of the Art and Future Directions

SPEC Enterprise Java Benchmarks State of the Art and Future Directions SPEC Enterprise Java Benchmarks State of the Art and Future Directions Samuel Kounev Release Manager, SPEC Java Subcommittee Chair, SPECjms Working Group Kai Sachs SPECjms2007 Lead Developer Databases

More information

EJB ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY. EJB Enterprise Java

EJB ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY. EJB Enterprise Java EJB Enterprise Java EJB Beans ENTERPRISE JAVA BEANS INTRODUCTION TO ENTERPRISE JAVA BEANS, JAVA'S SERVER SIDE COMPONENT TECHNOLOGY Peter R. Egli 1/23 Contents 1. What is a bean? 2. Why EJB? 3. Evolution

More information

Achieving Scalability and High Availability for clustered Web Services using Apache Synapse. Ruwan Linton WSO2 Inc.

Achieving Scalability and High Availability for clustered Web Services using Apache Synapse. Ruwan Linton WSO2 Inc. Achieving Scalability and High Availability for clustered Web Services using Apache Synapse Ruwan Linton [ruwan@apache.org] WSO2 Inc. Contents Introduction Apache Synapse Web services clustering Scalability/Availability

More information

AJAX und das Springframework

AJAX und das Springframework AJAX und das Springframework Peter Welkenbach Guido Schmutz Trivadis GmbH Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart. Wien Lightweight Container

More information

Middleware definitions and overview

Middleware definitions and overview Middleware definitions and overview Chantal Taconet CCN/CSC7321 octobre 2017 Revision : 545 Outline 1 Which middleware?............................................................. 3 2 Families of middleware..........................................................

More information

WELCOME. Oracle Almost Maximum Availability. Martin Schmitter 28th Sep 2011

WELCOME. Oracle Almost Maximum Availability. Martin Schmitter 28th Sep 2011 WELCOME Almost Maximum Availability Martin Schmitter 28th Sep 2011 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 1 About me.. Consultant at Trivadis,

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

Introduction to WebSphere Platform Messaging (WPM)

Introduction to WebSphere Platform Messaging (WPM) Introduction to WebSphere Platform Messaging (WPM) Unit Objectives This unit will discuss: WAS 5 and Messaging Overview of New WebSphere Messaging System Service Integration Bus Architecture and Components

More information

IBD Intergiciels et Bases de Données

IBD Intergiciels et Bases de Données Overview of lectures and practical work IBD Intergiciels et Bases de Données Multi-tier distributed web applications Fabien Gaud, Fabien.Gaud@inrialpes.fr http://www-ufrima.imag.fr/ Placard électronique

More information

Vortex Whitepaper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems

Vortex Whitepaper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems Vortex Whitepaper Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems www.adlinktech.com 2017 Table of Contents 1. Introduction........ P 3 2. Iot and

More information

Application Development Considerations

Application Development Considerations IBM Software Group WebSphere MQ V7.0 Application Development Considerations An IBM Proof of Technology 2008 IBM Corporation Unit Agenda Basic WebSphere MQ API Constructs Java Message Service (JMS) Programming

More information

Deccansoft Software Services. J2EE Syllabus

Deccansoft Software Services. J2EE Syllabus Overview: Java is a language and J2EE is a platform which implements java language. J2EE standard for Java 2 Enterprise Edition. Core Java and advanced java are the standard editions of java whereas J2EE

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

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

Port Utilization in Finesse

Port Utilization in Finesse Utilization in Finesse Utilization Table Columns, page 1 Finesse Utilization, page 2 Utilization Table Columns The columns in the port utilization tables in this document describe the following: A value

More information

Enterprise Java in 2012 and Beyond From Java EE 6 To Cloud Computing

Enterprise Java in 2012 and Beyond From Java EE 6 To Cloud Computing Enterprise Java in 2012 and Beyond From Java EE 6 To Cloud Computing Jürgen Höller, Principal Engineer, SpringSource 2012 SpringSource, A division of VMware. All rights reserved Deployment Platforms: Becoming

More information

Services Oriented Architecture and the Enterprise Services Bus

Services Oriented Architecture and the Enterprise Services Bus IBM Software Group Services Oriented Architecture and the Enterprise Services Bus The next step to an on demand business Geoff Hambrick Distinguished Engineer, ISSW Enablement Team ghambric@us.ibm.com

More information

Big Data Applications with Spring XD

Big Data Applications with Spring XD Big Data Applications with Spring XD Thomas Darimont, Software Engineer, Pivotal Inc. @thomasdarimont Unless otherwise indicated, these slides are 2013-2015 Pivotal Software, Inc. and licensed under a

More information

Tapestry. Code less, deliver more. Rayland Jeans

Tapestry. Code less, deliver more. Rayland Jeans Tapestry Code less, deliver more. Rayland Jeans What is Apache Tapestry? Apache Tapestry is an open-source framework designed to create scalable web applications in Java. Tapestry allows developers to

More information

New Features in EJB 3.1

New Features in EJB 3.1 New Features in EJB 3.1 Sangeetha S E-Commerce Research Labs, Infosys Technologies Limited 2010 Infosys Technologies Limited Agenda New Features in EJB 3.1 No Interface View EJB Components in WAR Singleton

More information

Identifying Performance Problems in a Multitenant Environment

Identifying Performance Problems in a Multitenant Environment Identifying Performance Problems in a Multitenant Environment Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

IBM Software and POWER7: Powering performance for Smarter Planet Solutions

IBM Software and POWER7: Powering performance for Smarter Planet Solutions Branislav Hudec WebSphere Technical Sales Filip Slánička DB2 Technical Sales IBM Software and POWER7: Powering performance for Smarter Planet Solutions WebSphere on POWER7 Delivering benefits for your

More information

Port Utilization in Unified CVP

Port Utilization in Unified CVP Utilization in Unified CVP Utilization Table Columns, page 1 Unified CVP Utilization, page 2 Utilization Table Columns The columns in the port utilization tables in this document describe the following:

More information

Flexible EAI-Lösungen mit Glassfish

Flexible EAI-Lösungen mit Glassfish Flexible EAI-Lösungen mit Glassfish Praxisbeispiele und War Stories zu EAI-Pattern Alexander Heusingfeld, @goldstift Martin Huber, @waterback We take care of it - personally! EAI Pattern in 2013? EAI

More information