SlideShare a Scribd company logo
1 of 47
Using State-Engine as an SCA Spring component in SOA Suite 11g DOAG Konferenz 2010 Guido Schmutz Technology Manager Oracle ACE Director for FMW & SOA  17.11.2010, Nürnberg
SOA Suite 11g Spring Component / Apache Commons SCXML Introduction Guido Schmutz Working for Trivadis for more than 13 years leading and independent IT service company operating in Germany, Austria and Switzerland Oracle ACE Director for Fusion Middleware and SOA Co-Author of different books Consultant, Trainer Software Architect for Java, Oracle, SOA and EDA More than 20 years of software development experience Contact: guido.schmutz@trivadis.com Blog: http://guidoschmutz.wordpress.com/
Trivadisfacts & figures Using State-Engine as an SCA Spring component in SOA Suite 11g 3 ,[object Object]
Financially independent and sustainably profitable
Key figures 2009
Revenue CHF 100 / EUR 66 mio.
Services for more than 650 clients in over 1‘600 projects
Over 160 Service Level Agreements
More than 5'000 training participants
Research and development budget: CHF 5.0 / EUR 3.3 mio.CUSTOMER BUSINESS INTEGRATION SERVICES IT SOLUTIONS, SERVICES, & PRODUCTS Businessdepartments Enterprise Content Management Business Intelligence InfrastructureEngineering ApplicationDevelopment Training Managed Services          Business Integration Services         ITdepartments Integration, Application Performance Management, Security TECHNOLOGIESOracle, Microsoft, IBM, Open Source
Using State-Engine as an SCA Spring component in SOA Suite 11g 4 Whywearespecial Customer-specific  solution competence and vendor independence ,[object Object]
guarantees repeatable quality and a safe executionTechnology competence ,[object Object]
has its own Technology Center and strives for technological excellence Solution and integration expertise ,[object Object]
Combines technological expertise with an understanding of the specific business needs of the clientSupport for the entire IT project lifecycle ,[object Object]
provides the appropriate combination of solutions and services for every „level of maturity“ ,[object Object]
What is a state machine ? A state machine diagram models the behaviour of a single object/system specifies the sequence of events that an object/system goes through during its lifetime in response to events Using State-Engine as an SCA Spring component in SOA Suite 11g
What is State Chart XML (SCXML) ? Generic and environment agnostic markup language for state machine definition W3C Working Draft  (13 May 2010) http://www.w3.org/TR/scxml/ Based on UML 2.0 and Harel State transition tables Features States and transitions Data Model Executable content External communications module History Using State-Engine as an SCA Spring component in SOA Suite 11g
What is Apache Commons SCXML ? http://commons.apache.org/scxml/ Implements State Chart XML (SCXML) The only Java engine which implements SCXML (as far as I know) The "standard actions" defined by the SCXML specification are <var>, <assign>, <log>, <send>, <cancel>, <if>, <elseif>, <else>.  Using State-Engine as an SCA Spring component in SOA Suite 11g
Result Not successfull ! Issues with the classloader when trying to initiate the Commons SCXML (ClassNotFoundException)! I‘m talking to the Oracle Development to see how to solve that! Using State-Engine as an SCA Spring component in SOA Suite 11g
Summary There can be issues with the classloader Make sure that you test what you want to integrate right upfront So this is it !??? Of course not, just changed my agenda slightly and I will present some interesting use cases with the Spring Component in SOA Suite 11g Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Do not create sexy and fancy abstracts just to get accepted to a conference ;-) Or make sure before that it‘s somehow achievable....
Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What are State Machines What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
SOA Suite 11gR1 PS2 Architecture BPMN 2.0,  BPEL Shared BPMN Model Web based customization BPA Rich End User Interaction Business View  MS Office  Workspace Process Portal (WC spaces) Process Composer BPM Studio (with Business and IT views) Human Workflow (+AMX, AG, Orgn) Business Rules Mediator BPMN BPEL Spring B2B Unified Runtime Process Analytics Policy Manager Common JCA-based connectivity infrastructure BAM Optimized binding Oracle Service Bus Proc Cubes EM console +BPMN Screens Repository 12							Oracle Restricted and Confidential
The Spring component „Officially“ introduced with SOA Suite 11g PS2 Allows to publish Java Interfaces implemented by Spring beans as a service that can be used inside a composite application By that part of the logic required in a SOA composite can be implemented in Java and used like any other service component a Spring Ban can be reused within the composite and even outside the composite either as an EJB or as a Web Service Additionally the Java beans in the Spring Context component can call services exposed by other Service components and Adapter bindings Java bean can retrieve records from a database table using the DB adapter Using State-Engine as an SCA Spring component in SOA Suite 11g
Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What are State Machines What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
The HelloWorldImpl POJO used inside a Spring component Hello World – Step 1 Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Make sure to compile classes before wiring!
Hello World – Step 2 Add the GreetingProvider strategy interface to provide an extended greeting message Using State-Engine as an SCA Spring component in SOA Suite 11g
Hello World – Step 3 Implement the GreetingProvider as a separate Spring component and wire it to the HelloWorld component Same type
Hello World – Step 4 Implement the GreetingProvider as a Mediator component and wire it to the HelloWorld component Lessons learnt: if you delete a wire, the <sca:reference> element is also removed
<sca:service> Element Declares a Spring bean that SCA exposes as a service Takes the following attributes Name the name of the service (required) Type The fully qualified Java type of the Java class to be exposed as an SCA service (required) Target The bean to be exposed as a service (required)	 Using State-Engine as an SCA Spring component in SOA Suite 11g
<sca:reference> Element Declares a Spring bean representing an SCA service external to the Spring application context Takes the follwing attributes Name The name of the reference (required) Type The fully-qualified Java type of the interface or class representing the remote service (required) Default The target bean for the reference if none is specified (optional) Using State-Engine as an SCA Spring component in SOA Suite 11g
Different granularities of componentization Single SCA-level component / one spring bean Single SCA-level component /multiple spring beans Multiple SCA-level Spring components SCA Spring Component and Meditor component Using State-Engine as an SCA Spring component in SOA Suite 11g
Callback the concept of callbacks does not exist in the spring framework  For Oracle SOA Suite a callback is specified as a 2nd port type for interface.wsdl or a 2nd Java name for interface.java The spring metadata has only sca:services and sca:references and no way to specify a callback To design a callback with spring, you must provide sca:services and sca:references with a specific name create a sca:service and sca:reference using naming conventions of someService and someServiceCallback Oracle SOA Suite recognizes this convention and creates a callback Using State-Engine as an SCA Spring component in SOA Suite 11g
Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What are State Machines What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
Use Case 1: Accessing the Spring Context Use Case: Want to access/lookup another bean from the spring context Idea: Implement the Lifecycle Interface Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Only a BeanFactory and not an ApplicationContext is created!
Use Case 2: Groovy Script Use Case: Want to use the Spring Dynamic Language Support to execute a Groovy Script Idea: use the <lang:groovy> tag and reference the script and put the external libraries in SCA-INF/lib of the SOA project  Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Classloader is not my friend!
Use Case 3: Executing Task asynchronously Use Case: Want to execute a possible long running Java method asynchronously Idea: use the Spring TaskExecutor abstraction Using State-Engine as an SCA Spring component in SOA Suite 11g
Use Case 4: Schedule a Job Use Case: Want to Schedule a job/task/service to run repeatedly Idea: use a Timer to schedule the call of a „service references“  Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: „free-floating“ Spring bean (timerFactory) is not initialized! need to be referenced from a bean which is externalized as a service!
Use Case 5: Schedule Job torun delayed Use Case: Want to schedule a method/service to run delayed Idea: use a Timer and schedule the call of a „service references“ through a service call  Using State-Engine as an SCA Spring component in SOA Suite 11g
Use Case 6: Caching Use Case: Want to cache some information and access it in a next request Idea: use a Map and store the information in there  Could be further extended by using Oracle Coherence to get access to the Grid ! Using State-Engine as an SCA Spring component in SOA Suite 11g
Use Case 7: JMX managed beans Use Case: Want to change the properties of a Spring bean at runtime Idea: use the Spring JMX abstraction to externalize a Spring bean as an MBean Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Only a BeanFactory and not an ApplicationContext is created!
Summary Spring Component is a very nice and long awaited feature! Uses cases for it are endless….. Just presented some use cases to whet your appetite!  Only use the Spring Component if there is no out-of-the-box feature offered by SOA Suite itself Make sure that your external library works before you invest too much time! Actual books where you’llfind more informationabout SOA Suite: Using State-Engine as an SCA Spring component in SOA Suite 11g
Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What is a State Machine What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
Indroduction A state describes the condition of an object at a given point in its lifetime "A state is a condition or situation during the life of an object during which it satisfies some condition, performs some activity, or waits for some event" [Booch et al. (1999) UML Language User Guide, p291] A state diagram describes all possible states of an object & the paths to get from one state to another when an external event is received Using State-Engine as an SCA Spring component in SOA Suite 11g
What is a state machine ? A state machine diagram models the behaviour of a single object/system specifies the sequence of events that an object/system goes through during its lifetime in response to events Using State-Engine as an SCA Spring component in SOA Suite 11g
Building Blocks Start and End States State Actions Transitions Self Transitions Using State-Engine as an SCA Spring component in SOA Suite 11g
Building Blocks Compound States History State Using State-Engine as an SCA Spring component in SOA Suite 11g
Building Blocks Concurrent Blocks Using State-Engine as an SCA Spring component in SOA Suite 11g

More Related Content

What's hot

Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010
arif44
 
Apex basics-for Beginners
Apex basics-for BeginnersApex basics-for Beginners
Apex basics-for Beginners
hrakhra
 

What's hot (20)

Spring Framework
Spring FrameworkSpring Framework
Spring Framework
 
NLOUG 2017- Oracle WebCenter Portal 12c Performance
NLOUG 2017- Oracle WebCenter Portal 12c PerformanceNLOUG 2017- Oracle WebCenter Portal 12c Performance
NLOUG 2017- Oracle WebCenter Portal 12c Performance
 
MidSem
MidSemMidSem
MidSem
 
Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010
 
Introduction to Ibatis by Rohit
Introduction to Ibatis by RohitIntroduction to Ibatis by Rohit
Introduction to Ibatis by Rohit
 
NLOUG 2018 - Future of JSF and ADF
NLOUG 2018 - Future of JSF and ADFNLOUG 2018 - Future of JSF and ADF
NLOUG 2018 - Future of JSF and ADF
 
Understanding router state in angular 7 passing data through angular router s...
Understanding router state in angular 7 passing data through angular router s...Understanding router state in angular 7 passing data through angular router s...
Understanding router state in angular 7 passing data through angular router s...
 
Abap proxies
Abap proxiesAbap proxies
Abap proxies
 
Spring mvc
Spring mvcSpring mvc
Spring mvc
 
Java 9 Features
Java 9 FeaturesJava 9 Features
Java 9 Features
 
Java EE 8 Web Frameworks: A Look at JSF vs MVC
Java EE 8 Web Frameworks: A Look at JSF vs MVCJava EE 8 Web Frameworks: A Look at JSF vs MVC
Java EE 8 Web Frameworks: A Look at JSF vs MVC
 
Servlet programming
Servlet programmingServlet programming
Servlet programming
 
Angular 2.0
Angular  2.0Angular  2.0
Angular 2.0
 
Amis conference soa deployment. the dirty tricks using bamboo, nexus and xl ...
Amis conference soa deployment. the dirty tricks using  bamboo, nexus and xl ...Amis conference soa deployment. the dirty tricks using  bamboo, nexus and xl ...
Amis conference soa deployment. the dirty tricks using bamboo, nexus and xl ...
 
Spring MVC Framework
Spring MVC FrameworkSpring MVC Framework
Spring MVC Framework
 
Abap proxy
Abap proxyAbap proxy
Abap proxy
 
8i r3 nfs
8i r3 nfs8i r3 nfs
8i r3 nfs
 
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
 
Apex basics-for Beginners
Apex basics-for BeginnersApex basics-for Beginners
Apex basics-for Beginners
 
JavaFX Enterprise
JavaFX EnterpriseJavaFX Enterprise
JavaFX Enterprise
 

Similar to Using state-engine-as-sca-component-final

ApacheCon NA 2010 - Building Apps with Apache Tuscany
ApacheCon NA 2010 - Building Apps with Apache TuscanyApacheCon NA 2010 - Building Apps with Apache Tuscany
ApacheCon NA 2010 - Building Apps with Apache Tuscany
Jean-Sebastien Delfino
 
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache TuscanyApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
Jean-Sebastien Delfino
 
Soa admin training
Soa admin trainingSoa admin training
Soa admin training
Anil Ncodeit
 

Similar to Using state-engine-as-sca-component-final (20)

## Introducing a reactive Scala-Akka based system in a Java centric company
## Introducing a reactive Scala-Akka based system in a Java centric company## Introducing a reactive Scala-Akka based system in a Java centric company
## Introducing a reactive Scala-Akka based system in a Java centric company
 
Building apps with tuscany
Building apps with tuscanyBuilding apps with tuscany
Building apps with tuscany
 
ApacheCon NA 2010 - Building Apps with Apache Tuscany
ApacheCon NA 2010 - Building Apps with Apache TuscanyApacheCon NA 2010 - Building Apps with Apache Tuscany
ApacheCon NA 2010 - Building Apps with Apache Tuscany
 
Salesforce Lightning Web Components Overview
Salesforce Lightning Web Components OverviewSalesforce Lightning Web Components Overview
Salesforce Lightning Web Components Overview
 
The Web on OSGi: Here's How
The Web on OSGi: Here's HowThe Web on OSGi: Here's How
The Web on OSGi: Here's How
 
Moduarlity patterns with OSGi
Moduarlity patterns with OSGiModuarlity patterns with OSGi
Moduarlity patterns with OSGi
 
FraSCAti Adaptive and Reflective Middleware of Middleware
FraSCAti Adaptive and Reflective Middleware of MiddlewareFraSCAti Adaptive and Reflective Middleware of Middleware
FraSCAti Adaptive and Reflective Middleware of Middleware
 
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache TuscanyApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
ApacheCon NA 2010 - Developing Composite Apps for the Cloud with Apache Tuscany
 
Dataflow vs spark streaming
Dataflow vs spark streamingDataflow vs spark streaming
Dataflow vs spark streaming
 
Lightning web components
Lightning web components Lightning web components
Lightning web components
 
Introducing SOA and Oracle SOA Suite 11g for Database Professionals
Introducing SOA and Oracle SOA Suite 11g for Database ProfessionalsIntroducing SOA and Oracle SOA Suite 11g for Database Professionals
Introducing SOA and Oracle SOA Suite 11g for Database Professionals
 
Report From Oracle Open World 2008 AMIS 2 October2008
Report From Oracle Open World 2008 AMIS 2 October2008Report From Oracle Open World 2008 AMIS 2 October2008
Report From Oracle Open World 2008 AMIS 2 October2008
 
Primavera integration possibilities Technical overview - Oracle Primavera Col...
Primavera integration possibilities Technical overview - Oracle Primavera Col...Primavera integration possibilities Technical overview - Oracle Primavera Col...
Primavera integration possibilities Technical overview - Oracle Primavera Col...
 
Declaring Server App Components in Pure Java
Declaring Server App Components in Pure JavaDeclaring Server App Components in Pure Java
Declaring Server App Components in Pure Java
 
Apache Shindig, from Server Side Portlets to Open Social Gadgets
Apache Shindig, from Server Side Portlets to Open Social GadgetsApache Shindig, from Server Side Portlets to Open Social Gadgets
Apache Shindig, from Server Side Portlets to Open Social Gadgets
 
What's New for Presentation in Visual Studio 2008 SP1
What's New for Presentation in Visual Studio 2008 SP1What's New for Presentation in Visual Studio 2008 SP1
What's New for Presentation in Visual Studio 2008 SP1
 
St Hilaire Ajax Start Odtug Nov 2009
St Hilaire   Ajax Start Odtug Nov 2009St Hilaire   Ajax Start Odtug Nov 2009
St Hilaire Ajax Start Odtug Nov 2009
 
Soa admin training
Soa admin trainingSoa admin training
Soa admin training
 
Soa admin training
Soa admin trainingSoa admin training
Soa admin training
 
Soa admin training
Soa admin trainingSoa admin training
Soa admin training
 

More from Guido Schmutz

Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?
Guido Schmutz
 
Location Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache KafkaLocation Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache Kafka
Guido Schmutz
 
Location Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using KafkaLocation Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using Kafka
Guido Schmutz
 
Streaming Visualisation
Streaming VisualisationStreaming Visualisation
Streaming Visualisation
Guido Schmutz
 
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache KafkaSolutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Guido Schmutz
 

More from Guido Schmutz (20)

30 Minutes to the Analytics Platform with Infrastructure as Code
30 Minutes to the Analytics Platform with Infrastructure as Code30 Minutes to the Analytics Platform with Infrastructure as Code
30 Minutes to the Analytics Platform with Infrastructure as Code
 
Event Broker (Kafka) in a Modern Data Architecture
Event Broker (Kafka) in a Modern Data ArchitectureEvent Broker (Kafka) in a Modern Data Architecture
Event Broker (Kafka) in a Modern Data Architecture
 
Big Data, Data Lake, Fast Data - Dataserialiation-Formats
Big Data, Data Lake, Fast Data - Dataserialiation-FormatsBig Data, Data Lake, Fast Data - Dataserialiation-Formats
Big Data, Data Lake, Fast Data - Dataserialiation-Formats
 
ksqlDB - Stream Processing simplified!
ksqlDB - Stream Processing simplified!ksqlDB - Stream Processing simplified!
ksqlDB - Stream Processing simplified!
 
Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?Kafka as your Data Lake - is it Feasible?
Kafka as your Data Lake - is it Feasible?
 
Event Hub (i.e. Kafka) in Modern Data Architecture
Event Hub (i.e. Kafka) in Modern Data ArchitectureEvent Hub (i.e. Kafka) in Modern Data Architecture
Event Hub (i.e. Kafka) in Modern Data Architecture
 
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache KafkaSolutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
 
Event Hub (i.e. Kafka) in Modern Data (Analytics) Architecture
Event Hub (i.e. Kafka) in Modern Data (Analytics) ArchitectureEvent Hub (i.e. Kafka) in Modern Data (Analytics) Architecture
Event Hub (i.e. Kafka) in Modern Data (Analytics) Architecture
 
Building Event Driven (Micro)services with Apache Kafka
Building Event Driven (Micro)services with Apache KafkaBuilding Event Driven (Micro)services with Apache Kafka
Building Event Driven (Micro)services with Apache Kafka
 
Location Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache KafkaLocation Analytics - Real-Time Geofencing using Apache Kafka
Location Analytics - Real-Time Geofencing using Apache Kafka
 
Solutions for bi-directional integration between Oracle RDBMS and Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS and Apache KafkaSolutions for bi-directional integration between Oracle RDBMS and Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS and Apache Kafka
 
What is Apache Kafka? Why is it so popular? Should I use it?
What is Apache Kafka? Why is it so popular? Should I use it?What is Apache Kafka? Why is it so popular? Should I use it?
What is Apache Kafka? Why is it so popular? Should I use it?
 
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache KafkaSolutions for bi-directional integration between Oracle RDBMS & Apache Kafka
Solutions for bi-directional integration between Oracle RDBMS & Apache Kafka
 
Location Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using KafkaLocation Analytics Real-Time Geofencing using Kafka
Location Analytics Real-Time Geofencing using Kafka
 
Streaming Visualisation
Streaming VisualisationStreaming Visualisation
Streaming Visualisation
 
Kafka as an event store - is it good enough?
Kafka as an event store - is it good enough?Kafka as an event store - is it good enough?
Kafka as an event store - is it good enough?
 
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache KafkaSolutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
Solutions for bi-directional Integration between Oracle RDMBS & Apache Kafka
 
Fundamentals Big Data and AI Architecture
Fundamentals Big Data and AI ArchitectureFundamentals Big Data and AI Architecture
Fundamentals Big Data and AI Architecture
 
Location Analytics - Real-Time Geofencing using Kafka
Location Analytics - Real-Time Geofencing using Kafka Location Analytics - Real-Time Geofencing using Kafka
Location Analytics - Real-Time Geofencing using Kafka
 
Streaming Visualization
Streaming VisualizationStreaming Visualization
Streaming Visualization
 

Recently uploaded

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Recently uploaded (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

Using state-engine-as-sca-component-final

  • 1. Using State-Engine as an SCA Spring component in SOA Suite 11g DOAG Konferenz 2010 Guido Schmutz Technology Manager Oracle ACE Director for FMW & SOA 17.11.2010, Nürnberg
  • 2. SOA Suite 11g Spring Component / Apache Commons SCXML Introduction Guido Schmutz Working for Trivadis for more than 13 years leading and independent IT service company operating in Germany, Austria and Switzerland Oracle ACE Director for Fusion Middleware and SOA Co-Author of different books Consultant, Trainer Software Architect for Java, Oracle, SOA and EDA More than 20 years of software development experience Contact: guido.schmutz@trivadis.com Blog: http://guidoschmutz.wordpress.com/
  • 3.
  • 4. Financially independent and sustainably profitable
  • 6. Revenue CHF 100 / EUR 66 mio.
  • 7. Services for more than 650 clients in over 1‘600 projects
  • 8. Over 160 Service Level Agreements
  • 9. More than 5'000 training participants
  • 10. Research and development budget: CHF 5.0 / EUR 3.3 mio.CUSTOMER BUSINESS INTEGRATION SERVICES IT SOLUTIONS, SERVICES, & PRODUCTS Businessdepartments Enterprise Content Management Business Intelligence InfrastructureEngineering ApplicationDevelopment Training Managed Services Business Integration Services ITdepartments Integration, Application Performance Management, Security TECHNOLOGIESOracle, Microsoft, IBM, Open Source
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16. What is a state machine ? A state machine diagram models the behaviour of a single object/system specifies the sequence of events that an object/system goes through during its lifetime in response to events Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 17. What is State Chart XML (SCXML) ? Generic and environment agnostic markup language for state machine definition W3C Working Draft (13 May 2010) http://www.w3.org/TR/scxml/ Based on UML 2.0 and Harel State transition tables Features States and transitions Data Model Executable content External communications module History Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 18. What is Apache Commons SCXML ? http://commons.apache.org/scxml/ Implements State Chart XML (SCXML) The only Java engine which implements SCXML (as far as I know) The "standard actions" defined by the SCXML specification are <var>, <assign>, <log>, <send>, <cancel>, <if>, <elseif>, <else>. Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 19. Result Not successfull ! Issues with the classloader when trying to initiate the Commons SCXML (ClassNotFoundException)! I‘m talking to the Oracle Development to see how to solve that! Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 20. Summary There can be issues with the classloader Make sure that you test what you want to integrate right upfront So this is it !??? Of course not, just changed my agenda slightly and I will present some interesting use cases with the Spring Component in SOA Suite 11g Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Do not create sexy and fancy abstracts just to get accepted to a conference ;-) Or make sure before that it‘s somehow achievable....
  • 21. Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What are State Machines What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 22. SOA Suite 11gR1 PS2 Architecture BPMN 2.0, BPEL Shared BPMN Model Web based customization BPA Rich End User Interaction Business View MS Office Workspace Process Portal (WC spaces) Process Composer BPM Studio (with Business and IT views) Human Workflow (+AMX, AG, Orgn) Business Rules Mediator BPMN BPEL Spring B2B Unified Runtime Process Analytics Policy Manager Common JCA-based connectivity infrastructure BAM Optimized binding Oracle Service Bus Proc Cubes EM console +BPMN Screens Repository 12 Oracle Restricted and Confidential
  • 23. The Spring component „Officially“ introduced with SOA Suite 11g PS2 Allows to publish Java Interfaces implemented by Spring beans as a service that can be used inside a composite application By that part of the logic required in a SOA composite can be implemented in Java and used like any other service component a Spring Ban can be reused within the composite and even outside the composite either as an EJB or as a Web Service Additionally the Java beans in the Spring Context component can call services exposed by other Service components and Adapter bindings Java bean can retrieve records from a database table using the DB adapter Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 24. Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What are State Machines What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 25. The HelloWorldImpl POJO used inside a Spring component Hello World – Step 1 Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Make sure to compile classes before wiring!
  • 26. Hello World – Step 2 Add the GreetingProvider strategy interface to provide an extended greeting message Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 27. Hello World – Step 3 Implement the GreetingProvider as a separate Spring component and wire it to the HelloWorld component Same type
  • 28. Hello World – Step 4 Implement the GreetingProvider as a Mediator component and wire it to the HelloWorld component Lessons learnt: if you delete a wire, the <sca:reference> element is also removed
  • 29. <sca:service> Element Declares a Spring bean that SCA exposes as a service Takes the following attributes Name the name of the service (required) Type The fully qualified Java type of the Java class to be exposed as an SCA service (required) Target The bean to be exposed as a service (required) Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 30. <sca:reference> Element Declares a Spring bean representing an SCA service external to the Spring application context Takes the follwing attributes Name The name of the reference (required) Type The fully-qualified Java type of the interface or class representing the remote service (required) Default The target bean for the reference if none is specified (optional) Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 31. Different granularities of componentization Single SCA-level component / one spring bean Single SCA-level component /multiple spring beans Multiple SCA-level Spring components SCA Spring Component and Meditor component Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 32. Callback the concept of callbacks does not exist in the spring framework For Oracle SOA Suite a callback is specified as a 2nd port type for interface.wsdl or a 2nd Java name for interface.java The spring metadata has only sca:services and sca:references and no way to specify a callback To design a callback with spring, you must provide sca:services and sca:references with a specific name create a sca:service and sca:reference using naming conventions of someService and someServiceCallback Oracle SOA Suite recognizes this convention and creates a callback Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 33. Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What are State Machines What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 34. Use Case 1: Accessing the Spring Context Use Case: Want to access/lookup another bean from the spring context Idea: Implement the Lifecycle Interface Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Only a BeanFactory and not an ApplicationContext is created!
  • 35. Use Case 2: Groovy Script Use Case: Want to use the Spring Dynamic Language Support to execute a Groovy Script Idea: use the <lang:groovy> tag and reference the script and put the external libraries in SCA-INF/lib of the SOA project Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Classloader is not my friend!
  • 36. Use Case 3: Executing Task asynchronously Use Case: Want to execute a possible long running Java method asynchronously Idea: use the Spring TaskExecutor abstraction Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 37. Use Case 4: Schedule a Job Use Case: Want to Schedule a job/task/service to run repeatedly Idea: use a Timer to schedule the call of a „service references“ Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: „free-floating“ Spring bean (timerFactory) is not initialized! need to be referenced from a bean which is externalized as a service!
  • 38. Use Case 5: Schedule Job torun delayed Use Case: Want to schedule a method/service to run delayed Idea: use a Timer and schedule the call of a „service references“ through a service call Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 39. Use Case 6: Caching Use Case: Want to cache some information and access it in a next request Idea: use a Map and store the information in there Could be further extended by using Oracle Coherence to get access to the Grid ! Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 40. Use Case 7: JMX managed beans Use Case: Want to change the properties of a Spring bean at runtime Idea: use the Spring JMX abstraction to externalize a Spring bean as an MBean Using State-Engine as an SCA Spring component in SOA Suite 11g Lessons learnt: Only a BeanFactory and not an ApplicationContext is created!
  • 41. Summary Spring Component is a very nice and long awaited feature! Uses cases for it are endless….. Just presented some use cases to whet your appetite! Only use the Spring Component if there is no out-of-the-box feature offered by SOA Suite itself Make sure that your external library works before you invest too much time! Actual books where you’llfind more informationabout SOA Suite: Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 42. Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What is a State Machine What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 43. Indroduction A state describes the condition of an object at a given point in its lifetime "A state is a condition or situation during the life of an object during which it satisfies some condition, performs some activity, or waits for some event" [Booch et al. (1999) UML Language User Guide, p291] A state diagram describes all possible states of an object & the paths to get from one state to another when an external event is received Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 44. What is a state machine ? A state machine diagram models the behaviour of a single object/system specifies the sequence of events that an object/system goes through during its lifetime in response to events Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 45. Building Blocks Start and End States State Actions Transitions Self Transitions Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 46. Building Blocks Compound States History State Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 47. Building Blocks Concurrent Blocks Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 48. Agenda Data are always part of the game. Spring Component of SOA Suite 11g Introduction Hello World “Advanced” Use Cases State Machine and Apache Commons SCXML What is a State Machine What is Apache Commons SCXML Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 49. What is State Chart XML (SCXML) Generic and environment agnostic markup language for state machine definition W3C Working Draft (13 May 2010) http://www.w3.org/TR/scxml/ Based on UML 2.0 and Harel State transition tables Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 50. SCXML features States and transitions Composite, Orthogonal and Final Events, guards and targets Data Model Pluggable data representation and expression language Executable content On entry, exit or transition Extensible External communications module Send, cancel Invoke, Finalize History Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 51. Apache Commons SCXML http://commons.apache.org/scxml/ Implements State Chart XML (SCXML) The only Java engine which implements SCXML (as far as I know) The "standard actions" defined by the SCXML specification are <var>, <assign>, <log>, <send>, <cancel>, <if>, <elseif>, <else>. Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 52. State Actions Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 53. Transitions (simple, condition, self) Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 54. Parallel States Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 55. Timeout with Custom Action SCXML can be extended with custom action Used for timeout transitions Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 56. Send action <send> can used to send events and data to external systems, including external SCXML Interpreters, or to raise events in the current SCXML session Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 57. Using SCXML in a SOA Implemented a Spring Wrapper around Commons SCXML Exposed a Web Service interface through Spring-WS Created Publisher compontents to publish/signal events via Event Delivery Network (EDN) or Web Services Using State-Engine as an SCA Spring component in SOA Suite 11g
  • 58. Thank you! ODTUG 2010 Guido Schmutz,Technology Manager / Partner Trivadis AG 29.6.2010, Washington

Editor's Notes

  1. Hier könnte eine Kopfzeile stehen 24.09.10 Hier könnte eine Fusszeile stehen Ihr müsst nicht alle Punkt aufzählen. Vielleicht der Hinweis, CH-Unternehmen mit 13 Standorten in D-A-CH, Anzahl Mitarbeiter und das wir finanziell unabhängig sind.