-
Bug
-
Resolution: Obsolete
-
Major
-
jBPM 5.2
The xml generated for the script entered within on entry/exit action of a workitem i.e. Log , seems to be invalid, resulting in unexpected behaviour on other systems i.e. jbpm web designer, that expect valid xml.
Specifically the generated script tags within the bpmn do not contain namespace prefix i.e.
<extensionElements>
<tns:onEntry-script>
<script>System.out.println("test");</script>
</tns:onEntry-script>
</extensionElements>
should probably be,
<extensionElements>
<tns:onEntry-script>
<tns:script>System.out.println("test");</tns:script>
</tns:onEntry-script>
</extensionElements>
Also discussed at this forum thread,
https://community.jboss.org/thread/178064