Hello world!

From OpenKM Documentation
Revision as of 10:45, 26 January 2010 by Pavila (talk | contribs) (Created page with 'A process definition is a directed graph, made up of nodes and transitions. The hello world process has 3 nodes. To see how the pieces fit together, we're going to start with a s…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A process definition is a directed graph, made up of nodes and transitions. The hello world process has 3 nodes. To see how the pieces fit together, we're going to start with a simple process without the use of the designer tool. The following picture shows the graphical representation of the hello world process:

Hello.world.jpg


And this is the XML which generates this process definition graph:

<?xml version="1.0" encoding="UTF-8"?>
<process-definition xmlns="" name="Hello world">
  <start-state name="start-state">
    <transition to="node"></transition>
  </start-state>
  <node name="node">
    <transition to="end-state"></transition>
  </node>
  <end-state name="end-state"></end-state>
</process-definition>

This is a very basic example of a process definition. Is useless unless you make some improvements like adding an action.

Once the process definition is created, you can register it in the workflow engine. Log as okmAdmin and go to Administration → Workflow. The process definition list is actually empty. To register this new process definition go to Eclipse and to the Deployment tab. The Server Deployer input should be set to /OpenKM/upload. Click on "Deploy Process Archive..." button.

If you go to the process definition list in the OpenKM administration, you can click on the "Reload" link and the new process will appear on the list. Here you can also upload a process definition archive, if you want.

If you register a process definition several times, the old definition persist until removed. This mean that will be several versions of a process definition. This is because you can update a process definition but the old one may be executing actually.


Nota clasica.png When you start a workflow related to a document, it always will use the last version of the process definition.