| CCXML Voxeo 1.0 Development Guide | Home | Frameset Home |
| expr | Data Type: (ECMAScript Expression) | Default: none - attribute is optional |
| Not Enabled The expr attribute should have an ECMAScript expression that indicating a message to be sent and caught. If unspecified, then the value returned by the expr will resolve to 'zero'. Note that this atrribute is currently non-functional, as the Voxeo CCXML browser does not return a 'ccxml.exit' event when the <exit> element is encountered. | ||
| namelist | Data Type: STRING | Default: none - attribute is optional |
| Not Enabled The namelist attribute denotes the space-separated list of variable names to be sent as properties of the <exit> event. Note that this atrribute is currently non-functional, as the Voxeo CCXML browser does not return a 'ccxml.exit' event when the <exit> element is encountered. | ||
| <?xml version="1.0" encoding="UTF-8" ?> <ccxml version="1.0"> <var name="state0" expr="'ENTERING'"/> <eventhandler statevariable="state0"> <transition event="connection.CONNECTION_ALERTING" name="evt"> <log expr="'*** INCOMING CALLID IS: ' + evt.callid + ' ***'"/> <accept/> </transition> <transition event="connection.CONNECTION_CONNECTED"> <log expr="'*** INCOMING CALL WAS ANSWERED ***.'"/> <!-- ********* USING <EXIT> ENDS APPLICATION EXICUTION ******** --> <exit/> </transition> <!-- ****************** GENERAL EXCEPTIONS ******************** --> <transition event="call.CALL_INVALID"> <exit/> </transition> <transition event="error.*" name="evt"> <log expr="'*** ERROR HAS OCCURED [' + evt.error + '] ***'"/> <exit/> </transition> </eventhandler> </ccxml> |
| ANNOTATIONS: EXISTING POSTS |
| login |