cancel
Showing results for 
Search instead for 
Did you mean: 

Designer 5.6 generate wrong xml when using CallActivity

mscai
Champ in-the-making
Champ in-the-making
I add a CallActivity, and set input parameters. But there is no tag "extensionElements" in the generated BPMN20.xml.

The generated xml is:
*****************
<callActivity id="callactivity1" name="Call_Para1" calledElement="Para_Tes2">
      <activiti:in source="adfa" target="adfa"></activiti:in>
</callActivity>
*****************

The expected xml is:
*****************
<callActivity id="callactivity1" name="Call_Para1" calledElement="Para_Tes2">
  <extensionElements>
      <activiti:in source="adfa" target="adfa"></activiti:in>
  </extensionElements>
</callActivity>
*****************

I am using Designer 5.6 on Eclipse 3.6.1
2 REPLIES 2

trademak
Star Contributor
Star Contributor
Right, this was already fixed. So if you built the Eclipse Designer from the source code (as explained in the wiki) you shouldn't encounter this problem.

Best regards,

mscai
Champ in-the-making
Champ in-the-making
Thanks.