Questions tagged [vxml]

VoiceXML is designed for creating audio dialogs that feature synthesized speech, digitized audio, recognition of spoken and DTMF key input, recording of spoken input, telephony, and mixed initiative conversations.

VoiceXML (VXML) is the W3C's standard format for specifying interactive voice dialogues between a human and a computer. It allows voice applications to be developed and deployed in an analogous way to for visual applications. Just as HTML documents are interpreted by a visual web browser, VoiceXML documents are interpreted by a voice browser.

Typically, is used as the transport protocol for fetching VoiceXML pages. Some applications may use static VoiceXML pages, while others rely on dynamic VoiceXML page generation using an application server like , , , or .

Historically, VoiceXML platform vendors have implemented the standard in different ways, and added proprietary features. But the VoiceXML 2.0 standard, adopted as a W3C Recommendation on 16 March 2004, clarified most areas of difference. The VoiceXML Forum, an industry group promoting the use of the standard, provides a conformance testing process that certifies vendors' implementations as conformant.

VXML's latest spec version is 2.1. VXML 3.0 is in the working draft stage for many years now.

Related tags:

178 questions
0
votes
2 answers

not able to call perl script inside vxml using voximal

I have vxml file from which I am calling perl script, the perl script is very simple its just write on a text file. I am using voximal in asterisk to call the vxml file below is my vxml file.
0
votes
2 answers

In VXML is there a way to re-enter a field from a filled block without clearing the nomatch/noinput counters?

I am having an issue with a VXML form, basically I have a field with an initial prompt and have a set of noinput nomatch blocks using counters to play back different prompts dependent on the number of noinput/nomatch events have been thrown. I need…
Bah91
  • 23
  • 4
0
votes
2 answers

How to recognize caller's name and address in VXML?

I have recently got a chance to work on Plum Voice VXML. I am writing an IVR for a food ordering company in which it is required to ask name and address from the caller to save in database and to deliver the order later. For voice recognition we…
0
votes
2 answers

Voice XML -- need a field filled with raw ASR input

I'm trying to build a voice XML interface to a machine translation system. Most of the menu design is simple enough, but when the user actually says the phrase to be translated, I need to be able to intake whatever text comes from the ASR without…
ekayen
  • 1
0
votes
1 answer

How to retrieve a .wav file through POST in django and store it in a data model?

I am learning VXML and Django. I am trying to find out how to cleanly retrieve a recording from some voice-xml (vxml) browser and pass it to the server side where I use django to further handle the passed information. Then I want to store the file…
Potatoman
  • 23
  • 4
0
votes
1 answer

UCMA VXML platform support for parsing XML

We are using an instance of UCMA VoiceXMLBrowser in our IVR application. At some point in our flow, we need to fetch some XML content from an external source using a data element. In our web server access log, we can observe that a request will be…
mdoust
  • 429
  • 1
  • 4
  • 20
0
votes
1 answer

When I run my vxml application I get this syntax error

I get this error when I run my vxml app; "ECMAScript runtime error: Compilation produced 1 syntax errors.\n\nWhile evaluating:\n\"var acc_no = [37492414, 94190610, 23228367, 39574988, 64742440];\n\t\t\t\t\tfunction checkAccount(arr, val)…
0
votes
1 answer

record voice in vxml (Tellme studio developer account)

I have developer account in tell studio , I tried some basic snippet its working fine, finaly i tried record tag, but its not working , eve NOINPUT TAG also not working , This is my snippet ,
Bharanikumar
  • 25,457
  • 50
  • 131
  • 201
0
votes
1 answer

VXML on SpeechServer

I have a question, at http://www.vxml.org/frame.jsp?page=t_1.htm it says that i have to save a voicexmlfile as .xml but when i create an new application on speech Server 2007, it says, that I can put there .speax files only ... but when I do so, it…
Tyzak
  • 2,430
  • 8
  • 38
  • 52
0
votes
1 answer

How to use decimals in VXML

I'm trying to do a application that listen a name and two grades, do the media of the grades and then save it on a mysql database. I can't make the application to recognize the grade in decimal (in Portuguese). Here's my actual code:
0
votes
1 answer

VXML use the input for transfer

I'm trying to get user input (country code + phone number) in order to call it later on using the transfer element. My problem meets at the transfer elements, which just hang up. I do not know how to debug them. I'm using NEXMO as a provider. I…
0
votes
1 answer

Calling Yahoo Weather API from VoiceXML

I'm trying to make a voice weather system with voiceXML and the Yahoo Weather API. To develop my program I'm using voxeo evolution. To call the Weather API I'm using the data vxml tag with an srcexpr because I need a dynamic URL (the program asks…
0
votes
1 answer

TTS concatenation based on user input

Greeting StackOverflow community, Is it possible to take what a user says or enters (like the letters 1 - 9) and instead of the text to speech engine reading the numbers back to the user it plays a prerecorded audio clip so it sounds like our…
Krunkmaster
  • 335
  • 1
  • 13
0
votes
1 answer

Catching Json data variables from json_decode

I have a vxml script that catches a post parameter to send a text message to a user to collect their email. Here is the script \n"; $PIN = $_GET['pin']; $CALLER = 1 .…
Krunkmaster
  • 335
  • 1
  • 13
0
votes
1 answer

Commenting approach: How to comment something that's used elsewhere in app?

My IVR app contains a lot of global variables, as a side effect of an inescapable vendor-supplied framework. As such, there are a lot of cases where a variable is given a value on one JSP, and is not touched again until a caller has gone several…
IVR Avenger
  • 15,090
  • 13
  • 46
  • 57