Hi,
I am running with CVP 7.0(2) on CVP Callserver, VXML server (on WebSphere) and CVP studio.
I have hit a bug, but could not find it in cisco bugs toolkit.
I will open a tac case, if no response here...
The Max Disconfirmed Count value set in CVP studio on a Record with Confirm element is ignored and set to the default of 3 no matter what you set it to in CVP Studio.
I have set it to "1" in CVP Studio, but as you can see from the below extract of the VXML,
the variable "max_disconfirm_count" is still gets set to "3" (as in below line).
<var name="max_disconfirm_count" expr="3" />
Anyone else experiencing this issue and known if it a known bug and if there is a fix/ES?
The workaround woudl be to use a standard record element and yes/no menu etc.
-- extract --
<?xml version="1.0" encoding="UTF-8"?>
<vxml version="2.0" application="/CVP/Server?audium_root=true&calling_into=MaxDisconfTest&session_id=10.24.35.121.1285669336325.74.MaxDisconfTest" xml:lang="en-US">
<meta name="maintainer"
content=<a href="mailto:content=blah@blah">blah@blah.com</a> />
<property name="timeout" value="5s" />
<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">
<var name="duration" expr="''" />
<var name="size" expr="''" />
<var name="termchar" expr="''" />
<var name="maxtime" expr="''" />
<var name="disconfirm_count" expr="0" />
<var name="max_disconfirm_count" expr="3" />
..
..
..