| CallXML 3.0 Development Guide | Home | Frameset Home |
<switch> element is another new addition to the CallXML3.0 markup. This container element, in conjunction with the <case> tag, allows the developer to emualte the same functionality of a 'switch' in JS/JSP/etc, where a statement can cause a branch in the flow of a program's execution, based on whether or not the values within the <switch> and <case> match.<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"> <switch choices="Laverne, Shirley"> <!-- both the 'prompt' and 'wait' elements have the same --> <!-- implied attribute values for choice as the 'switch' element --> <prompt value="you can choose Laverne, or you can choose Shirley"/> <wait value="5s"/> <on event="choice:Laverne"> <prompt value="you chose Laverne"/> </on> <on event="choice:Shirley"> <prompt value="you chose Shirley"/> </on> </switch> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <switch 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' --> <wait value="2s"/> <playaudio value="$cxmlVar;"/> <say value="$cxmlVar;"/> <log value="$cxmlVar;"/> </switch> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <switch test="1=1"> <prompt value="this will execute, as 1 is equal to 1"/> </switch> <switch test="'foo' = 'bar'"> <prompt value="this will not execute, as foo is not equal to bar"/> </switch> <switch test="string"> <prompt value="this will execute, as the test element returns a non empty string"/> </switch> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <switch 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/> </switch> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <!-- illustrates value-is attribute --> <switch label="B1" value="foo" value-is="foo"> <log/> <prompt value="this will execute, as the value is equal to foo"/> </switch> <switch label="B2" value="foo" value-is="bar"> <log/> <prompt value="this will not execute, as the value is not equal to bar"/> </switch> <!-- illustrates value-is-not attribute --> <switch label="B3" value="foo" value-is-not="foo"> <log/> <prompt value="this will not execute, as the value is not equal to bar"/> </switch> <switch label="B4" value="foo" value-is-not="bar"> <log/> <prompt value="this will execute, as the value is not equal to bar"/> </switch> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <assign var="myVar" value="bar"/> <!-- THIS WILL BE SKIPPED --> <switch test= "'$myVar;' = 'foo'"> <say> my var is foo. </say> </switch> <!-- THIS WILL BE EXECUTED --> <switch test= "'$myVar;' = 'bar'"> <say> my var is bar. </say> </switch> </callxml> |
| <?xml version="1.0" encoding="UTF-8"?> <callxml version="3.0"> <switch 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> </switch> </callxml> |
| ANNOTATIONS: EXISTING POSTS |
| login |