cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
845
Views
5
Helpful
3
Replies

Form element grammar error with CVP 11.6 -- VVB

Mostafa_Shawky
Level 1
Level 1

Hi All,
We have issue when using form element in CVP 11.6  with VVB 11, as it was working before with CVP 10 without VVB. the issue is that old grammar used in form element in CVP 10 was working in CVP 11 till we changed VXML GW with VVB. attached  the logs  and current grammar.

IMG-20221103-WA0005.jpg

 

 

 

 

 

 

 

------------------------------------
--------- New Page Request ---------
------------------------------------
Request Received on:  11/06/2022 14:54:11.006

------- HTTP Request Headers -------

Header Name = "content-type"  Header Value = "application/x-www-form-urlencoded"
Header Name = "cookie"  Header Value = "HttpOnly=; JSESSIONID=70EE1417EF4CF6DEC623225112DD59DA"
Header Name = "uniqueid"  Header Value = "82B6AD605D0011ED8A9F96238D83479A-1667735629081888"
Header Name = "connection"  Header Value = "keep-alive"
Header Name = "host"  Header Value = "10.21.1.195:7000"
Header Name = "content-length"  Header Value = "15"
Header Name = "accept"  Header Value = "text/vxml, application/vxml, application/vxml+xml, *; q=.2, */*; q=.2"
Header Name = "user-agent"  Header Value = "Cisco Voice Browser/1.0"

------ Request HTTP Arguments ------

Parameter Name = "audium_vxmlLog"  Parameter Value #0 = ""

--------- VoiceXML Response --------

Response Returned on:  11/06/2022 14:54:11.006
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.0" application="/CVP/Server?audium_root=true&amp;calling_into=ChooseServedNumberRoutine&amp;session_id=10.21.1.195.1667735629551.0.ChooseServedNumberRoutine">
  <property name="termchar" value="#" />
  <property name="timeout" value="3s" />
  <var name="noinput_count" expr="0" />
  <var name="nomatch_count" expr="0" />
  <form id="audium_start_form">
    <block>
      <assign name="audium_vxmlLog" expr="''" />
      <assign name="audium_element_start_time_millisecs" expr="new Date().getTime()" />
      <goto next="#start" />
    </block>
  </form>
  <form id="start">
    <property name="inputmodes" value="dtmf" />
    <block>
      <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||audio_group$$$' + 'initial_audio_group' + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
      <goto nextitem="foundation_fld" />
    </block>
    <field name="foundation_fld" modal="true">
      <property name="inputmodes" value="dtmf" />
      <property name="com.cisco.secureLogging" value="false" />
      <prompt bargein="true">
        <audio src="http://media/STC907MEDIA/STCInbound/cbu/ar/Commons/EnterGSMorLLNumber.wav" />
        <audio src="http://media/STC907MEDIA/STCInbound/cbu/ar/Commons/Silence_5Sec.wav" />
        <audio src="http://media/STC907MEDIA/STCInbound/cbu/ar/Commons/ReturnPreviousMenuPress.wav" />
        <audio src="http://media/STC907MEDIA/STCInbound/cbu/ar/Vocabulary/Digit/Star.wav" />
      </prompt>
      <catch event="nomatch">
        <prompt bargein="true">
          <audio src="http://media/STC907MEDIA/STCInbound/cbu/ar/Commons/InvalidNumber.wav" />
        </prompt>
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||nomatch$$$' + '1' + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||audio_group$$$' + 'nomatch_audio_group' + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="nomatch_count" expr="nomatch_count + 1" />
        <var name="maxNoMatch" expr="'yes'" />
        <submit next="/CVP/Server" method="post" namelist="noinput_count foundation_fld maxNoMatch audium_vxmlLog nomatch_count" />
      </catch>
      <catch event="noinput">
        <prompt bargein="true">
          <audio src="http://media/STC907MEDIA/STCInbound/cbu/ar/Commons/NoInput.wav" />
        </prompt>
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||noinput$$$' + '1' + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||audio_group$$$' + 'noinput_audio_group' + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="noinput_count" expr="noinput_count + 1" />
        <var name="maxNoInput" expr="'yes'" />
        <submit next="/CVP/Server" method="post" namelist="maxNoInput noinput_count foundation_fld audium_vxmlLog nomatch_count" />
      </catch>
      <filled>
        <var name="completeNBestStr" expr="''" />
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||utterance$$$' + foundation_fld$.utterance + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||inputmode$$$' + foundation_fld$.inputmode + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||interpretation$$$' + foundation_fld + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <assign name="audium_vxmlLog" expr="audium_vxmlLog + '|||confidence$$$' + foundation_fld$.confidence + '^^^' + application.getElapsedTime(audium_element_start_time_millisecs)" />
        <script><![CDATA[function recurse(interpretation)
{
	var slot_string;
	if (interpretation instanceof Object)
	{
		slot_string = '+';
		var count = 0;
		for (var attr in interpretation)
		{
			if (count++ > 0)
				slot_string += '+';
			slot_string += attr + ':' + recurse(interpretation[attr]);
		}
	} else {
		slot_string = interpretation;
	}
	return slot_string;
}
var len = application.lastresult$.length;
for (var i = 0; i < len; i++)
{
	var slot_string = recurse(application.lastresult$[i].interpretation);
	completeNBestStr += "|||" + application.lastresult$[i].confidence + "^^^" + application.lastresult$[i].utterance + "^^^" + application.lastresult$[i].inputmode + "^^^" + slot_string;
}]]></script>
        <var name="confidence" expr="foundation_fld$.confidence" />
        <submit next="/CVP/Server" method="post" namelist="completeNBestStr noinput_count foundation_fld confidence audium_vxmlLog nomatch_count" />
      </filled>
    </field>
  </form>
</vxml>

------------------------------------
--------- New Page Request ---------
------------------------------------
Request Received on:  11/06/2022 14:54:11.084

------- HTTP Request Headers -------

Header Name = "content-type"  Header Value = "application/x-www-form-urlencoded"
Header Name = "cookie"  Header Value = "HttpOnly=; JSESSIONID=70EE1417EF4CF6DEC623225112DD59DA"
Header Name = "uniqueid"  Header Value = "82B6AD605D0011ED8A9F96238D83479A-1667735629081888"
Header Name = "connection"  Header Value = "keep-alive"
Header Name = "host"  Header Value = "10.21.1.195:7000"
Header Name = "content-length"  Header Value = "256"
Header Name = "accept"  Header Value = "text/vxml, application/vxml, application/vxml+xml, *; q=.2, */*; q=.2"
Header Name = "user-agent"  Header Value = "Cisco Voice Browser/1.0"

------ Request HTTP Arguments ------

Parameter Name = "audium_type"  Parameter Value #0 = "error.semantic"
Parameter Name = "audium_action"  Parameter Value #0 = "error"
Parameter Name = "audium_vxmlLog"  Parameter Value #0 = "|||audio_group$$$initial_audio_group^^^1"
Parameter Name = "audium_message"  Parameter Value #0 = "error.semantic - recognition failed; nested exception is: 
	com.cisco.dialogservices.RecNoActiveGrammarException"

--------- VoiceXML Response --------

Response Returned on:  11/06/2022 14:54:11.100
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.0" application="/CVP/Server?audium_root=true&amp;calling_into=ChooseServedNumberRoutine&amp;session_id=10.21.1.195.1667735629551.0.ChooseServedNumberRoutine">
  <form id="second_form">
    <block>
      <throw event="com.audium.error" />
    </block>
  </form>
</vxml>