Develop Voice Applications with VoiceXML
voice xml |
Web pages consist of HTML that is rendered into a visible page by a Web browser. Similarly, a voice application consists of XML (VoiceXML, CCXML, or CallXML) which becomes an interactive voice application when processed by the Voxeo Corporation VoiceCenter network. All you need to do is write the application's XML, map it to a phone number in the Voxeo Application Manager, and give it a call.
https://evolution.voxeo.com/
Sample vxml file
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml">
<form id="login">
<field name="phone_number" type="phone">
<prompt>Please say your complete phone number</prompt>
</field>
<field name="pin_code" type="digits">
<prompt>Please say your PIN code</prompt>
</field>
<block>
<submit next="http://www.example.com/servlet/login"
namelist="phone_number pin_code"/>
</block>
</form>
</vxml>
Getting started with VoiceXML 2.0
0 comments: