Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Stardust/Knowledge Base/API/ExamplesofAPIUsage/StartProcess"

(New page: == Start a Process == ==== Purpose<br> ==== Creating and starting a process instance is quite easy via the API. Each process instance will process its activity instances until it has to...)
 
Line 5: Line 5:
 
Creating and starting a process instance is quite easy via the API. Each process instance will process its activity instances until it has to wait on an external event like a JMS response, a mail or a user interaction.
 
Creating and starting a process instance is quite easy via the API. Each process instance will process its activity instances until it has to wait on an external event like a JMS response, a mail or a user interaction.
  
==== Requirements<br> ====
+
==== Requirements<br> ====
  
You need an [[STP/Stardust/KnowledgeBase/API/ExamplesofAPIUsage/Initialization|initialized workflow]] service and the id of the process definition you want to start.
+
You need an [[STP/Stardust/KnowledgeBase/API/ExamplesofAPIUsage/Initialization|initialized workflow]] service and the id of the process definition you want to start.  
  
 
<br>
 
<br>

Revision as of 04:11, 17 November 2011

Start a Process

Purpose

Creating and starting a process instance is quite easy via the API. Each process instance will process its activity instances until it has to wait on an external event like a JMS response, a mail or a user interaction.

Requirements

You need an initialized workflow service and the id of the process definition you want to start.


Back to the top