<?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_tutorial</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:15:43+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:basic_application&amp;rev=1501285987&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:dialogs&amp;rev=1501285987&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:events&amp;rev=1501285987&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:example&amp;rev=1501285988&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:fundamentals&amp;rev=1501285988&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:grammars&amp;rev=1501285988&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:overview&amp;rev=1501285988&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:start&amp;rev=1501286020&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_tutorial:basic_application&amp;rev=1501285987&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>basic_application</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:basic_application&amp;rev=1501285987&amp;do=diff</link>
        <description>A basic VoiceXML application

Basic rules

Because VoiceXML is an extension of XML, you will have to follow the basic rules for
XML, which include:
* Well-formed XML documents: All elements must have a closing tag.
* A root element: All documents must have a root element. The root element for a VoiceXML document is vxml.
* Attributes: Attribute values must always be quoted.
* Nesting: All elements must be properly nested.</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:dialogs&amp;rev=1501285987&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dialogs</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:dialogs&amp;rev=1501285987&amp;do=diff</link>
        <description>Forms, menus, and links

What is a form ?

A form in a VoiceXML document presents information and gathers input from the user.
A form is represented by the &lt;form&gt; tag and has an ID attribute associated with it. The
ID attribute is the name of the form. Following is an example of the use of a form
element:</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:events&amp;rev=1501285987&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>events</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:events&amp;rev=1501285987&amp;do=diff</link>
        <description>Event handling

Types of events

An event is thrown by the VoiceXML platform for any number of reasons, such as a
user not responding to an input, not responding correctly, requesting help, etc. An
event is also thrown if there is a semantic error in the VoiceXML document, or when
the &lt;throw&gt; element is encountered. The &lt;throw&gt; element generates an event
(user-defined or system) and the &lt;catch&gt; element catches the event thrown by the
VoiceXML document, dialog, or form item.</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:example&amp;rev=1501285988&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>example</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:example&amp;rev=1501285988&amp;do=diff</link>
        <description>VoiceXML example

Creating the welcome message

In this VoiceXML example, you will be creating an application that gives you a selection to choose from. Once you make a selection, you are taken to the appropriate document or dialog. In this section, you will create the main greeting message of the application. In the code below, the user hears a</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:fundamentals&amp;rev=1501285988&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>fundamentals</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:fundamentals&amp;rev=1501285988&amp;do=diff</link>
        <description>VoiceXML concepts

Dialogs

The VoiceXML application structure model is a Finite State Machine. A user of a VoiceXML application is always in one conversational state or dialog at a given time. Each dialog is followed by another dialog, and if no dialog is specified next, then the execution of the VoiceXML application is terminated. There are two types of dialogs: forms and menus. Forms collect user inputs in the form of values, just like an</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:grammars&amp;rev=1501285988&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>grammars</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:grammars&amp;rev=1501285988&amp;do=diff</link>
        <description>Grammars

Speech grammars - Grammar element

A speech grammar specifies a list of vocabulary for the user to select from to interact with the VoiceXML application. Following is an example of how you could define a speech grammar:


&lt;vxml version=&quot;2.0&quot;&gt;
&lt;form id=&quot;yyy&quot;&gt;
&lt;field name=&quot;xxx&quot;&gt;
&lt;grammar&gt;
&lt;![CDATA[
[
[excellent]
[good]
[fair]
[poor]
[help]
]
]]&gt;
&lt;/grammar&gt;
&lt;/field&gt;
&lt;/form&gt;
&lt;/vxml&gt;</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:overview&amp;rev=1501285988&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>overview</title>
        <link>https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:overview&amp;rev=1501285988&amp;do=diff</link>
        <description>VoiceXML Overview

 What is VoiceXML? 

VoiceXML is a standard based on XML that allows Web applications and content to be accessed by a phone. You can develop speech-based telephony applications using VoiceXML. The standard was developed by the VoiceXML Forum, which was founded by AT&amp;T, IBM, Lucent, and Motorola.</description>
    </item>
    <item rdf:about="https://wiki.voximal.com/doku.php?id=legacy:vxi_tutorial:start&amp;rev=1501286020&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-07-28T23:53:40+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_tutorial:start&amp;rev=1501286020&amp;do=diff</link>
        <description>VoiceXML Tutorial

Purpose

This tutorial teaches you how to develop Voice Extensible Markup Language (VoiceXML) based applications.
VoiceXML is markup language that brings Web-based applications and content delivery to interactive voice response applications; input is in the form of audio (voice or DTMF keypad tones), as is output (text to speech voice or recorded audio files). This tutorial provides an introduction to basic VoiceXML development. It describes the tools you&#039;ll need to build Voic…</description>
    </item>
</rdf:RDF>
