We are making good progress on CMMN support in the process engine. CMMN is an emerging OMG standard for Case Management. It is now possible to deploy and instantiate a CMMN Case Definition using both Java and REST API.
In the next release we will provide support for CMMN human tasks, manual activation completing cases and tasks and maybe more.
New Tasklist Skeleton
The new release contains a very early preview version of the upcoming Tasklist application.
The tasklist-ui is now developed in a separate git repository.
I/O Mapping in Process Engine
The process engine now provides support for input output mappings for Tasks, Events and Subprocesses. Input Output mappings can be used for creating variables in a local scope or mapping variables out of a local scope:
Xml in Expression Language
Camunda BPM now provides out of the box support for working with complex data objects in expression language. In alpha-2, support is limited to Xml, other formats like JSON are planned. In alpha-2 you can access attributes and child elements of Xml data objects and it is possible to execute XPath queries. This makes is easier to work with Xml data in expression language without having to to map it to Java Objects:
Support for this is provided through Camunda Spin, a small library providing lightweight wrappers around existing low-level APIs and parsers (such as Dom).
Spin can also be used from Java Delegate implementations (obviously) and JVM scripting languages.
On top of directly using Spin in El expressions or script code, we plan on using it as data transformation provider for the process engine. This will be use cases around requesting different data representations for a variable (Java Object vs. mapped JSON Representation) and many more.
Connecting Soap Webservices
Alpha 2 also provides a built-in, low level webservice connector which allows you to invoke SOAP-based webservices directly from BPMN Xml. There is a preliminary usage example. The connector implementation is provided in the Camunda Connect GitHub repository.