cancel
Showing results for 
Search instead for 
Did you mean: 

AbstractBpmnParseHandler how to parse elements?

gromar
Champ in-the-making
Champ in-the-making
My process simulation tool (http://gro-mar.github.io/activiti-crystalball/) is using its own extension for simulation node behavior description.
Process example

    <scriptTask id="scripttask1" name="x = x+1" scriptFormat="groovy" sim:behavior="org.activiti.crystalball.simulator.delegate.PlaybackCopyActivityBehavior">
      <script><![CDATA[x =  x+1
System.out.println( "x is ["+x+"]")]]></script>
    </scriptTask>


v5.11 BPMNParseListener was able to parse such an extension. How can I achieve it with v5.12 AbstractBpmnParseHandler ?

2 REPLIES 2

gromar
Champ in-the-making
Champ in-the-making
I have found answer here:
http://forums.activiti.org/content/parsing-custom-extensionelements-512

It is not supported yet.

jbarrez
Star Contributor
Star Contributor
Yes indeed, this is due to the new parser we introduced. We will add it shortly again.