-
Bug
-
Resolution: Done
-
Critical
-
3.0.0.alpha
When using jBPM tooling to populate input/output tabs on ESB node properties view, the following XML is generated:
----------------------------------
<jbpmToEsbVars>
<mapping jbpm="jbpmName1" esb="esbName1"></mapping>
</jbpmToEsbVars>
<returnVars>
<mapping jbpm="jbpmName1" esb="esbName1"></mapping>
</returnVars>
----------------------------------
That will not deploy on SOA-P 4.3 (or 4.2 I don't think). It needs to look like this:
----------------------------------
<bpmToEsbVars>
<mapping bpm="jbpmName1" esb="esbName1" />
</bpmToEsbVars>
<esbToBpmVars>
<mapping esb="esbName1" bpm="jbpmName1" />
</esbToBpmVars>
----------------------------------
Note the "bpm" instead of "jbpm" and the "esbToBpmVars" instead of "returnVars"