Hi  Carlos, <br><br>we made small change in voice-glue code for audio fetching, we add sleep in voiceglue perl code , it is working fine, you can try, if you find any better solution, feel free to mail me<br><br>...<br><br>
code changed in&nbsp; /usr/bin/voiceglue<br><br>sub handle_ovxi_queue{<br>..........<br>.........<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ##&nbsp; Send out the sound cache request<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; send_bytes ($::SC_fhinfo, $sc_request . &quot;\n&quot;);<br>&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; select(undef, undef, undef, 0.025); #modified for delay<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ##&nbsp; and record the request to it<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $::SC_request_id_info-&gt;{$request_id} =<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&quot;vxml_fh&quot; =&gt; $fhinfo-&gt;{&quot;fh&quot;},<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;index&quot; =&gt; $index};<br>&nbsp;&nbsp;&nbsp; };<br>};<br><br><br>&nbsp;Note:just we added  select(undef, undef, undef, 0.025); in sub handle_ovxi_queue function in voiceglue perl code<br><br><br>&nbsp;<br><br><div class="gmail_quote">
On Tue, Feb 17, 2009 at 4:55 AM,  <span dir="ltr">&lt;<a href="mailto:voiceglue-request@voiceglue.org">voiceglue-request@voiceglue.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Send Voiceglue mailing list submissions to<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:voiceglue@voiceglue.org">voiceglue@voiceglue.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.voiceglue.org/mailman/listinfo/voiceglue" target="_blank">http://www.voiceglue.org/mailman/listinfo/voiceglue</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:voiceglue-request@voiceglue.org">voiceglue-request@voiceglue.org</a><br>
<br>
You can reach the person managing the list at<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:voiceglue-owner@voiceglue.org">voiceglue-owner@voiceglue.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Voiceglue digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
 &nbsp; 1. On audio caching and HTTP cookies (Doug Campbell)<br>
 &nbsp; 2. weird thing fetching wav file (Alarc?n Carlos)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 16 Feb 2009 15:08:15 -0500<br>
From: Doug Campbell &lt;<a href="mailto:voiceglue@campbellcastle.com">voiceglue@campbellcastle.com</a>&gt;<br>
Subject: [Voiceglue] On audio caching and HTTP cookies<br>
To: General discussion about voiceglue &lt;<a href="mailto:voiceglue@voiceglue.org">voiceglue@voiceglue.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4999C7AF.9070009@campbellcastle.com">4999C7AF.9070009@campbellcastle.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
In implementing the changes for cookies and dynamically-generated<br>
audio data loading, I have come across the following design issue.<br>
<br>
I would appreciate feedback on any improvements I can make<br>
regarding this issue.<br>
<br>
If performance were not a concern, every HTTP request implied by<br>
a VXML session would be made to the server (not cached), and would<br>
contain the cookies that have been set during that session.<br>
<br>
However, caching is important to performance, especially<br>
when scaling to many simultaneous calls. &nbsp;Caching can<br>
occur either within a VXML session (private caching)<br>
or across VXML sessions (shared caching).<br>
<br>
Private caching should, theoretically, be governed by<br>
HTTP and VXML caching directives, and therefore the programmer<br>
can achieve the control he desires regarding the tradeoffs<br>
between caching, cookies, and dynamically-generated content.<br>
Unfortunately, private caching has limited performance<br>
benefits if many calls are using the same data.<br>
<br>
Shared caching prohibits the use of cookies to identify<br>
a session and can violate the semantic transparency<br>
of the requests. &nbsp;But, shared caching can provide dramatic<br>
performance benefits when many calls use the same data.<br>
<br>
Currently, voiceglue performs private caching for non-audio<br>
data (e.g. VXML pages) and shared caching for audio data.<br>
<br>
The changes I am currently making will separate audio data<br>
fetches into static versus dynamic fetches. &nbsp;Static audio<br>
fetches will continue to not send cookies and will get cached across<br>
sessions, while dynamic audio fetches will send cookies and not<br>
get cached at all.<br>
<br>
The problem comes in determining which audio fetches are<br>
static and which are dynamic.<br>
<br>
While I would like to be able to determine static versus<br>
dynamic audio fetches by examining the server HTTP headers<br>
Expires: &lt;now&gt;, Cache-Control: no-cache, Cache-Control:<br>
private, and Cache-Control: s-maxage=0, I cannot wait for the<br>
server response as by then it is too late to have sent cookies.<br>
<br>
So, I propose determining static audio fetches as those having<br>
a VXML maxage attribute (or audiomaxage property if not defined)<br>
not equal to 0. &nbsp;Conversely, dynamic audio fetches have maxage<br>
set to 0. &nbsp;This gives the VXML script author full control over<br>
whether to use the shared cache for any particular audio resource.<br>
<br>
Anyone see isues with this? &nbsp;Or a better way overall?<br>
<br>
Doug Campbell<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 17 Feb 2009 00:25:03 +0100<br>
From: Alarc?n Carlos &lt;<a href="mailto:carlos.alarcon@tyven.com">carlos.alarcon@tyven.com</a>&gt;<br>
Subject: [Voiceglue] weird thing fetching wav file<br>
To: General about voiceglue discussion &lt;<a href="mailto:voiceglue@voiceglue.org">voiceglue@voiceglue.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4742B973-6B27-4895-A21C-EACD7AB329F8@tyven.com">4742B973-6B27-4895-A21C-EACD7AB329F8@tyven.com</a>&gt;<br>
Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed<br>
<br>
Hi I found out a strange behaviour with this type of vxml files:<br>
By the way I am using voiceglue 0.8, I haven&#39;t upgrade yet.<br>
<br>
As you can see in this vxml contains some blocks. Those blocks have a<br>
wav file each which is accessible properly via http.<br>
<br>
two of those consecutive blocks are:<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/99.wav&quot;&gt;99&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/99.wav&quot;&gt;99&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
<br>
When voiceglue is just started (no cache at all) the 99.wav file is<br>
played once but then it fails to retrieve it again, leaving the call<br>
in a strange status (chanel is openned but nothing is going on)<br>
next time I try to run this vxml it sounds ok.<br>
It happends the first time I try to play the same sound twice in such<br>
way.<br>
<br>
the lates lines of Dynlog are (the full log is at the end of the mail):<br>
00:21:05:861 DBUG PHONGLUE xen4.tyv callid=[1] snd PLAYFILE<br>
file=&quot;voiceglue/url/localhost/telepagos/audio/99.wav&quot; stopkeys=&quot;&quot; to<br>
AGI client on fh=&quot;::FASTAGI1&quot; at host=127.0.0.1 callid=[1]<br>
00:21:05:861 DBUG PHONGLUE xen4.tyv snd &quot;STREAM FILE voiceglue/url/<br>
localhost/telepagos/audio/99 \&quot;\&quot;\n&quot; to ::FASTAGI1<br>
00:21:07:769 DBUG PHONGLUE xen4.tyv rcv agi(::FASTAGI1): &quot;200<br>
result=0 endpos=15253\n&quot;<br>
00:21:07:769 DBUG PHONGLUE xen4.tyv callid=[1] AGI result=0 values:<br>
endpos=15253<br>
00:21:07:770 DBUG PHONGLUE xen4.tyv callid=[1] snd played callid=1<br>
status=0 msg=&quot;&quot; reason=end-of-data to CT client on fh=&quot;::CTCLIENT1&quot;<br>
at host=127.0.0.1 proto=SATC<br>
00:21:07:770 DBUG PHONGLUE xen4.tyv snd &quot;played 1 0 \&quot;\&quot; 1\n&quot;<br>
to ::CTCLIENT1<br>
00:21:07:770 DBUG VOICEGLU xen4.tyv rcv ctsrv: &quot;played 1 0 \&quot;\&quot; 1\n&quot;<br>
00:21:07:770 DBUG VOICEGLU xen4.tyv callid=[1] parsed played callid=1<br>
status=0 msg=&quot;&quot; reason=end-of-data<br>
00:21:07:770 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:07:770 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): Checking for<br>
prompts<br>
00:21:07:771 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): No prompts<br>
ready, waiting for more<br>
<br>
Any Idea of what can be wrong?<br>
<br>
<br>
<br>
&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;<br>
&lt;vxml xml:lang=&quot;es-ES&quot; version=&quot;2.0&quot; xmlns=&quot;<a href="http://www.w3.org/2001/" target="_blank">http://www.w3.org/2001/</a><br>
vxml&quot;&gt;<br>
&lt;property name=&quot;termchar&quot; value=&quot;&quot;/&gt;<br>
&lt;property name=&quot;bargein&quot; value=&quot;false&quot;/&gt;<br>
&lt;property name=&quot;inputmodes&quot; value=&quot;dtmf&quot;/&gt;<br>
&lt;catch event=&quot;connection.disconnect.hangup&quot;&gt;&lt;goto next=&quot;index.php?<br>
page=hangup&quot;/&gt;&lt;/catch&gt;<br>
&lt;catch event=&quot;error&quot;&gt;&lt;goto next=&quot;index.php?page=hangup&quot;/&gt;&lt;/catch&gt;<br>
&lt;form&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/card.wav&quot;&gt;Numero&lt;/audio&gt;&lt;/prompt&gt;&lt;/<br>
block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/12.wav&quot;&gt;12&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/34.wav&quot;&gt;34&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/99.wav&quot;&gt;99&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/99.wav&quot;&gt;99&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/90.wav&quot;&gt;90&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/12.wav&quot;&gt;12&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/34.wav&quot;&gt;34&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/5.wav&quot;&gt;5&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/prompt_date.wav&quot;&gt;Fecha de caducida&lt;/<br>
audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/12.wav&quot;&gt;12&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
&lt;block&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/12.wav&quot;&gt;12&lt;/audio&gt;&lt;/prompt&gt;&lt;/block&gt;<br>
<br>
&lt;field name=&quot;confirm&quot;&gt;<br>
&lt;prompt&gt;pulse uno para confirmar&lt;/prompt&gt;<br>
&lt;option dtmf=&quot;1&quot; value=&quot;yes&quot;&gt;1&lt;/option&gt;<br>
&lt;prompt&gt;Pulse dos para volver a empezar&lt;/prompt&gt;<br>
&lt;option dtmf=&quot;2&quot; value=&quot;no&quot;&gt;0&lt;/option&gt;<br>
&lt;/field&gt;<br>
&lt;filled&gt;&lt;submit next=&quot;index.php&quot; namelist=&quot;txnid confirm&quot;<br>
method=&quot;post&quot;/&gt;&lt;/filled&gt;&lt;/form&gt;<br>
&lt;catch event=&quot;noinput&quot;&gt;&lt;prompt&gt;&lt;audio src=&quot;audio/noinput.wav&quot;&gt;No he<br>
oido nada !&lt;/audio&gt;&lt;/prompt&gt;<br>
&lt;reprompt/&gt;&lt;/catch&gt;<br>
&lt;/vxml&gt;<br>
<br>
Dynlog:<br>
<br>
00:21:01:845 DBUG PHONGLUE xen4.tyv snd &quot;incoming 1 XXXXXXXXX 1001\n&quot;<br>
to ::CTCLIENT1<br>
00:21:01:846 DBUG VOICEGLU xen4.tyv rcv ctsrv: &quot;incoming 1 XXXXXXXXX<br>
1001\n&quot;<br>
00:21:01:846 DBUG VOICEGLU xen4.tyv callid=[1] parsed incoming<br>
callid=1 ani=&quot;XXXXXXXXX&quot; dnis=&quot;1001&quot;<br>
00:21:01:846 NOTI VOICEGLU xen4.tyv callid=[1] starting VXML interp<br>
on url=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; for DNIS=&quot;1001&quot;<br>
perlfd=9 vxmlfd=10<br>
00:21:01:848 NOTI OPEN_VXI xen4.tyv callid=[1] Channel 1: Waiting for<br>
Call 1<br>
00:21:01:848 DBUG OPEN_VXI xen4.tyv callid=[1] |-1211016304|1|60001|<br>
testClient::ChannelThread|About to call VXIplatformWaitForCall<br>
00:21:01:848 DBUG OPEN_VXI xen4.tyv callid=[1] |-1211016304|1|60001|<br>
testClient::ChannelThread|In a Call<br>
00:21:01:848 NOTI OPEN_VXI xen4.tyv callid=[1] Channel 1: In a Call<br>
00:21:01:889 DBUG OPEN_VXI xen4.tyv callid=[1]<br>
VXIrecLoadGrammarOption called with type speech, choices [0=&quot;1&quot;<br>
1=&quot;0&quot;], values [0=&quot;yes&quot; 1=&quot;no&quot;], properties {&quot; absoluteURI&quot;=&quot;http://<br>
localhost/telepagos/prueba.vxml&quot; &quot; base&quot;=&quot;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&quot; &quot; encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot;<br>
&quot;bargein&quot;=&quot;false&quot; &quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot; &quot;vxi.rec.bargeinType&quot;=2<br>
&quot;vxi.rec.confidenceLevel&quot;=0.5 &quot;vxi.rec.grammarWeight&quot;=1<br>
&quot;vxi.rec.inputModes&quot;=2 &quot;vxi.rec.language&quot;=&quot;es-ES&quot;<br>
&quot;vxi.rec.prefetchLevel&quot;=1 &quot;vxi.rec.resultNbestSize&quot;=1<br>
&quot;vxi.rec.sensitivity&quot;=0.5 &quot;vxi.rec.speedVsAccuracy&quot;=0.5<br>
&quot;vxi.rec.terminatorChar&quot;=&quot;&quot; &quot;vxi.rec.timeoutTerminator&quot;=0}<br>
00:21:01:889 DBUG OPEN_VXI xen4.tyv callid=[1]<br>
VXIrecLoadGrammarFromString called with type text/x-grammar-choice-<br>
dtmf, grammar &lt;rule id=&quot;choice&quot;&gt; &nbsp; &lt;one-of&gt; &nbsp; &nbsp; &lt;item&gt; 1 &lt;tag&gt;yes&lt;/<br>
tag&gt; &lt;/item&gt; &nbsp; &nbsp; &lt;item&gt; 2 &lt;tag&gt;no&lt;/tag&gt; &lt;/item&gt; &nbsp; &lt;/one-of&gt; &lt;/rule&gt; ,<br>
properties {&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot; &quot;vxi.rec.bargeinType&quot;=2<br>
&quot;vxi.rec.confidenceLevel&quot;=0.5 &quot;vxi.rec.grammarWeight&quot;=1<br>
&quot;vxi.rec.inputModes&quot;=2 &quot;vxi.rec.language&quot;=&quot;es-ES&quot;<br>
&quot;vxi.rec.prefetchLevel&quot;=1 &quot;vxi.rec.resultNbestSize&quot;=1<br>
&quot;vxi.rec.sensitivity&quot;=0.5 &quot;vxi.rec.speedVsAccuracy&quot;=0.5<br>
&quot;vxi.rec.terminatorChar&quot;=&quot;&quot; &quot;vxi.rec.timeoutTerminator&quot;=0}<br>
00:21:01:890 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Grammar<br>
0xb7289460 \&quot;text/x-grammar-choice-dtmf\&quot; \&quot;&lt;rule id=\\\&quot;choice\\\&quot;&gt;\<br>
\n &nbsp;&lt;one-of&gt;\\n &nbsp; &nbsp;&lt;item&gt; 1 &lt;tag&gt;yes&lt;/tag&gt; &lt;/item&gt;\\n &nbsp; &nbsp;&lt;item&gt; 2<br>
&lt;tag&gt;no&lt;/tag&gt; &lt;/item&gt;\\n &nbsp;&lt;/one-of&gt;\\n&lt;/rule&gt;\\n\&quot; \&quot;inputmodes=\\<br>
\&quot;dtmf\\\&quot; bargein=\\\&quot;false\\\&quot; fetchaudiodelay=\\\&quot;2s\\\&quot;<br>
fetchtimeout=\\\&quot;7s\\\&quot; termchar=\\\&quot;\\\&quot; termtimeout=\\\&quot;0s\\\&quot;<br>
interdigittimeout=\&quot;\n&quot;<br>
00:21:01:902 DBUG VOICEGLU xen4.tyv callid=[1] New grammar id<br>
0xb7289460 parsed<br>
00:21:01:902 DBUG VOICEGLU xen4.tyv callid=[1] snd Grammar 0 to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:902 DBUG VOICEGLU xen4.tyv snd &quot;Grammar 0\n&quot; to ::PERL_VXML_1<br>
00:21:01:902 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Grammar<br>
0xb7289460 &quot;text/x-grammar-choice-dtmf&quot; &quot;&lt;rule id=\&quot;choice\&quot;&gt;\n &nbsp;&lt;one-<br>
of&gt;\n &nbsp; &nbsp;&lt;item&gt; 1 &lt;tag&gt;yes&lt;/tag&gt; &lt;/item&gt;\n &nbsp; &nbsp;&lt;item&gt; 2 &lt;tag&gt;no&lt;/tag&gt;<br>
&lt;/item&gt;\n &nbsp;&lt;/one-of&gt;\n&lt;/rule&gt;\n&quot; &quot;inputmodes=\&quot;dtmf\&quot; bargein=\&quot;false<br>
\&quot; fetchaudiodelay=\&quot;2s\&quot; fetchtimeout=\&quot;7s\&quot; termchar=\&quot;\&quot;<br>
termtimeout=\&quot;0s\&quot; interdigittimeout=&quot;<br>
00:21:01:902 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Grammar 0<br>
00:21:01:903 DBUG OPEN_VXI xen4.tyv callid=[1]<br>
VXIrecLoadGrammarOption called with type DTMF, choices [0=&quot;1&quot; 1=&quot;2&quot;],<br>
values [0=&quot;yes&quot; 1=&quot;no&quot;], properties {&quot; absoluteURI&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot; base&quot;=&quot;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&quot; &quot; encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot;<br>
&quot;bargein&quot;=&quot;false&quot; &quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot; &quot;vxi.rec.bargeinType&quot;=2<br>
&quot;vxi.rec.confidenceLevel&quot;=0.5 &quot;vxi.rec.grammarWeight&quot;=1<br>
&quot;vxi.rec.inputModes&quot;=2 &quot;vxi.rec.language&quot;=&quot;es-ES&quot;<br>
&quot;vxi.rec.prefetchLevel&quot;=1 &quot;vxi.rec.resultNbestSize&quot;=1<br>
&quot;vxi.rec.sensitivity&quot;=0.5 &quot;vxi.rec.speedVsAccuracy&quot;=0.5<br>
&quot;vxi.rec.terminatorChar&quot;=&quot;&quot; &quot;vxi.rec.timeoutTerminator&quot;=0}<br>
00:21:01:903 DBUG OPEN_VXI xen4.tyv callid=[1]<br>
VXIrecLoadGrammarFromString called with type text/x-grammar-choice-<br>
dtmf, grammar &lt;rule id=&quot;choice&quot;&gt; &nbsp; &lt;one-of&gt; &nbsp; &nbsp; &lt;item&gt; 1 &lt;tag&gt;yes&lt;/<br>
tag&gt; &lt;/item&gt; &nbsp; &nbsp; &lt;item&gt; 2 &lt;tag&gt;no&lt;/tag&gt; &lt;/item&gt; &nbsp; &lt;/one-of&gt; &lt;/rule&gt; ,<br>
properties {&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot; &quot;vxi.rec.bargeinType&quot;=2<br>
&quot;vxi.rec.confidenceLevel&quot;=0.5 &quot;vxi.rec.grammarWeight&quot;=1<br>
&quot;vxi.rec.inputModes&quot;=2 &quot;vxi.rec.language&quot;=&quot;es-ES&quot;<br>
&quot;vxi.rec.prefetchLevel&quot;=1 &quot;vxi.rec.resultNbestSize&quot;=1<br>
&quot;vxi.rec.sensitivity&quot;=0.5 &quot;vxi.rec.speedVsAccuracy&quot;=0.5<br>
&quot;vxi.rec.terminatorChar&quot;=&quot;&quot; &quot;vxi.rec.timeoutTerminator&quot;=0}<br>
00:21:01:903 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Grammar<br>
0xb723c650 \&quot;text/x-grammar-choice-dtmf\&quot; \&quot;&lt;rule id=\\\&quot;choice\\\&quot;&gt;\<br>
\n &nbsp;&lt;one-of&gt;\\n &nbsp; &nbsp;&lt;item&gt; 1 &lt;tag&gt;yes&lt;/tag&gt; &lt;/item&gt;\\n &nbsp; &nbsp;&lt;item&gt; 2<br>
&lt;tag&gt;no&lt;/tag&gt; &lt;/item&gt;\\n &nbsp;&lt;/one-of&gt;\\n&lt;/rule&gt;\\n\&quot; \&quot;inputmodes=\\<br>
\&quot;dtmf\\\&quot; bargein=\\\&quot;false\\\&quot; fetchaudiodelay=\\\&quot;2s\\\&quot;<br>
fetchtimeout=\\\&quot;7s\\\&quot; termchar=\\\&quot;\\\&quot; termtimeout=\\\&quot;0s\\\&quot;<br>
interdigittimeout=\&quot;\n&quot;<br>
00:21:01:903 DBUG VOICEGLU xen4.tyv callid=[1] New grammar id<br>
0xb723c650 assigned to previous parse<br>
00:21:01:903 DBUG VOICEGLU xen4.tyv callid=[1] snd Grammar 0 to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:904 DBUG VOICEGLU xen4.tyv snd &quot;Grammar 0\n&quot; to ::PERL_VXML_1<br>
00:21:01:904 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Grammar<br>
0xb723c650 &quot;text/x-grammar-choice-dtmf&quot; &quot;&lt;rule id=\&quot;choice\&quot;&gt;\n &nbsp;&lt;one-<br>
of&gt;\n &nbsp; &nbsp;&lt;item&gt; 1 &lt;tag&gt;yes&lt;/tag&gt; &lt;/item&gt;\n &nbsp; &nbsp;&lt;item&gt; 2 &lt;tag&gt;no&lt;/tag&gt;<br>
&lt;/item&gt;\n &nbsp;&lt;/one-of&gt;\n&lt;/rule&gt;\n&quot; &quot;inputmodes=\&quot;dtmf\&quot; bargein=\&quot;false<br>
\&quot; fetchaudiodelay=\&quot;2s\&quot; fetchtimeout=\&quot;7s\&quot; termchar=\&quot;\&quot;<br>
termtimeout=\&quot;0s\&quot; interdigittimeout=&quot;<br>
00:21:01:904 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Grammar 0<br>
00:21:01:908 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:909 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:909 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:909 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;/speak&gt;, properties={&quot;<br>
absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot; base&quot;=&quot;http://<br>
localhost/telepagos/prueba.vxml&quot; &quot; encoding&quot;=&quot;iso-8859-1&quot;<br>
&quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot; &quot;bargeintype&quot;=&quot;speech&quot;<br>
&quot;confidencelevel&quot;=&quot;0.5&quot; &quot;datafetchhint&quot;=&quot;prefetch&quot;<br>
&quot;documentfetchhint&quot;=&quot;safe&quot; &quot;fetchaudiodelay&quot;=&quot;2s&quot;<br>
&quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;/speak&gt;)<br>
00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;/speak&gt;&quot;<br>
00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:911 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:911 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:911 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:911 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;/speak&gt;, properties={&quot;<br>
absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot; base&quot;=&quot;http://<br>
localhost/telepagos/prueba.vxml&quot; &quot; encoding&quot;=&quot;iso-8859-1&quot;<br>
&quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot; &quot;bargeintype&quot;=&quot;speech&quot;<br>
&quot;confidencelevel&quot;=&quot;0.5&quot; &quot;datafetchhint&quot;=&quot;prefetch&quot;<br>
&quot;documentfetchhint&quot;=&quot;safe&quot; &quot;fetchaudiodelay&quot;=&quot;2s&quot;<br>
&quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;/speak&gt;)<br>
00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;/speak&gt;&quot;<br>
00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:913 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/card.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;Numero de tarjeta&lt;/audio&gt;&lt;/<br>
speak&gt;, properties={&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&quot; &quot; base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:913 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/card.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;Numero de tarjeta&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:913 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
card.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\<br>
\&quot;&gt;Numero de tarjeta&lt;/audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:914 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1000] for play_queued index 0 as: 1000 f url http://<br>
localhost/telepagos/audio/card.wav tts Numero de tarjeta<br>
00:21:01:914 DBUG VOICEGLU xen4.tyv snd &quot;1000 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/card.wav tts Numero de tarjeta\n&quot; to ::MAIN_TO_SC<br>
00:21:01:914 DBUG SNDCACHE xen4.tyv rcv main: &quot;1000 f url http://<br>
localhost/telepagos/audio/card.wav tts Numero de tarjeta\n&quot;<br>
00:21:01:914 DBUG SNDCACHE xen4.tyv screq=[1000] processing top-of-<br>
queue for url/localhost/telepagos/audio/card.wav<br>
00:21:01:917 DBUG SNDCACHE xen4.tyv screq=[1000] started pid=20486 on<br>
url/localhost/telepagos/audio/card.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/card.wav" target="_blank">http://localhost/telepagos/audio/card.wav</a><br>
00:21:01:917 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:918 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:918 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/card.wav\&quot; fetchtimeout=\&quot;7s<br>
\&quot; fetchhint=\&quot;prefetch\&quot;&gt;Numero de tarjeta&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:919 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
12.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;12&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:919 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1001] for play_queued index 1 as: 1001 f url http://<br>
localhost/telepagos/audio/12.wav tts 12<br>
00:21:01:920 DBUG VOICEGLU xen4.tyv snd &quot;1001 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/12.wav tts 12\n&quot; to ::MAIN_TO_SC<br>
00:21:01:920 DBUG SNDCACHE xen4.tyv rcv main: &quot;1001 f url http://<br>
localhost/telepagos/audio/12.wav tts 12\n&quot;<br>
00:21:01:920 DBUG SNDCACHE xen4.tyv screq=[1001] processing top-of-<br>
queue for url/localhost/telepagos/audio/12.wav<br>
00:21:01:925 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:925 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:925 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/12.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:926 DBUG SNDCACHE xen4.tyv screq=[1001] started pid=20487 on<br>
url/localhost/telepagos/audio/12.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/12.wav" target="_blank">http://localhost/telepagos/audio/12.wav</a><br>
00:21:01:928 DBUG SNDCACHE xen4.tyv pid=20486 done making url/<br>
localhost/telepagos/audio/card.wav<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1000] processing top-of-<br>
queue for url/localhost/telepagos/audio/card.wav<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1000] result=1 in cache<br>
for url/localhost/telepagos/audio/card.wav<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv snd &quot;1000 1 voiceglue/url/<br>
localhost/telepagos/audio/card.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv pid=20487 done making url/<br>
localhost/telepagos/audio/12.wav<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1001] processing top-of-<br>
queue for url/localhost/telepagos/audio/12.wav<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1001] result=1 in cache<br>
for url/localhost/telepagos/audio/12.wav<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv snd &quot;1001 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:928 DBUG SNDCACHE xen4.tyv rcv main: &quot;1002 f url http://<br>
localhost/telepagos/audio/34.wav tts 34\n&quot;<br>
00:21:01:929 DBUG SNDCACHE xen4.tyv screq=[1002] processing top-of-<br>
queue for url/localhost/telepagos/audio/34.wav<br>
00:21:01:931 DBUG SNDCACHE xen4.tyv screq=[1002] started pid=20488 on<br>
url/localhost/telepagos/audio/34.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/34.wav" target="_blank">http://localhost/telepagos/audio/34.wav</a><br>
00:21:01:937 DBUG PHONGLUE xen4.tyv rcv ct(::CTCLIENT1): &quot;play 1<br>
\&quot;voiceglue/url/localhost/telepagos/audio/card.wav\&quot; \&quot;\&quot;\n&quot;<br>
00:21:01:938 DBUG PHONGLUE xen4.tyv callid=[1] parsed play callid=1<br>
files=(&quot;voiceglue/url/localhost/telepagos/audio/card.wav&quot;) stopkeys=&quot;&quot;<br>
00:21:01:938 DBUG PHONGLUE xen4.tyv callid=[1] snd PLAYFILE<br>
file=&quot;voiceglue/url/localhost/telepagos/audio/card.wav&quot; stopkeys=&quot;&quot;<br>
to AGI client on fh=&quot;::FASTAGI1&quot; at host=127.0.0.1 callid=[1]<br>
00:21:01:938 DBUG PHONGLUE xen4.tyv snd &quot;STREAM FILE voiceglue/url/<br>
localhost/telepagos/audio/card \&quot;\&quot;\n&quot; to ::FASTAGI1<br>
00:21:01:941 DBUG SNDCACHE xen4.tyv pid=20488 done making url/<br>
localhost/telepagos/audio/34.wav<br>
00:21:01:941 DBUG SNDCACHE xen4.tyv screq=[1002] processing top-of-<br>
queue for url/localhost/telepagos/audio/34.wav<br>
00:21:01:941 DBUG SNDCACHE xen4.tyv screq=[1002] result=1 in cache<br>
for url/localhost/telepagos/audio/34.wav<br>
00:21:01:941 DBUG SNDCACHE xen4.tyv snd &quot;1002 1 voiceglue/url/<br>
localhost/telepagos/audio/34.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:942 DBUG SNDCACHE xen4.tyv rcv main: &quot;1003 f url http://<br>
localhost/telepagos/audio/99.wav tts 99\n&quot;<br>
00:21:01:942 DBUG SNDCACHE xen4.tyv screq=[1003] processing top-of-<br>
queue for url/localhost/telepagos/audio/99.wav<br>
00:21:01:944 DBUG SNDCACHE xen4.tyv screq=[1003] started pid=20489 on<br>
url/localhost/telepagos/audio/99.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/99.wav" target="_blank">http://localhost/telepagos/audio/99.wav</a><br>
00:21:01:945 DBUG SNDCACHE xen4.tyv rcv main: &quot;1004 f url http://<br>
localhost/telepagos/audio/99.wav tts 99\n&quot;<br>
00:21:01:945 DBUG SNDCACHE xen4.tyv screq=[1004] processing top-of-<br>
queue for url/localhost/telepagos/audio/99.wav<br>
00:21:01:945 DBUG SNDCACHE xen4.tyv screq=[1004] awaiting existing<br>
job for url/localhost/telepagos/audio/99.wav<br>
00:21:01:946 DBUG SNDCACHE xen4.tyv rcv main: &quot;1005 f url http://<br>
localhost/telepagos/audio/90.wav tts 90\n&quot;<br>
00:21:01:946 DBUG SNDCACHE xen4.tyv screq=[1005] processing top-of-<br>
queue for url/localhost/telepagos/audio/90.wav<br>
00:21:01:951 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/34.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;34&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/34.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;34&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
34.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;34&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1002] for play_queued index 2 as: 1002 f url http://<br>
localhost/telepagos/audio/34.wav tts 34<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv snd &quot;1002 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/34.wav tts 34\n&quot; to ::MAIN_TO_SC<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/34.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;34&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1000 1 voiceglue/url/<br>
localhost/telepagos/audio/card.wav&quot;<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): Checking for<br>
prompts<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): Found prompts<br>
to play, playing<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] snd play callid=1<br>
files=(&quot;voiceglue/url/localhost/telepagos/audio/card.wav&quot;)<br>
stopkeys=&quot;&quot; to CT server on fh=&quot;::CTSRV&quot; at host=localhost<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv snd &quot;play 1 \&quot;voiceglue/url/<br>
localhost/telepagos/audio/card.wav\&quot; \&quot;\&quot;\n&quot; to ::CTSRV<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1001 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav&quot;<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
99.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;99&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1003] for play_queued index 3 as: 1003 f url http://<br>
localhost/telepagos/audio/99.wav tts 99<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv snd &quot;1003 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/99.wav tts 99\n&quot; to ::MAIN_TO_SC<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/99.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;99&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/99.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;99&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/99.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;99&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
99.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;99&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1004] for play_queued index 4 as: 1004 f url http://<br>
localhost/telepagos/audio/99.wav tts 99<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv snd &quot;1004 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/99.wav tts 99\n&quot; to ::MAIN_TO_SC<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/99.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;99&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/99.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;99&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/99.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;99&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:953 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1002 1 voiceglue/url/<br>
localhost/telepagos/audio/34.wav&quot;<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
90.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;90&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1005] for play_queued index 5 as: 1005 f url http://<br>
localhost/telepagos/audio/90.wav tts 90<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv snd &quot;1005 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/90.wav tts 90\n&quot; to ::MAIN_TO_SC<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/90.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;90&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/90.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;90&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/90.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;90&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
12.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;12&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1006] for play_queued index 6 as: 1006 f url http://<br>
localhost/telepagos/audio/12.wav tts 12<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv snd &quot;1006 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/12.wav tts 12\n&quot; to ::MAIN_TO_SC<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:954 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/12.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
34.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;34&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1007] for play_queued index 7 as: 1007 f url http://<br>
localhost/telepagos/audio/34.wav tts 34<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv snd &quot;1007 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/34.wav tts 34\n&quot; to ::MAIN_TO_SC<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/34.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;34&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/34.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;34&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/34.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;34&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
5.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;5&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1008] for play_queued index 8 as: 1008 f url http://<br>
localhost/telepagos/audio/5.wav tts 5<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv snd &quot;1008 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/5.wav tts 5\n&quot; to ::MAIN_TO_SC<br>
00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/5.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;5&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/5.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;5&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/5.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;5&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
prompt_date.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\<br>
\&quot;&gt;Fecha de caducida&lt;/audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1009] for play_queued index 9 as: 1009 f url http://<br>
localhost/telepagos/audio/prompt_date.wav tts Fecha de caducida<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv snd &quot;1009 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/prompt_date.wav tts Fecha de caducida\n&quot; to ::MAIN_TO_SC<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/prompt_date.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;Fecha de caducida&lt;/audio&gt;&lt;/<br>
speak&gt;, properties={&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&quot; &quot; base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/prompt_date.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;Fecha de caducida&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/prompt_date.wav\&quot;<br>
fetchtimeout=\&quot;7s\&quot; fetchhint=\&quot;prefetch\&quot;&gt;Fecha de caducida&lt;/audio&gt;&lt;/<br>
speak&gt;&quot;<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
12.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;12&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:957 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1010] for play_queued index 10 as: 1010 f url http://<br>
localhost/telepagos/audio/12.wav tts 12<br>
00:21:01:957 DBUG VOICEGLU xen4.tyv snd &quot;1010 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/12.wav tts 12\n&quot; to ::MAIN_TO_SC<br>
00:21:01:957 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:957 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:957 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/12.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:957 DBUG SNDCACHE xen4.tyv screq=[1005] started pid=20490 on<br>
url/localhost/telepagos/audio/90.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/90.wav" target="_blank">http://localhost/telepagos/audio/90.wav</a><br>
00:21:01:958 DBUG SNDCACHE xen4.tyv pid=20489 done making url/<br>
localhost/telepagos/audio/99.wav<br>
00:21:01:958 DBUG SNDCACHE xen4.tyv screq=[1003] processing top-of-<br>
queue for url/localhost/telepagos/audio/99.wav<br>
00:21:01:958 DBUG SNDCACHE xen4.tyv screq=[1003] result=1 in cache<br>
for url/localhost/telepagos/audio/99.wav<br>
00:21:01:959 DBUG SNDCACHE xen4.tyv snd &quot;1003 1 voiceglue/url/<br>
localhost/telepagos/audio/99.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:959 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
12.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;12&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:959 DBUG SNDCACHE xen4.tyv rcv main: &quot;1006 f url http://<br>
localhost/telepagos/audio/12.wav tts 12\n&quot;<br>
00:21:01:959 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1011] for play_queued index 11 as: 1011 f url http://<br>
localhost/telepagos/audio/12.wav tts 12<br>
00:21:01:959 DBUG VOICEGLU xen4.tyv snd &quot;1011 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/12.wav tts 12\n&quot; to ::MAIN_TO_SC<br>
00:21:01:960 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:960 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:960 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/12.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/12.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;12&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:961 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
value.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\<br>
\&quot;&gt;Importe&lt;/audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:961 DBUG SNDCACHE xen4.tyv screq=[1006] processing top-of-<br>
queue for url/localhost/telepagos/audio/12.wav<br>
00:21:01:961 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1012] for play_queued index 12 as: 1012 f url http://<br>
localhost/telepagos/audio/value.wav tts Importe<br>
00:21:01:961 DBUG SNDCACHE xen4.tyv screq=[1006] result=1 in cache<br>
for url/localhost/telepagos/audio/12.wav<br>
00:21:01:961 DBUG VOICEGLU xen4.tyv snd &quot;1012 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/value.wav tts Importe\n&quot; to ::MAIN_TO_SC<br>
00:21:01:961 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:962 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:962 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/value.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;Importe&lt;/audio&gt;&lt;/speak&gt;,<br>
properties={&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/value.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;Importe&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/value.wav\&quot; fetchtimeout=\&quot;7s<br>
\&quot; fetchhint=\&quot;prefetch\&quot;&gt;Importe&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:962 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1003 1 voiceglue/url/<br>
localhost/telepagos/audio/99.wav&quot;<br>
00:21:01:962 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
1.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;1&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1013] for play_queued index 13 as: 1013 f url http://<br>
localhost/telepagos/audio/1.wav tts 1<br>
00:21:01:963 DBUG SNDCACHE xen4.tyv snd &quot;1006 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv snd &quot;1013 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/1.wav tts 1\n&quot; to ::MAIN_TO_SC<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:963 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/1.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;1&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/1.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;1&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/1.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;1&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:964 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
2.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;2&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:965 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1014] for play_queued index 14 as: 1014 f url http://<br>
localhost/telepagos/audio/2.wav tts 2<br>
00:21:01:965 DBUG SNDCACHE xen4.tyv rcv main: &quot;1007 f url http://<br>
localhost/telepagos/audio/34.wav tts 34\n&quot;<br>
00:21:01:965 DBUG VOICEGLU xen4.tyv snd &quot;1014 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/2.wav tts 2\n&quot; to ::MAIN_TO_SC<br>
00:21:01:965 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:965 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:965 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/2.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;2&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/2.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;2&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/2.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;2&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:966 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1006 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav&quot;<br>
00:21:01:966 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:966 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:966 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
0.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;0&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:967 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1015] for play_queued index 15 as: 1015 f url http://<br>
localhost/telepagos/audio/0.wav tts 0<br>
00:21:01:967 DBUG SNDCACHE xen4.tyv screq=[1007] processing top-of-<br>
queue for url/localhost/telepagos/audio/34.wav<br>
00:21:01:967 DBUG SNDCACHE xen4.tyv screq=[1007] result=1 in cache<br>
for url/localhost/telepagos/audio/34.wav<br>
00:21:01:967 DBUG SNDCACHE xen4.tyv snd &quot;1007 1 voiceglue/url/<br>
localhost/telepagos/audio/34.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:967 DBUG SNDCACHE xen4.tyv rcv main: &quot;1008 f url http://<br>
localhost/telepagos/audio/5.wav tts 5\n&quot;<br>
00:21:01:967 DBUG SNDCACHE xen4.tyv screq=[1008] processing top-of-<br>
queue for url/localhost/telepagos/audio/5.wav<br>
00:21:01:968 DBUG VOICEGLU xen4.tyv snd &quot;1015 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/0.wav tts 0\n&quot; to ::MAIN_TO_SC<br>
00:21:01:968 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:968 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:969 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:969 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/0.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;0&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:969 DBUG SNDCACHE xen4.tyv screq=[1008] started pid=20491 on<br>
url/localhost/telepagos/audio/5.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/5.wav" target="_blank">http://localhost/telepagos/audio/5.wav</a><br>
00:21:01:969 DBUG SNDCACHE xen4.tyv rcv main: &quot;1009 f url http://<br>
localhost/telepagos/audio/prompt_date.wav tts Fecha de caducida\n&quot;<br>
00:21:01:970 DBUG SNDCACHE xen4.tyv screq=[1009] processing top-of-<br>
queue for url/localhost/telepagos/audio/prompt_date.wav<br>
00:21:01:970 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/0.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;0&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:970 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/0.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;0&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:971 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:971 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:971 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1007 1 voiceglue/url/<br>
localhost/telepagos/audio/34.wav&quot;<br>
00:21:01:971 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:971 DBUG SNDCACHE xen4.tyv screq=[1009] started pid=20492 on<br>
url/localhost/telepagos/audio/prompt_date.wav as wget -q -N --<br>
timeout=10 -x <a href="http://localhost/telepagos/audio/prompt_date.wav" target="_blank">http://localhost/telepagos/audio/prompt_date.wav</a><br>
00:21:01:972 DBUG SNDCACHE xen4.tyv rcv main: &quot;1010 f url http://<br>
localhost/telepagos/audio/12.wav tts 12\n&quot;<br>
00:21:01:972 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:972 DBUG SNDCACHE xen4.tyv screq=[1010] processing top-of-<br>
queue for url/localhost/telepagos/audio/12.wav<br>
00:21:01:972 DBUG SNDCACHE xen4.tyv screq=[1010] result=1 in cache<br>
for url/localhost/telepagos/audio/12.wav<br>
00:21:01:972 DBUG SNDCACHE xen4.tyv snd &quot;1010 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:973 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:973 DBUG SNDCACHE xen4.tyv rcv main: &quot;1011 f url http://<br>
localhost/telepagos/audio/12.wav tts 12\n&quot;<br>
00:21:01:973 DBUG SNDCACHE xen4.tyv screq=[1011] processing top-of-<br>
queue for url/localhost/telepagos/audio/12.wav<br>
00:21:01:973 DBUG SNDCACHE xen4.tyv screq=[1011] result=1 in cache<br>
for url/localhost/telepagos/audio/12.wav<br>
00:21:01:973 DBUG SNDCACHE xen4.tyv snd &quot;1011 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:01:973 DBUG SNDCACHE xen4.tyv rcv main: &quot;1012 f url http://<br>
localhost/telepagos/audio/value.wav tts Importe\n&quot;<br>
00:21:01:973 DBUG SNDCACHE xen4.tyv screq=[1012] processing top-of-<br>
queue for url/localhost/telepagos/audio/value.wav<br>
00:21:01:974 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1010 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav&quot;<br>
00:21:01:974 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:975 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:975 DBUG SNDCACHE xen4.tyv screq=[1012] started pid=20493 on<br>
url/localhost/telepagos/audio/value.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/value.wav" target="_blank">http://localhost/telepagos/audio/value.wav</a><br>
00:21:01:976 DBUG SNDCACHE xen4.tyv rcv main: &quot;1013 f url http://<br>
localhost/telepagos/audio/1.wav tts 1\n&quot;<br>
00:21:01:976 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
1.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;0&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:976 DBUG SNDCACHE xen4.tyv screq=[1013] processing top-of-<br>
queue for url/localhost/telepagos/audio/1.wav<br>
00:21:01:977 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1016] for play_queued index 16 as: 1016 f url http://<br>
localhost/telepagos/audio/1.wav tts 0<br>
00:21:01:977 DBUG VOICEGLU xen4.tyv snd &quot;1016 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/1.wav tts 0\n&quot; to ::MAIN_TO_SC<br>
00:21:01:977 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:978 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:978 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:978 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/1.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;0&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/1.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;0&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/1.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;0&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:980 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1011 1 voiceglue/url/<br>
localhost/telepagos/audio/12.wav&quot;<br>
00:21:01:980 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:01:980 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:01:981 DBUG SNDCACHE xen4.tyv screq=[1013] started pid=20494 on<br>
url/localhost/telepagos/audio/1.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/1.wav" target="_blank">http://localhost/telepagos/audio/1.wav</a><br>
00:21:01:981 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:981 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
currency.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\<br>
\&quot;&gt;euros&lt;/audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:982 DBUG SNDCACHE xen4.tyv rcv main: &quot;1014 f url http://<br>
localhost/telepagos/audio/2.wav tts 2\n&quot;<br>
00:21:01:982 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1017] for play_queued index 17 as: 1017 f url http://<br>
localhost/telepagos/audio/currency.wav tts euros<br>
00:21:01:982 DBUG VOICEGLU xen4.tyv snd &quot;1017 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/currency.wav tts euros\n&quot; to ::MAIN_TO_SC<br>
00:21:01:982 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:982 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:983 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/currency.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;euros&lt;/audio&gt;&lt;/speak&gt;,<br>
properties={&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/currency.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;euros&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/currency.wav\&quot; fetchtimeout=<br>
\&quot;7s\&quot; fetchhint=\&quot;prefetch\&quot;&gt;euros&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:983 DBUG SNDCACHE xen4.tyv screq=[1014] processing top-of-<br>
queue for url/localhost/telepagos/audio/2.wav<br>
00:21:01:986 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:986 DBUG SNDCACHE xen4.tyv screq=[1014] started pid=20495 on<br>
url/localhost/telepagos/audio/2.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/2.wav" target="_blank">http://localhost/telepagos/audio/2.wav</a><br>
00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
1.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;1&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:987 DBUG SNDCACHE xen4.tyv rcv main: &quot;1015 f url http://<br>
localhost/telepagos/audio/0.wav tts 0\n&quot;<br>
00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1018] for play_queued index 18 as: 1018 f url http://<br>
localhost/telepagos/audio/1.wav tts 1<br>
00:21:01:987 DBUG VOICEGLU xen4.tyv snd &quot;1018 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/1.wav tts 1\n&quot; to ::MAIN_TO_SC<br>
00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:988 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/1.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;1&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/1.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;1&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/1.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;1&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:989 DBUG SNDCACHE xen4.tyv screq=[1015] processing top-of-<br>
queue for url/localhost/telepagos/audio/0.wav<br>
00:21:01:989 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
2.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;2&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:989 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1019] for play_queued index 19 as: 1019 f url http://<br>
localhost/telepagos/audio/2.wav tts 2<br>
00:21:01:989 DBUG VOICEGLU xen4.tyv snd &quot;1019 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/2.wav tts 2\n&quot; to ::MAIN_TO_SC<br>
00:21:01:989 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:990 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:990 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/2.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;2&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/2.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;2&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/2.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;2&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;&lt;audio src=\\\&quot;audio/<br>
3.wav\\\&quot; fetchtimeout=\\\&quot;7s\\\&quot; fetchhint=\\\&quot;prefetch\\\&quot;&gt;3&lt;/<br>
audio&gt;&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1020] for play_queued index 20 as: 1020 f url http://<br>
localhost/telepagos/audio/3.wav tts 3<br>
00:21:01:991 DBUG VOICEGLU xen4.tyv snd &quot;1020 f url <a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/audio/3.wav tts 3\n&quot; to ::MAIN_TO_SC<br>
00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:991 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:992 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/3.wav&quot;<br>
fetchtimeout=&quot;7s&quot; fetchhint=&quot;prefetch&quot;&gt;3&lt;/audio&gt;&lt;/speak&gt;, properties=<br>
{&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:992 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;&lt;audio src=&quot;audio/3.wav&quot; fetchtimeout=&quot;7s&quot;<br>
fetchhint=&quot;prefetch&quot;&gt;3&lt;/audio&gt;&lt;/speak&gt;)<br>
00:21:01:992 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;&lt;audio src=\&quot;audio/3.wav\&quot; fetchtimeout=\&quot;7s\&quot;<br>
fetchhint=\&quot;prefetch\&quot;&gt;3&lt;/audio&gt;&lt;/speak&gt;&quot;<br>
00:21:01:992 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:992 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:992 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:993 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;pulse uno para<br>
confirmar&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:993 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1021] for play_queued index 21 as: 1021 - tts pulse<br>
uno para confirmar<br>
00:21:01:993 DBUG VOICEGLU xen4.tyv snd &quot;1021 - tts pulse uno para<br>
confirmar\n&quot; to ::MAIN_TO_SC<br>
00:21:01:993 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:993 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:993 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:994 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;pulse uno para confirmar&lt;/speak&gt;,<br>
properties={&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:994 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;pulse uno para confirmar&lt;/speak&gt;)<br>
00:21:01:994 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;pulse uno para confirmar&lt;/speak&gt;&quot;<br>
00:21:01:994 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:994 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:994 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Queue \&quot;&lt;?<br>
xml version=\\\&#39;1.0\\\&#39;?&gt;&lt;speak version=\\\&#39;1.0\\\&#39; xmlns=\\\&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis%5C%5C%5C" target="_blank">www.w3.org/2001/10/synthesis\\\</a>&#39; xml:base=\\\&#39;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml\\\&#39; xml:lang=\\\&#39;es-ES\\\&#39;&gt;Pulse dos para<br>
volver a empezar&lt;/speak&gt;\&quot;\n&quot;<br>
00:21:01:994 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache<br>
request screq=[1022] for play_queued index 22 as: 1022 - tts Pulse<br>
dos para volver a empezar<br>
00:21:01:994 DBUG VOICEGLU xen4.tyv snd &quot;1022 - tts Pulse dos para<br>
volver a empezar\n&quot; to ::MAIN_TO_SC<br>
00:21:01:995 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Play\n&quot;<br>
00:21:01:995 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:995 DBUG VOICEGLU xen4.tyv snd &quot;Played\n&quot; to ::PERL_VXML_1<br>
00:21:01:995 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:995 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called<br>
with spec=&lt;?xml version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;http://<br>
<a href="http://www.w3.org/2001/10/synthesis" target="_blank">www.w3.org/2001/10/synthesis</a>&#39; xml:base=&#39;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&#39; xml:lang=&#39;es-ES&#39;&gt;Pulse dos para volver a empezar&lt;/<br>
speak&gt;, properties={&quot; absoluteURI&quot;=&quot;<a href="http://localhost/telepagos/" target="_blank">http://localhost/telepagos/</a><br>
prueba.vxml&quot; &quot; base&quot;=&quot;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&quot; &quot;<br>
encoding&quot;=&quot;iso-8859-1&quot; &quot;audiofetchhint&quot;=&quot;prefetch&quot; &quot;bargein&quot;=&quot;false&quot;<br>
&quot;bargeintype&quot;=&quot;speech&quot; &quot;confidencelevel&quot;=&quot;0.5&quot;<br>
&quot;datafetchhint&quot;=&quot;prefetch&quot; &quot;documentfetchhint&quot;=&quot;safe&quot;<br>
&quot;fetchaudiodelay&quot;=&quot;2s&quot; &quot;fetchaudiominimum&quot;=&quot;5s&quot; &quot;fetchtimeout&quot;=&quot;7s&quot;<br>
&quot;grammarfetchhint&quot;=&quot;prefetch&quot; &quot;inet.urlBase&quot;=&quot;<a href="http://localhost/" target="_blank">http://localhost/</a><br>
telepagos/prueba.vxml&quot; &quot;inputmodes&quot;=&quot;dtmf&quot; &quot;maxnbest&quot;=&quot;1&quot;<br>
&quot;objectfetchhint&quot;=&quot;prefetch&quot; &quot;scriptfetchhint&quot;=&quot;prefetch&quot;<br>
&quot;sensitivity&quot;=&quot;0.5&quot; &quot;speedvsaccuracy&quot;=&quot;0.5&quot;<br>
&quot;swirec_extra_nbest_keys&quot;=&quot;&quot; &quot;termchar&quot;=&quot;&quot; &quot;termtimeout&quot;=&quot;0s&quot;<br>
&quot;universals&quot;=&quot;none&quot;}<br>
00:21:01:995 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (&lt;?xml<br>
version=&#39;1.0&#39;?&gt;&lt;speak version=&#39;1.0&#39; xmlns=&#39;<a href="http://www.w3.org/2001/10/" target="_blank">http://www.w3.org/2001/10/</a><br>
synthesis&#39; xml:base=&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a>&#39;<br>
xml:lang=&#39;es-ES&#39;&gt;Pulse dos para volver a empezar&lt;/speak&gt;)<br>
00:21:01:995 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue &quot;&lt;?xml<br>
version=\&#39;1.0\&#39;?&gt;&lt;speak version=\&#39;1.0\&#39; xmlns=\&#39;<a href="http://www.w3.org/" target="_blank">http://www.w3.org/</a><br>
2001/10/synthesis\&#39; xml:base=\&#39;<a href="http://localhost/telepagos/prueba.vxml" target="_blank">http://localhost/telepagos/prueba.vxml</a><br>
\&#39; xml:lang=\&#39;es-ES\&#39;&gt;Pulse dos para volver a empezar&lt;/speak&gt;&quot;<br>
00:21:01:995 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()<br>
00:21:01:995 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play<br>
00:21:01:996 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi:<br>
&quot;ActivateGrammar 0xb723c650\n&quot;<br>
00:21:01:996 DBUG VOICEGLU xen4.tyv callid=[1] ActivateGrammar<br>
0xb723c650 done<br>
00:21:01:996 DBUG VOICEGLU xen4.tyv callid=[1] snd 0 to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:996 DBUG VOICEGLU xen4.tyv snd &quot;0\n&quot; to ::PERL_VXML_1<br>
00:21:01:996 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played<br>
00:21:01:996 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg:<br>
ActivateGrammar 0xb723c650<br>
00:21:01:996 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi:<br>
&quot;ActivateGrammar 0xb7289460\n&quot;<br>
00:21:01:996 DBUG VOICEGLU xen4.tyv callid=[1] ActivateGrammar<br>
0xb7289460 done<br>
00:21:01:997 DBUG VOICEGLU xen4.tyv callid=[1] snd 0 to VXML<br>
interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:997 DBUG VOICEGLU xen4.tyv snd &quot;0\n&quot; to ::PERL_VXML_1<br>
00:21:01:999 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: 0<br>
00:21:01:999 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg:<br>
ActivateGrammar 0xb7289460<br>
00:21:01:999 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi:<br>
&quot;GetLineStatus\n&quot;<br>
00:21:01:999 DBUG VOICEGLU xen4.tyv callid=[1] snd LineStatus 1 to<br>
VXML interpreter on fh=&quot;::PERL_VXML_1&quot; at host=localhost callid=[1]<br>
00:21:01:999 DBUG VOICEGLU xen4.tyv snd &quot;LineStatus 1\n&quot;<br>
to ::PERL_VXML_1<br>
00:21:01:999 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: 0<br>
00:21:01:999 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: GetLineStatus<br>
00:21:01:999 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: &quot;Wait\n&quot;<br>
00:21:02:000 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:000 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:000 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: LineStatus 1<br>
00:21:02:000 DBUG OPEN_VXI xen4.tyv callid=[1] LineStatus is CONNECTED<br>
00:21:02:000 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptWait()<br>
00:21:02:000 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Wait<br>
00:21:02:000 DBUG SNDCACHE xen4.tyv screq=[1015] started pid=20496 on<br>
url/localhost/telepagos/audio/0.wav as wget -q -N --timeout=10 -x<br>
<a href="http://localhost/telepagos/audio/0.wav" target="_blank">http://localhost/telepagos/audio/0.wav</a><br>
00:21:02:001 DBUG SNDCACHE xen4.tyv pid=20490 done making url/<br>
localhost/telepagos/audio/90.wav<br>
00:21:02:001 DBUG SNDCACHE xen4.tyv screq=[1005] processing top-of-<br>
queue for url/localhost/telepagos/audio/90.wav<br>
00:21:02:001 DBUG SNDCACHE xen4.tyv screq=[1005] result=1 in cache<br>
for url/localhost/telepagos/audio/90.wav<br>
00:21:02:002 DBUG SNDCACHE xen4.tyv snd &quot;1005 1 voiceglue/url/<br>
localhost/telepagos/audio/90.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:002 DBUG SNDCACHE xen4.tyv pid=20491 done making url/<br>
localhost/telepagos/audio/5.wav<br>
00:21:02:002 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1005 1 voiceglue/url/<br>
localhost/telepagos/audio/90.wav&quot;<br>
00:21:02:002 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:002 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:003 DBUG SNDCACHE xen4.tyv screq=[1008] processing top-of-<br>
queue for url/localhost/telepagos/audio/5.wav<br>
00:21:02:003 DBUG SNDCACHE xen4.tyv screq=[1008] result=1 in cache<br>
for url/localhost/telepagos/audio/5.wav<br>
00:21:02:003 DBUG SNDCACHE xen4.tyv snd &quot;1008 1 voiceglue/url/<br>
localhost/telepagos/audio/5.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:003 DBUG SNDCACHE xen4.tyv pid=20492 done making url/<br>
localhost/telepagos/audio/prompt_date.wav<br>
00:21:02:004 DBUG SNDCACHE xen4.tyv screq=[1009] processing top-of-<br>
queue for url/localhost/telepagos/audio/prompt_date.wav<br>
00:21:02:004 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1008 1 voiceglue/url/<br>
localhost/telepagos/audio/5.wav&quot;<br>
00:21:02:004 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:004 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:004 DBUG SNDCACHE xen4.tyv screq=[1009] result=1 in cache<br>
for url/localhost/telepagos/audio/prompt_date.wav<br>
00:21:02:005 DBUG SNDCACHE xen4.tyv snd &quot;1009 1 voiceglue/url/<br>
localhost/telepagos/audio/prompt_date.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:005 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1009 1 voiceglue/url/<br>
localhost/telepagos/audio/prompt_date.wav&quot;<br>
00:21:02:005 DBUG SNDCACHE xen4.tyv pid=20493 done making url/<br>
localhost/telepagos/audio/value.wav<br>
00:21:02:005 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:005 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:005 DBUG SNDCACHE xen4.tyv screq=[1012] processing top-of-<br>
queue for url/localhost/telepagos/audio/value.wav<br>
00:21:02:006 DBUG SNDCACHE xen4.tyv screq=[1012] result=1 in cache<br>
for url/localhost/telepagos/audio/value.wav<br>
00:21:02:006 DBUG SNDCACHE xen4.tyv snd &quot;1012 1 voiceglue/url/<br>
localhost/telepagos/audio/value.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:006 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1012 1 voiceglue/url/<br>
localhost/telepagos/audio/value.wav&quot;<br>
00:21:02:006 DBUG SNDCACHE xen4.tyv pid=20494 done making url/<br>
localhost/telepagos/audio/1.wav<br>
00:21:02:007 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:007 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:007 DBUG SNDCACHE xen4.tyv screq=[1013] processing top-of-<br>
queue for url/localhost/telepagos/audio/1.wav<br>
00:21:02:007 DBUG SNDCACHE xen4.tyv screq=[1013] result=1 in cache<br>
for url/localhost/telepagos/audio/1.wav<br>
00:21:02:007 DBUG SNDCACHE xen4.tyv snd &quot;1013 1 voiceglue/url/<br>
localhost/telepagos/audio/1.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:008 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1013 1 voiceglue/url/<br>
localhost/telepagos/audio/1.wav&quot;<br>
00:21:02:008 DBUG SNDCACHE xen4.tyv pid=20495 done making url/<br>
localhost/telepagos/audio/2.wav<br>
00:21:02:008 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:008 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:008 DBUG SNDCACHE xen4.tyv screq=[1014] processing top-of-<br>
queue for url/localhost/telepagos/audio/2.wav<br>
00:21:02:009 DBUG SNDCACHE xen4.tyv screq=[1014] result=1 in cache<br>
for url/localhost/telepagos/audio/2.wav<br>
00:21:02:009 DBUG SNDCACHE xen4.tyv snd &quot;1014 1 voiceglue/url/<br>
localhost/telepagos/audio/2.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:009 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1014 1 voiceglue/url/<br>
localhost/telepagos/audio/2.wav&quot;<br>
00:21:02:009 DBUG SNDCACHE xen4.tyv pid=20496 done making url/<br>
localhost/telepagos/audio/0.wav<br>
00:21:02:009 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:009 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:010 DBUG SNDCACHE xen4.tyv screq=[1015] processing top-of-<br>
queue for url/localhost/telepagos/audio/0.wav<br>
00:21:02:010 DBUG SNDCACHE xen4.tyv screq=[1015] result=1 in cache<br>
for url/localhost/telepagos/audio/0.wav<br>
00:21:02:010 DBUG SNDCACHE xen4.tyv snd &quot;1015 1 voiceglue/url/<br>
localhost/telepagos/audio/0.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:011 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1015 1 voiceglue/url/<br>
localhost/telepagos/audio/0.wav&quot;<br>
00:21:02:011 DBUG SNDCACHE xen4.tyv rcv main: &quot;1016 f url http://<br>
localhost/telepagos/audio/1.wav tts 0\n&quot;<br>
00:21:02:011 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:011 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:011 DBUG SNDCACHE xen4.tyv screq=[1016] processing top-of-<br>
queue for url/localhost/telepagos/audio/1.wav<br>
00:21:02:011 DBUG SNDCACHE xen4.tyv screq=[1016] result=1 in cache<br>
for url/localhost/telepagos/audio/1.wav<br>
00:21:02:012 DBUG SNDCACHE xen4.tyv snd &quot;1016 1 voiceglue/url/<br>
localhost/telepagos/audio/1.wav\n&quot; to ::SC_TO_MAIN<br>
00:21:02:012 DBUG SNDCACHE xen4.tyv rcv main: &quot;1017 f url http://<br>
localhost/telepagos/audio/currency.wav tts euros\n&quot;<br>
00:21:02:012 DBUG VOICEGLU xen4.tyv rcv sc: &quot;1016 1 voiceglue/url/<br>
localhost/telepagos/audio/1.wav&quot;<br>
00:21:02:012 DBUG VOICEGLU xen4.tyv callid=[1] dpal():<br>
do_prompt_and_listen() called<br>
00:21:02:012 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing<br>
play, returning<br>
00:21:02:013 DBUG SNDCACHE xen4.tyv screq=[1017] processing top-of-<br>
queue for url/localhost/telepagos/audio/currency.wav<br>
00:21:02:015 DBUG SNDCACHE xen4.tyv screq=[1017] started pid=20497 on<br>
url/localhost/telepagos/audio/currency.wav as wget -q -N --timeout=10<br>
-x <a href="http://localhost/telepagos/audio/currency.wav" target="_blank">http://localhost/telepagos/audio/currency.wav</a><br>
00:21:02:015 DBUG SNDCACHE xen4.tyv rcv main: &quot;1018 f url http://<br>
localhost/telepagos/audio/1.wav tts 1\n&quot;<br>
00:21:02:015 DBUG SNDCACH...<br><br>[Message clipped]&nbsp;&nbsp;</blockquote></div><br>