BPMN2.XML Import Does not work #2104
AlexanderAdelAU
started this conversation in
General
Replies: 1 comment
-
What does this have to do with us? You've taken some random XML and draw.io doesn't import it.... and? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have the latest draw.io running on my desktop and have a bpmn2.xml that can be imported into the online version of bpmn.io. I am not able to import into draw.io either via my desktop or online versions. Both result in just a blank page. I have tried both simple and complex xml with the same effect.
Here is a minimal xml version that does not import.
<?xml version="1.0" encoding="UTF-8"?> <definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1" targetNamespace="http://bpmn.io/schema/bpmn"> <process id="TestProcess" isExecutable="false"> <startEvent id="Start" name="Start"> <outgoing>Flow1</outgoing> </startEvent> <serviceTask id="Task" name="Test Task"> <incoming>Flow1</incoming> <outgoing>Flow2</outgoing> </serviceTask> <endEvent id="End" name="End"> <incoming>Flow2</incoming> </endEvent> <sequenceFlow id="Flow1" sourceRef="Start" targetRef="Task" /> <sequenceFlow id="Flow2" sourceRef="Task" targetRef="End" /> </process> <bpmndi:BPMNDiagram id="BPMNDiagram_1"> <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="TestProcess"> <bpmndi:BPMNShape id="Start_di" bpmnElement="Start"> <dc:Bounds x="100" y="200" width="36" height="36" /> <bpmndi:BPMNLabel> <dc:Bounds x="90" y="240" width="56" height="14" /> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="Task_di" bpmnElement="Task"> <dc:Bounds x="200" y="180" width="100" height="80" /> <bpmndi:BPMNLabel> <dc:Bounds x="210" y="220" width="80" height="14" /> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNShape id="End_di" bpmnElement="End"> <dc:Bounds x="350" y="200" width="36" height="36" /> <bpmndi:BPMNLabel> <dc:Bounds x="340" y="240" width="56" height="14" /> </bpmndi:BPMNLabel> </bpmndi:BPMNShape> <bpmndi:BPMNEdge id="Flow1_di" bpmnElement="Flow1"> <di:waypoint x="136" y="200" /> <di:waypoint x="200" y="200" /> </bpmndi:BPMNEdge> <bpmndi:BPMNEdge id="Flow2_di" bpmnElement="Flow2"> <di:waypoint x="300" y="200" /> <di:waypoint x="350" y="200" /> </bpmndi:BPMNEdge> </bpmndi:BPMNPlane> </bpmndi:BPMNDiagram> </definitions>
Beta Was this translation helpful? Give feedback.
All reactions