0

I have a bpm-platform.xml, the content of which is :

    <?xml version="1.0" encoding="UTF-8"?>
    <bpm-platform xmlns="http://www.camunda.org/schema/1.0/BpmPlatform"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://www.camunda.org/schema/1.0/BpmPlatform http://www.camunda.org/schema/1.0/BpmPlatform">

      <job-executor>
        <job-acquisition name="default" />
      </job-executor>

      <process-engine name="default">
        <job-acquisition>default</job-acquisition>
        <configuration>org.camunda.bpm.engine.impl.cfg.StandaloneProcessEngineConfiguration</configuration>
        <datasource>java:jdbc/ProcessEngine</datasource>

        <properties>
          <property name="history">full</property>
          <property name="databaseSchemaUpdate">true</property>
          <property name="authorizationEnabled">true</property>
        </properties>

      </process-engine>
    </bpm-platform>

Once this xml is published in my server, I get this error :

SAXParseException: cvc-elt.1: Cannot find the declaration of element 'bpm-platform'.

Can someone please point me in the right direction as to what mistake I am making ?

The Dark Knight
  • 5,455
  • 11
  • 54
  • 95
  • _Once this xml is published in my server_ What server is that and how do you publish `bpm-platform.xml`? – Abra Dec 10 '19 at 14:47
  • @Abra : Its a pivotal tc server . The xml is published along with the rest of the code after a maven build . – The Dark Knight Dec 10 '19 at 14:53

0 Answers0