| CallXML 3.0 Development Guide | Home | Frameset Home |
<do> element is a new addition to the CallXML3.0 markup language that serves as a container element, (much like <block> element), for nested XML content. It is commonly used with the new 'foreach' attribute to specify a list of items to iterate through, but can also use the 'container.value' variable to store the current iteration if no 'var=' statement is specified in the nested content. To illustrate this latter point, one could specify the following as a shorthand for specifying a <playaudio> value:
<do foreach="Intro.wav, Option1.wav, Option2.wav">
<playaudio />
<log />
</do>
<block> aliases are listed as follows:<block><case><do><if><switch><with>| choices | Data Type: (grammar value) | Default: Optional |
The 'choices' attribute defines a list of comma delimited voice recognition utterances that will be active for the container element. Alternatively, the attribute can contain a choice followed parantheses containing different words which equate to that choice. Note that both dtmf grammars, and spoken word grammar utterances can be defined; digit values always indicate dtmf input, whereas spelled 'literals' for numbers imply that the grammar must be spoken:One can also define multiple matches to return the same value to the application by specifying the values in the following format: <ContainerElementName choices="ReturnValue (subchoice1, subchoice2)">As such, either of the 'subchoice' utterances will be interpreted as 'ReturnValue'. To illustrate in greater detail: <say choices="Beatles (john, paul, ringo, george), Lastly, developers can also make use of a builtin number grammar for capturing a string of digit values by specifying [x DIGITS], where 'x' is the length of the string that you wish to collect: <block choices="[5 DIGITS]"> This can also be modified to accept input of varying lengths by specifying [x-y DIGITS], where 'x' and 'y' are the minimum and maximum values for the length of the string being collected: <block choices="[5-8 DIGITS]"> | ||
| cleardigits | Data Type: (true|false) | Default: none - attribute is optional |
| This attribute's value is a Boolean, indicating whether the queued digits buffer should be cleared when this action starts. "true" clears the digits buffer; "false" leaves the contents of the digit buffer alone. | ||
| foreach | Data Type: (comma delimited list of array values) | Default: Optional |
| The 'foreach' attribute, usable on any CallXML3.0 container elements, should look familiar to many web developers. A developer can indicate a comma-delimited array of values to iterate through within 'foreach' attribute, and then use the 'var' attribute to specify the variable that will hold the current iteration value while in the enclosing container element. Alternatively, 'foreach' uses the "container.value" variable to store the current iteration if the 'var' is unspecified. and "container.value" will populate any unspecified 'value' attributes of child elements of the container in question. | ||
| id | Data Type: (element id) | Default: none - attribute is optional |
The new 'id' attribute in CallXML3.0 is applicable to all container and action elements. Specifying this attribute allows yet another level of control and event handling when events occur and are caught by the <on> element. When an event occurs, the handler will first check the event, and then verify that the handler has a handler specific to the 'id' attribute to execute. This allows the developer to plan a specific course of action for events based on where in the application that they occur. | ||
| label | Data Type: (navigation identifier) | Default: none - attribute is optional |
| This attribute designates the unique inter-document identifier of the parent element in question, and allows an easy way to navigate through applications as a destination 'anchor', as used in goto references | ||
| next | Data Type: (navigation identifier) | Default: none - attribute is optional |
| The 'next' attribute sets the URL the CallXML platform will go to when the container ends. | ||
| repeat | Data Type: (numeric value) | Default: 1 |
| The value for the repeat attribute indicates the number of times to execute the content contained by the parent element. If this attribute is explicitly specified, this must be a valid number, or an error will result. Also note that if the value is zero the content will be skipped. | ||
| test | Data Type: CDATA | Default: Optional |
| The 'test' attribute is a new supplement to the CallXML markup that permits the developer to execute the contents of a container element, or action element, based on whether or not the specified condition is met. If the defined condition is met, then the code contained within the element is then executed. If the condition is not met, then the application resumes execution with the next sequential container container element in the document. | ||
| value | Data Type: (string) | Default: none - attribute is optional |
The 'value' attribute is mappable to any of the container elements, (<block>, <with>, etc.), and specifies inheritance for attribute values that are enclosed within the container element. For instance, the below snippet will denote the values of 'test.wav' for the <playaudio>, <say>, and <log> elements : | ||
| value-is | Data Type: STRING | Default: none - attribute is optional |
| Another new attribute, 'value-is', grants the developer with the ability to perform conditional logic upon container elements, or action elements for the first time within the CallXML markup. The value specified in the 'value-is' attribute specifies a string to compare against any 'value' attributes. If the 'value' and 'value-is' equate to 'true', then the element specified will execute. If the value equates to 'false' then the element will be skipped during document execution. | ||
| value-is-not | Data Type: STRING | Default: none - attribute is optional |
| Another new attribute, 'value-is-not', grants the developer with the ability to perform conditional logic upon container elements, or action elements, for the first time within the CallXML markup. The value specified in the 'value-is-not' attribute specifies a string to compare against any 'value' attributes. If the 'value' and 'value-is-not' equate to 'false', then the element specified will execute. If the value equates to 'true' then the element will be skipped during document execution. | ||
| var | Data Type: (variable name) | Default: none - attribute is required |
| Variable name to use when assigning a value. Not specifying this attribute will result in a fatal error. | ||
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <do choices="Laverne, Shirley"> <!-- both the 'say' and 'wait' elements have the same --> <!-- implied attribute values for choice as the 'do' element --> <prompt> You can choose Laverne, or you can choose Shirley. </prompt> <wait value="5s"/> <on event="choice:Laverne"> <prompt> you chose Laverne </prompt> </on> <on event="choice:Shirley"> <prompt> you chose Shirley </prompt> </on> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <do label="B1" foreach="one.wav, two.wav, three.wav" var="cxmlVar"> <!-- the 'foreach' and 'var'attributes set up a loop --> <!-- construct that will iterate over the values defined in 'foreach' --> <playaudio value="$cxmlVar;"/> <say value="$cxmlVar;"/> <log value="$cxmlVar;"/> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <do label="B1" repeat="1"> <prompt> Here is the first do container. </prompt> <goto value="#B2"/> </do> <do label="B2" repeat="2"> <prompt choices="*"> Here is the second do container. If you wait before pressing the star key, you will hear this prompt play twice. </prompt> <on event="choice:*"> <prompt> You pressed the star key </prompt> </on> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <do label="B_1" next="#B_3"> <prompt> once this do of TTS is executed, we will skip to do label B 3 via the next attribute </prompt> </do> <do label="B_2" next="Another_Document.xml"> <prompt> And finally, we enter do label B 2, which is executed last </prompt> </do> <do label="B_3" next="#B_2"> <prompt> And here we are in do label B 3 </prompt> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <assign var="MyVar" value="bar"/> <do test="1=1"> <prompt> this will execute, as 1 is equal to 1. </prompt> </do> <do test="'$MyVar;'='foo'"> <prompt> this will not execute, as bar is not equal to foo. </prompt> </do> <do test="string"> <prompt> this will execute, as the test element returns a non empty string. </prompt> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <do value="feelgood.wav"> <!-- we do not need to define a 'value' attribute for the --> <!-- enclosed elements, as the container element will --> <!--inherently populate these fileds with it's own --> <!-- 'value' that is specified --> <playaudio/> <log/> <say/> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <!-- illustrates value-is attribute --> <do label="B1" value="foo" value-is="foo"> <log/> <say> This will execute, as the value is equal to foo </say> </do> <do label="B2" value="foo" value-is="bar"> <log/> <say> This will not execute, as the value is not equal to bar </say> </do> <!-- illustrates value-is-not attribute --> <do label="B3" value="foo" value-is-not="foo"> <log/> <say> This will not execute, as the value is not equal to bar </say> </do> <do label="B4" value="foo" value-is-not="bar"> <log/> <say> This will execute, as the value is not equal to bar </say> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8" ?> <callxml version="3.0"> <!-- caller can say 'Zappa' at any point during the TTS --> <!-- playback, and the event handlers will detect which --> <!-- container element the user was in when the utterance was detected --> <do id="D1" choices="Zappa"> <prompt value="Electric Aunt Jemima, Goddess of love"/> <wait value="2s"/> </do> <do id="D2" choices="Zappa"> <prompt value="Your tacky maple buckwheats frizzle on the stove"/> <wait value="2s"/> </do> <do id="D3" choices="Zappa"> <prompt value="Queen of my heart, please hear my plea"/> <wait value="2s"/> </do> <do id="D4" choices="Zappa"> <prompt value="Electric Aunt Jemima, cook a bunch for me."/> <wait value="2s"/> </do> <on event="choice" target="D1"> <log>** a choice match occurred while in container element D1 **</log> </on> <on event="choice" target="D2"> <log>** a choice match occurred while in container element D2 **</log> </on> <on event="choice" target="D3"> <log>** a choice match occurred while in container element D3 **</log> </on> <on event="choice" target="D4"> <log>** a choice match occurred while in container element D4 **</log> </on> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <assign var="myVar" value="bar"/> <!-- THIS WILL BE SKIPPED --> <do test= "'$myVar;' = 'foo'"> <say> my var is foo. </say> </do> <!-- THIS WILL BE EXECUTED --> <do test= "'$myVar;' = 'bar'"> <say> my var is bar. </say> </do> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <do choices="[4 DIGITS]"> <say> Enter your 4 digit pin. </say> <wait value="5s"/> <on event="choice"> <say> The pin you entered, was </say> <playnumber format="digits" value="$session.lastchoice;"/> </on> </do> </callxml> |
| ANNOTATIONS: EXISTING POSTS |
| login |