blob: cffe7b517b1a80a78ce6d3f151ee2c1e5ae3d127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!-- test that that the value of the <param> _scxmleventname gets used as the name
of the raised event. -->
<scxml initial="s0" conf:datamodel="" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
<state id="s0">
<onentry>
<send event="timeout" delay="3s"/>
<send conf:basicHTTPAccessURITarget="" type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor">
<content>_scxmleventname=test</content>
</send>
</onentry>
<!-- if we get an event named 'test' we succeed. Otherwise fail -->
<transition event="test" conf:targetpass=""/>
<transition event="*" conf:targetfail=""/>
</state>
<conf:pass/>
<conf:fail/>
</scxml>
|