Petals-SE-Activiti 1.0.0-SNAPSHOT

compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (2)

View Page History
It is possible to map several operations of the WSDL to search process instance, for example with different search criteria.

h1. Using the mode "integration"

The mode "integration" provides different services to interact directly with the engine Activity. It goes back over the Activiti Java API. Available services are:
|| Interface name || Service name || Description ||
| {{Runtime}} | {{RuntimeService}} | To manage process instances |
| {{Task}} | {{TaskService}} | To manage task of process instances |

{color:red}*A completer avec Bertrand*{color}

See the WSDL of the service and Activiti Java API documentation to get more information.
{tip}The namespace of interface name and service name is {{http://petals.ow2.org/se/activiti/1.0}}{tip}

h2. The service "RuntimeService"

The service "RuntimeService" provides following operations
|| Operation name || Description || Matching Activity Java API ||
| startProcessInstanceById | Starts a new process instance in the latest version of the process definition with the given id and variables. | {{RuntimeService.startProcessInstanceById(String, Map<String,Object>) |
| startProcessInstanceByKey | Starts a new process instance in the latest version of the process definition with the given key and variables. | {{RuntimeService.startProcessInstanceByKey(String, Map<String,Object>) |

{color:red}*A completer avec Bertrand*{color}

h2. The service "TaskService"

The service "TaskService" provides following operations
|| Operation name || Description || Matching Activity Java API ||
| complete | Called when the task is successfully executed, and the required task parameters are given by the end-user. | {{TaskService.complete(String, Map<String,Object>) |

{color:red}*A completer avec Bertrand*{color}

h1. Configuring the component

h2. Component specific parameters

These parameters drive features proposed by the component and configure the engine Activiti 5.1.3:
* activation of the mode 'integration',
* database parameters. Your are responsible to provide this database according to your needs. And especially, you must assume that the database is highly available to have a SE Activiti highly available.