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: composite
Implement Intermediate Service for Custom Correlation
Technology and ToolsPrimary Technology used for Development: Oracle Fusion Middleware – BPELTools used for Development: Jdeveloper 12C or 11g and SQL developerTools used for Testing: Weblogic Enterprise Manager Technical ArchitectureGiven a scenario where we have a service awaiting an asynchronous response from the third party and the correlation is happening on a variable declared as …
Continue reading “Implement Intermediate Service for Custom Correlation”
Steps to Create Keystore
How to create Keystore? In my previous blogs, I have explained the importance and usage of Keystore in Composite.xml https://soasolutions.home.blog/2019/02/11/importance-of-keystore/ Log in to Enterprise Manager using weblogic username, and it’s passwordExpand WebLogic DomainRight-click on Domain NameClick on Security and then Credentials as displayed in below screenshot Click on Create Key as shown in the below …
Importance of Keystore
BackgroundWhen an SOA service is calling a reference WSDL service, either internal or external (edge application), there is good to have functionality of secure transaction. This secure transaction is achieved by http token client policy within composite.xml of the SOA service. Use a csf-key property along with the above policy under the reference which is …
