New Function in Oracle 12c In Oracle 11g, if one is defining the SOA instance title for a particular service/composite using function setCompositeInstanceTitle then they need to use setFlowInstanceTitle function in Oracle 12c, with a namespace as ‘oraext’. Syntax Difference: 11g: <extensionActivity> <bpelx:exec name=”SetCompositeName” language=”java”> <![CDATA[setTitle((String)getVariableData(“compositeTitle”));setCompositeInstanceTitle((String)getVariableData(“compositeTitle”));]]> </bpelx:exec> </extensionActivity> 12c: <extensionActivity> <bpelx:exec name=”SetCompositeName” language=”java”> <![CDATA[setTitle((String)getVariableData(“compositeTitle”));oraext:setFlowInstanceTitle((String)getVariableData(“compositeTitle”));]]> </bpelx:exec> …
Tag Archives: instance
SOA Purging in Efficient Way
Problem Statement Using Oracle’s out of the box, purging of SOA instances was not deleting all the old and unwanted instances. The out of the box purging script only delete particular instances which are in 1, 3, 17, 19, 31, and 32 states. This problem leads to piling up of old unwanted instances which are …
