Is there a way to replace preferences which are configured in BPEL componentType file during deployment config plan? Let's say
(If I move these properties in <component>
in composite.xml, config plan works fine. I am looking solution for componentType preferences)
My .componentType file as follows
<componentType ..............>
<property name="preference.somePreference" type="xs:string">actualValue</property>
</componentType>
and my deployment_config_plan.xml as follows
<component name="orderProcessor">
<property name="preference.somePreference"><replace>someValue</replace>
</property>
</component>