Oracle BPEL Training
Oracle BPEL Training
Oracle BPEL Training
Basheer Khan
Innowave Technology
Agenda
• Concepts
• Architecture
• Installation
• Hello World BPEL Process
• Synchronous Web Service
• Asynchronous Web Service
• Parallel Processing
• Conditional Branching
Agenda (cont’d)
• Database Connections
• File Load BPEL Process
• Polling Tables
• Changing Payload
• Notifications
• Sequences
• Stress Testing
• Application Integration
Concepts
Concepts – Web Services
– Can be invoked
Service
Broker
Find Register
Service
Contract
Service Service
Consumer Provider
Client Service
Concepts – Web Services
Gas
Phone
Power
Water
Banks Warehouses
XYZ, Inc
Customers Vendors
Portals
J2EE Applications
.NET Client Web Client Portal
(Support) (Self Service) (Self Service) Servlets
PROCESS FLOWS
BPEL
Orchestration XSLT
XQuery
Java Service
? Database
Stored Procedures
J2EE
ERP
Oracle, SAP, etc.
KEY FEATURES
KEY FEATURES
• WSIF + JCA + XML
• Rich Metadata
• Requests and Events
• Optimized Bindings
• 200+ Systems
• Fail Over Management
BPEL Transformations
KEY FEATURES
• Drag-and-drop Interface
• Built-in Library of Functions
• Support for Lists and Iterations
• Auto-mapping
• Version Resiliency
BPEL Console
KEY FEATURES
• Visual Monitoring
• Auditing
• BPEL Debugging
• In-flight Instance Administration
• Performance Tuning
• Partitioning/Domains
BPEL High Availability
BPEL Server
LOAD BALANCER
App. Server
BPEL-Optimized
SOAP Stack
Dehydration Store
(Oracle Database)
Stateless
Architecture BPEL Server Support for large BPEL
• Clustering App. Server
Processes (20,000+ activities)
• Fail Over
Installation
BPEL Download
Hello World!
Problem/Use Case
• How do I implement, compile, deploy and run my first BPEL
Process? I would like that BPEL Process to generate and return
a greeting
Lab 1
• Create a new synchronous BPEL process named
MyHelloWorld.
• Add “Hello World” logic to it to return the string “Hello ” plus the
input string submitted to the process.
What Did We Learn?
• How to create a BPEL project (for a synchronous BPEL flow)
• How to assign a value to an XML message/variable
• How to build and deploy a BPEL process
• How to initiate and test a BPEL process
Synchronous Web Service
Problem/Use Case
• How do I invoke a synchronous credit rating web service from
within a BPEL process?
Self-Described Interface
(WSDL)
CreditRatingInput
Web Service
Functional Building Block
process operation returns credit rating
CreditRatingResponse
Transport
(SOAP Over HTTP)
Lab 2
• Create a new asynchronous BPEL project named MyLoanFlow.
• Change the interface to your BPEL process to accept a
LoanApplication document as input and return a LoanOffer.
• Add the logic to MyLoanFlow to invoke the CreditRatingService
in C:\orabpel\samples\utils\CreditRatingService.
• Make sure that the input to the credit rating service comes from
your LoanApplication input variable and the credit rating
response is placed back in the loan application as well.
What Did We Learn?
• How to create an asynchronous BPEL process
• Changing the input and output types associated with a BPEL
process
• How to add a new partnerLink to a BPEL process
• How to invoke that partnerLink from within the process flow
• How to create the variables referencing the messages that will
be sent to and received from the BPEL process
• How to initialize a variable (input and output mapping)
Asynchronous Web Service
Problem/Use Case
• American Loan exposes a web service that can take anywhere from a couple of
minutes to a couple days to process a loan application into a loan offer. How can
I leverage that asynchronous loan processor service as part of my BPEL
Process?
[2:05] receive
Initiate Port [2:06] process…
[2:22] callback
initiate
American Loan
Callback Port Asynchronous Web Service
onResult callback
Lab 3
• Add the logic to your flow to invoke the asynchronous
UnitedLoan service.
What Did We Learn?
• Asynchrony increases reliability and scalability
• How to combine two WSDL port types into an asynchronous
conversation
• How to initiate an asynchronous web service (<invoke>)
• How to wait for an asynchronous web service to callback
(<receive>)
• How WS-Addressing is used to exchange correlation Id and
callback location information
Parallel Processing
Problem/Use Case
• Given that AmericanLoan and UnitedLoan can take up to 5 days
to process a loan request, is it possible to invoke those services
in parallel?
In Parallel
United Loan
American Loan
Lab 4
• Enclose your invocation of the credit rating service in a <scope>
activity (just for readability, as your flow grows).
• Add a <flow> with two branches/<sequences>’s. Move your
UnitedLoan invocation to one branch and add the logic to
invoke the StarLoan service to the other branch.
What Did We Learn?
• How to split the flow of execution into two parallel branches
Conditional Branching
Problem/Use Case
• I have received two loan offers (one from UnitedLoan and one
from StarLoan). How do I select the one with the lowest rate?
Lab 5
• Add a <switch> activity so that your process returns the better
loan offer (the one with the lower APR).
What Did We Learn?
• How to add a <switch> activity to the process flow
• How to define a case using an XPATH Boolean expression
Database Connections
Problem/Use Case
• How to connected to a database?
Lab 6
• Create a new database connection
What Did We Learn?
• How to create and test a new database connection
File Load
Problem/Use Case
• How do I load data from a text file to a database table?
Lab 7
• Create a new process to read a text file and insert rows into a
database table
What Did We Learn?
• How to read a text file and load it to a database table
Polling Tables
Problem/Use Case
• How do I poll a database table a read new or changed rows?
Lab 8
• Create a new process to poll a database table
What Did We Learn?
• How to poll a database table to read new or changed rows
Changing Payload
Problem/Use Case
• How do I change the default input payload
Lab 9
• Import a schema
• Replace the default payload with the new schema structure
What Did We Learn?
• How to import schemas & replace default payload
Notifications
Notifications
• Exception & Fault Handling
• Events & Timeouts
Problem/Use Case
• The Credit Rating service throws a NegativeCredit fault under
certain conditions. How do I catch and manage a fault from
within a BPEL process?
• StarLoan is supposed to call us back with a LoanOffer within an
hour. What happens if it doesn’t? How can I handle this time-out
within my BPEL process?
Lab 10
• Add a <faultHandler> to your scope enclosing the credit rating
service to handle the NegativeCredit faults which may be thrown
by the service.
• Handle the faults in an automated fashion (here, just set the
creditRating value to -1000).
• Use <pick> / <onMessage> / <onAlarm> so that your process
waits a maximum of 1 minute for the StarLoan response.
What Did We Learn?
• How to wrap an <invoke> activity into a scope to be able to
catch and manage a fault
• How to set the duration of a timeout
Sequences
Problem/Use Case
• How do I generate a unique sequence ID?
Lab 11
• Create a database sequence, say, ITEM_SEQ
• Add a datasource entry in data-sources.xml file
<BPEL_HOME>\integration\orabpel\system\appserver\oc4j\j2ee\home\config
<data-source class="com.evermind.sql.DriverManagerDataSource"
name="BPELDemo"
location="jdbc/BPELDemo"
xa-location="BPELDemo"
ejb-location="jdbc/BPELDemo"
connection-driver="oracle.jdbc.OracleDriver"
max-connections="50"
min-connections="10"
connection-retry-interval="30"
max-connect-attempts="10"
url="jdbc:oracle:thin:demo/demo@bkhan:1521:DEMO"/>
Lab 11 (cont’d)
• Stop and restart the BPEL Process Manager
http://irep.oracle.com
Application Integration
http://irep.oracle.com
About Innowave
• Technology Consulting Firm founded in 2005
• Provide unique, innovative solutions using Oracle Applications
and Technology
• Integration Experts: Fusion Middleware, BPEL & Web services
• Implement, upgrade, and enhance Oracle E-Business Suite,
J.D.Edwards, PeopleSoft, and Retek Applications and related
technologies
• Extensive experience and expertise managing global and local
implementations across various industry verticals
• Provide clients with proven methodologies, tools, and templates
specifically tailored to their requirements
Q&A
Basheer Khan
[email protected]