<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.voximal.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.voximal.com/feed.php">
        <title>Voximal documentation - legacy:vxi_examples</title>
        <description></description>
        <link>https://wiki.voximal.com/</link>
        <image rdf:resource="https://wiki.voximal.com/lib/exe/fetch.php?media=wiki:logo.png" />
       <dc:date>2026-04-29T18:16:20+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:asterisk&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:blackjack&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:helloworld&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:menus&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:record&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:start&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:transfer&amp;rev=1501285992&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:vestec&amp;rev=1501285993&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.voximal.com/lib/exe/fetch.php?media=wiki:logo.png">
        <title>Voximal documentation</title>
        <link>https://wiki.voximal.com/</link>
        <url>https://wiki.voximal.com/lib/exe/fetch.php?media=wiki:logo.png</url>
    </image>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:asterisk&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>asterisk</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:asterisk&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : Asterisk

Play values with SayNumber/SayDigits


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;vxml version=&quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot; xml:lang=&quot;es-ES&quot;&gt;
 &lt;var name=&quot;myname&quot; expr=&quot;&#039;borja&#039;&quot;/&gt;
 &lt;form&gt;
  &lt;block&gt;
   &lt;prompt&gt;
    &lt;audio src=&quot;application:SayDigits(45)&quot;/&gt;
    &lt;audio expr=&quot;&#039;application:SayNumber(&#039;+(12+4)+&#039;,f)&#039;&quot;/&gt;
    &lt;audio src=&quot;application:SayAlpha(borja)&quot;/&gt;
    &lt;audio expr=&quot;&#039;application:SayPhonetic(&#039;+myname+&#039;borja)&#039;&quot;/&gt;
   &lt;/prompt&gt;
  &lt;/block&gt;
 &lt;/form&gt;
&lt;/vxml&gt;</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:blackjack&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>blackjack</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:blackjack&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : BlackJack game

Play against the VoiceXML browser


&lt;?xml version=&quot;1.0&quot; ?&gt;
&lt;vxml version=&quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot;&gt;

&lt;property name=&quot;inputmodes&quot; value=&quot;dtmf&quot;/&gt;
&lt;var name=&quot;cards&quot;/&gt; &lt;!-- array of cards --&gt;
&lt;var name=&quot;currCard&quot; expr=&quot;0&quot;/&gt; &lt;!-- current card --&gt;
&lt;var name=&quot;userCards&quot;/&gt; &lt;!-- cards of the user --&gt;
&lt;var name=&quot;compCards&quot;/&gt; &lt;!-- cards of computer --&gt;

&lt;script&gt; &lt;![CDATA[
  function shuffle() {
    for (var i = 0; i &lt; 52; i++) {
      cards[i] = i;
    }
 …</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:helloworld&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>helloworld</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:helloworld&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : Hello World!

Simple with TextToSpeech


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;vxml version = &quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot;&gt;
 &lt;form&gt;
  &lt;block&gt;Hello world!&lt;/block&gt;
 &lt;/form&gt;
&lt;/vxml&gt;


The VoiceXML browser will use the TextToSpeech to convert the text</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:menus&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>menus</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:menus&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : Simple menu

Simple DTMF menu 


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;vxml version = &quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot;&gt;
&lt;/vxml&gt;


The VoiceXML browser will use the.

Download :
menu1.vxml</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:record&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>record</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:record&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : Vestec

Record message to mail


&lt;?xml version = &quot;1.0&quot; ?&gt;
&lt;vxml version = &quot;2.1&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot; xml:lang=&quot;en-US&quot;&gt;
  &lt;property name=&quot;fetchtimeout&quot; value=&quot;60s&quot; /&gt;
  &lt;property name=&quot;fetchtimeout&quot; value=&quot;30s&quot; /&gt;
  &lt;form&gt;
    &lt;var name=&quot;caller&quot; expr=&quot;session.connection.remote.uri&quot;/&gt;
    &lt;catch event=&quot;connection.disconnect.hangup&quot;&gt;
      &lt;submit namelist=&quot;caller record&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot; next=&quot;send.php&quot; /&gt;
    &lt;/catch&gt;
    &lt;noinput&gt;
    …</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:start&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>start</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:start&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : Hello World!

Simple with TextToSpeech


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;vxml version = &quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot;&gt;
 &lt;form&gt;
  &lt;block&gt;Hello world!&lt;/block&gt;
 &lt;/form&gt;
&lt;/vxml&gt;


The VoiceXML browser will use the TextToSpeech to convert the text</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:transfer&amp;rev=1501285992&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>transfer</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:transfer&amp;rev=1501285992&amp;do=diff</link>
        <description>VoiceXML Example : Simple transfer

Simple transfer (use dialformat configuration)


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;vxml version = &quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot;&gt;
 &lt;form&gt;
  &lt;block&gt;Hello world!&lt;/block&gt;
 &lt;/form&gt;
&lt;/vxml&gt;


The VoiceXML browser will use the TextToSpeech to convert the text</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:vestec&amp;rev=1501285993&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:13+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>vestec</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_examples:vestec&amp;rev=1501285993&amp;do=diff</link>
        <description>VoiceXML Example : Vestec

Simple inline grammar


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;vxml version=&quot;2.0&quot; xmlns=&quot;http://www.w3.org/2001/vxml&quot; xml:lang=&quot;es-ES&quot;&gt;
  &lt;property name=&quot;confidencelevel&quot; value=&quot;0.6&quot;/&gt;
  &lt;property name=&quot;inputmodes&quot; value=&quot;voice&quot;/&gt;
  &lt;form id=&quot;deck&quot;&gt;
    &lt;field name=&quot;name&quot;&gt;
      &lt;grammar xml:lang=&quot;es-ES&quot; root=&quot;name&quot;&gt;
        &lt;rule id=&quot;name&quot;&gt;
          &lt;one-of&gt;
            &lt;item&gt;chocolate
              &lt;tag&gt;chocolate&lt;/tag&gt;
            &lt;/item&gt;
            &lt;item&gt;vainilla
              &lt;t…</description>
    </item>
</rdf:RDF>
