Jump to: navigation, search

Start on Remote Resource

The following SCXML strategy requests that a specific dialog be started on a specified interaction by a new remote resource.

<scxml version="1.0" xmlns="http://www.w3.org/2005/07/scxml"
	xmlns:queue="www.genesyslab.com/modules/queue" 
	xmlns:dialog="www.genesyslab.com/modules/dialog"
	initial="initial">
	<state id="initial">
		<transition event="interaction.added" target="dialog" />
	</state>
	<state id="dialog">
		<onentry>
			<dialog:remote destination="'123456'" default="'2334'" />
		</onentry>
		<transition event="dialog.remote.done" target="exit" />
		<transition event="error.dialog.remote" target="error" />
	</state>
	<final id="exit" />
	<final id="error" />
</scxml>
This page was last edited on September 22, 2017, at 13:06.
Comments or questions about this documentation? Contact us for support!