CallXML 3.0 Development GuideHome  |  Frameset Home


<with>  element

The <with> element is another container element that is new to the CallXML3.0 platform. It can hold nested XML content, (such as <playaudio>, <text>, etc), and allows the developer to use it's 'value' as syntactic shorthand to populate values for all elements that are nested within it. To explain, the following code snippets are exactly equivalant:

CallXML2.0:
<block>
  <playaudio value="onomotopia.wav" />
  <text>onomotopia dot wav</text>
  </block>

CallXML3.0:
<with value="onomotopia.wav">
  <playaudio />
  <say/>
  </with>


Also be aware that a developer can also use any of the aliases for the <block> element, which are identical in functionality, which allows you to pick a naming/programming scheme for container elements on a per-case basis that suits a developer's programming style. All of these identical <block> aliases are listed as follows:




usage
<with choices="(grammar value)" cleardigits="(true|false)" foreach="(comma delimited list of array values)" id="(element id)" label="(navigation identifier)" next="(navigation identifier)" repeat="(numeric value)" test="CDATA" value="(string)" value-is="STRING" value-is-not="STRING" var="(variable name)">


attributes
choicesData 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:


<say choices="1, one">press, or say one</say>


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),
              Rolling Stones (mick, keith, charlie, ron)"
>
      Say the name of a Beatle, or a Rolling Stone.
</say>


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]">

cleardigitsData 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.
foreachData 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.
idData 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.
labelData 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
nextData Type: (navigation identifier)Default: none - attribute is optional
The 'next' attribute sets the URL the CallXML platform will go to when the container ends.
repeatData 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.
testData Type: CDATADefault: 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.
valueData 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 :


<with value="test.wav">
  <playaudio />
<!-- equivalent to <playaudio value="test.wav">  -->
  <say />
<!-- equivalent to <say>test.wav</say>  -->
  <log />
<!-- equivalent to <log>test.wav</log>  -->
  </with>

value-isData Type: STRINGDefault: 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-notData Type: STRINGDefault: 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.
varData 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.



code samples
<3.0 with-choices>
<?xml version="1.0" encoding="UTF-8"?>

<callxml version="3.0">

        <with choices="Laverne, Shirley">

    <!-- both the 'say' and 'wait' elements have the same -->
    <!-- implied attribute values for choice as the 'with' 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>
        </with>

</callxml>


<3.0 with-foreach-var>
<?xml version="1.0" encoding="UTF-8"?>

<callxml version="3.0">


  <with 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;"/>

  </with>

</callxml>


<3.0 with-test>
<?xml version="1.0" encoding="UTF-8"?>

<callxml version="3.0">

        <with test="1=1">
        <prompt value="This will execute, as 1 is equal to 1"/>
        </with>

        <with test="'foo' = 'bar'">
        <prompt value="This will not execute,
                        as foo is not equal to bar"/>
        </with>

        <with test="string">
        <prompt value="This will execute, as the
              test element returns a non empty string"/>
        </with>

</callxml>


<3.0 with-value>
<?xml version="1.0" encoding="UTF-8"?>

<callxml version="3.0">


  <with 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/>
  </with>

</callxml>


<3.0 with-valueis>
<?xml version="1.0" encoding="UTF-8"?>

<callxml version="3.0">

  <!-- illustrates value-is attribute -->
        <with label="B1" value="foo" value-is="foo">
            <log/>
            <prompt value="this will execute, as
                          the value is equal to foo"/>
          </with>

        <with label="B2" value="foo" value-is="bar">
            <log/>
            <prompt value="this will not execute,
                          as the value is not equal to bar"/>
        </with>


    <!-- illustrates value-is-not attribute -->
        <with label="B3" value="foo" value-is-not="foo">
            <log/>
            <prompt value="this will not execute,
                          as the value is not equal to bar"/>
        </with>


        <with label="B4" value="foo" value-is-not="bar">
            <log/>
            <prompt value="this will execute,
                          as the value is not equal to bar"/>
        </with>

</callxml>


< 3.0 with-choices: DIGITS grammar>
<?xml version="1.0" encoding="UTF-8"?>

<callxml version="3.0">

      <with 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>
      </with>
</callxml>



additional links
none


  ANNOTATIONS: EXISTING POSTS
0 posts - click the button below to add a note to this page

login



© 2008 Voxeo Corporation  |  Voxeo IVR  |  VoiceXML & CCXML IVR Developer Site