Camuda Error SAXException

Hello

When trying to deploy the attached process I always get the following Error:

Command ‘CREATE’ rejected with code ‘INVALID_ARGUMENT’: Expected to deploy new resources, but encountered the following errors:
‘Hardware order process - final.bpmn’: SAXException while parsing input stream[ deploy-error ] 8/12/2022 19:26:39

Anyone has an idea how to solve it?

hardware-order-process-final.bpmn (50.8 KB)

Hi, and welcome to the Camunda Forum!

You’ve posted your BPMN process which really helps the others in the community troubleshoot!

As noted in Unable to deploy model from Modeler, "SAXException while parsing input stream" for some reason there are elements with -color being added to current models.

Make sure to remove them from your model, and it should load.
Specifically from line 498:

<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_bdb7be31-dea4-4bd7-8995-ca1cefdc66e8">
1 Like

Thank you very much!

Unfortunately we are using Camuda only for this project and I have no idea how to recognize color and if this is in a linked form or somewhere. Even if we recognize it we would not know how to change.

If you open your BPMN file in your favourite text editor, and go to line 498 of the file, you can change that line from

<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_bdb7be31-dea4-4bd7-8995-ca1cefdc66e8" background-color="#fff" border-color="#000">

to

<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_bdb7be31-dea4-4bd7-8995-ca1cefdc66e8">

Specifically, removing the parts:
background-color="#fff"
border-color="#000"

Save the file, and then you should be able to deploy it