Hello,
I am using the BPMN Model API from 7.10 in an attempt to create and export a BPMN model. The simple example (Example 1) yields a diagram with no diagram elements (bpmndi completely missing) and produce the following error in the desktop modeler when trying to view it:
Could you please investigate?
Herewith the generated XML:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<definitions id="definitions_6e413763-03bc-41a9-bec5-8a715e58c968" targetNamespace="http://camunda.org/examples" xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL">
<process id="process-with-one-task">
<startEvent id="start">
<outgoing>start-task1</outgoing>
</startEvent>
<userTask id="task1" name="User Task">
<incoming>start-task1</incoming>
<outgoing>task1-end</outgoing>
</userTask>
<endEvent id="end">
<incoming>task1-end</incoming>
</endEvent>
<sequenceFlow id="start-task1" sourceRef="start" targetRef="task1"/>
<sequenceFlow id="task1-end" sourceRef="task1" targetRef="end"/>
</process>
</definitions>
PS: The fluent modeler works as expected, but I would like to explore all the options.