Reputation: 436
I am considering replacing Oracle 10g BPEL Process Manager and migrating all processes to Apache ODE. Are there documented steps in migrating the processes across the two platforms?
Upvotes: 2
Views: 600
Reputation: 3142
I'm not aware of any documentation covering this specific case. However, since BPEL is an industry standard, chances are high that standard compliant parts of your processes can be migrated easily. The problems come with proprietary extensions introduced by vendors. Look for Oracle specific XPath extensions (they typically start with a namespace prefix like bpelx:
, ora:
or oracl:
. See here for a list.
The Apache ODE project also maintains a list of extensions, so perhaps you can find an equivalent replacement there. Another helpful resource explains ODE's compliance to BPEL.
Upvotes: 4