<reprompt>

After a catch is executed, causes normal prompt processing to occur (queuing and counter increments) instead of suppressing prompt processing.

Syntax

<reprompt/>

Attributes

None.

Parents

<block>, <catch>, <error>, <filled>, <foreach>, <help>, <if>, <noinput>, <nomatch>

Children

None.

Example

<?xml version="1.0"?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml">
    <form id="creditCard">
        <field name="cardtype">
            <prompt>Which credit card type ?</prompt>
                <grammar type="application/srgs+xml" root="cardtype">
                    <rule id="cardtype">
                        <one-of>
                            <item>american express <tag>amex</tag></item>
                            <item>master card <tag>mc</tag></item>
                            <item>visa <tag>visa</tag></item>
                         </one-of>
                     </rule>
                </grammar>
                <noinput count="1">
                    Sorry I didn't hear you 
                    <reprompt/>
                </noinput>
                <noinput count="2">
                    Sorry still didn't hear you 
                    <reprompt/>
                </noinput>
                <nomatch count="1">
                    <prompt>
                        Sorry I didn't understand please repeat the card type
                    </prompt>
                </nomatch>
                <nomatch count="2">
                    <prompt>
                        I still don't understand. 
                        please select either american express or master card or visa
                    </prompt>
                </nomatch>
            <filled namelist="cardtype">
                <prompt>
                    You selected <value expr="cardtype"/>
                </prompt>
            </filled>
        </field>
    </form>
</vxml>