Dear All,
we had use the VXML sample in UCMA SDK to test the VXML with other language (we had test zh-HK, zh-CN) and install the language pack with the same version, which we found the call can not speak chinese or cantonese in windows server 2012 R2 datacenter edition enviroment, but we have move the same setup at Windows Server 2012 standard, the application can speak chinese and cantonese, would you have similiar experience and have a solution to this issue?
the following is the VXML script in chinese, the UCMA application is the typical VXML sample at "C:\Program Files\Microsoft UCMA 4.0\SDK\Core\Sample Applications\QuickStarts\VoiceXMLSample"
<?xml version="1.0" encoding="utf-8" ?><vxml version="2.0" xmlns="http://www.w3.org/2001/vxml" xml:lang="zh-HK" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/vxml http://www.w3.org/TR/voicexml21/vxml.xsd">
<form>
<field name="Color">
<prompt bargein="true" bargeintype="speech" timeout="10s">
What is your favorite color? 你喜歡什麼顏色?
</prompt>
<grammar mode="voice" type="application/srgs+xml" root="Color">
<rule id="Color" scope="public">
<one-of>
<item>紅</item>
<item>橙</item>
<item>黃</item>
<item>綠</item>
<item>藍</item>
</one-of>
</rule>
</grammar>
<nomatch>
<prompt bargein="true" bargeintype="speech" timeout="3s">
Sorry, I don't know that color. 我不知道這是什麼顏色.
</prompt>
<exit/>
</nomatch>
<noinput>
<prompt bargein="true" bargeintype="speech" timeout="3s">
I didn't hear you. 我聽不到.
</prompt>
<exit/>
</noinput>
<filled>
<prompt>
你喜歡的顏色是, <value expr="Color$.utterance"/>.
</prompt>
<exit namelist="Color Color$.utterance"/>
</filled>
</field>
</form>
</vxml>