[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: OpenVXI Version 1.3
Thanks. This seams to be the answer for why the SetProperties function was
never called. But, when I look at the parsing of the property tag
(VXI::set_properties) the name and value get empty strings and when my
SetProperties function is finally called I get an empty object. What do I do
wrong?
Tamar.
-----Original Message-----
From: dg [mailto:dgoddeau@speechworks.com]
Sent: Thursday, March 15, 2001 1:13 PM
To: Tamar Furman
Cc: vxi-discuss@speechinfo.org
Subject: Re: OpenVXI Version 1.3
HI,
Since you are never calling any recognition the bargein
is indeed never set. The OpenVXI treats bargein as a recognition
related functionality as is typical in speech apps. On the other hand
I can see other points of view.
If you use a field rather than a block, the bargein property
shgould be sent to the recognizer along with other rec properties.
-dg
Tamar Furman wrote:
>
> Hello,
>
> I'm using OpenVXI with a Win NT application. I just upgraded the sources
> from version 1.2 to 1.3 and I still face some problems with VXML tags:
> * <value> - I cant get the value to be prompt.
> * <propery> - it seams that the OpenVXI reads empty "name" and
"value"
> and never get to call to set the property.
>
> Here is an example for VXML file I try to run:
>
> <?xml version="1.0"?>
> <vxml version="1.0">
> <meta name="maintainer" content="examples@voicegenie.com"/>
> <meta name="application" content="Example of Assign Tag"/>
> <property name="bargein" value="false"/>
> <property name="confidencelevel" value="0.45"/>
>
> <var name="tree" expr="'an apple tree'"/>
> <form>
> <property name="bargein" value="true"/>
> <block>
> Test of assign tag.
> The initial value is <value expr="tree"/>
> </block>
> </form>
> </vxml>
>
> Do you know anything about those problems? Am I missing anything here?
> Where can I find a bug fix list for this new version?
>
> Thanks in advanced,
> Tamar.