JAVA embedding in Oracle SOA 12c
   In this post we will explore how to EMBED Java or call Java API from Oracle SOA BPEL process.     In order to demonstrated this, I have created a simple JAVA project with 3 classes.  1.        Account.java -> This class represent Account DTO           2.       Party.java -> This class represent a party (customer) DTO         3.       GetNumber.java -> This class contains the method that takes Party DTO as input and apply some business logic and return party’s AccountDTO in response.   public Account getNumber(Party party)     The above classes are created to simulate the calling of actual business logic API’s.          Account.java     Party.java     GetNumber.java        public class Account {       public Account() {           super();       }       String account;         public v...