VXML出错?

时间:2015-08-08 06:35:53

标签: php vxml voicexml nexmo

我正在使用voicexml来处理来自客户的入站呼叫。以下是我正在使用的vxml

<?xml version="1.0" encoding="UTF-8"?>
<vxml version = "2.1" >

        <menu dtmf="true">
            <property name="inputmodes" value="dtmf"/>
            <prompt>Hello, Welcome! If you are an existing customer, press 1, For support press 2</prompt>
            <choice dtmf="1" next="#existing"/>
            <choice dtmf="2" next="#support"/>
        </menu>
        <form id="existing">
            <record name="recording" beep="true" maxtime="100s">
                <block>
                    <prompt>Please wait while we transfer the call</prompt>
                </block>
                 <transfer name="MyCall" dest="tel:+911111111111" bridge="true" connecttimeout="20s"/>
                <filled>
                    <submit next="call_inbound.php" method="post" namelist="recording" enctype="multipart/form-data"/>
                </filled>
            </record>
        </form>

        <form id="support">
            <record name="recording" beep="true" maxtime="100s">
                    <block>
                        <prompt>Please wait while we transfer the call</prompt>
                    </block>
                    <transfer name="MyCall" dest="tel:+9111111111111" bridge="true" connecttimeout="20s"/>
                    <filled>
                        <submit next="call_inbound.php" method="post" namelist="recording" enctype="multipart/form-data"/>
                    </filled>
            </record>
        </form>

</vxml>

任何想法,xml中的错误是什么。 xml中似乎有一些错误。如果我删除记录标记,它可以工作。

由于

1 个答案:

答案 0 :(得分:2)

您不能将表单项(如阻止和转移)放在另一个表单项(即您的情况下)中。使用验证XML编辑器并使用VoiceXML XSD架构进行评估。