This page was last edited on September 5, 2014, at 22:32.
Comments or questions about this documentation? Contact us for support!
Orchestration applications are created by writing SCXML documents either via your favorite text editor or via Genesys Composer. Orchestration-specific instructions are specified in the executable content of SCXML in the form of SCXML extensions (action elements) and/or ECMAScript extensions (properties of special ECMAScript objects). See SCXML Language Reference in the Orchestration Server Developer's Guide.
ORS 8.1 extensions to the SCXML executable content are described in Orchestration Extensions available in the Orchestration Server Developer's Guide. The example below uses the Queue module. The namespace definition of the Queue module is the following:
xmlns:queue="www.genesyslab.com/modules/queue"
The Queue module can be called/addressed within the logic of the application as follows:
<queue:submit queue="vq1" priority="5" timeout="100">
ORS 8.1 provides the modules listed below.
Developers specify action items as custom action elements inside SCXML executable content. All modules are prefixed with the corresponding namespace label; for example:
queue:submit (in this case, the queue prefix stands for www.genesyslab.com/modules/queue)
dialog:playandcollect (in this case, the dialog prefix stands for www.genesyslab.com/modules/dialog)
When modules are executed, events return back from the platform to the instance of logic that is running the SCXML document that requested the action.
Functions and data are exposed (and used) as properties of ECMAScript objects. ORS provides a built-in ECMA Script object for every module listed above.