Showing posts with label configurable properties. Show all posts
Showing posts with label configurable properties. Show all posts

Wednesday, June 29, 2011

Setting Configurable Properties in Oracle SOA (BPEL) 11g

In Oracle BPEL 11g, the configurable properties that can be updated at runtime can be accessed using the following:

  • Set the property in the composite.xml:
<component name="SampleBPELProcess">
<implementation.bpel src="SampleBPELProcess.bpel"/>
<property name="bpel.preference.codeSummary">Testing</property>
</component>

  • Accessing the value in the BPEL:

ora:getPreference('codeSummary')

  • Dynamically updating the value of the property in EM Console:

Farm_soa_domain > Weblogic Domain > soa_domain* > Right Mouseclick > System MBean Browser > Application Defined MBeans > oracle.soa.config > Server : soa_server* > SCAComposite > project* > SCAComposite.SCAComponent > bpel_process*> attributes > properties

*Environment dependent

Search This Blog