<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: TCL ivr convert pri to sip trunk. in Call Control</title>
    <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879769#M2761</link>
    <description>can you check audio file codec?, since you configured the dialpeer with "g711alaw" your audio file codec should be "g711alaw"&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raghavendra</description>
    <pubDate>Wed, 26 Jun 2019 07:15:37 GMT</pubDate>
    <dc:creator>Raghavendra G V</dc:creator>
    <dc:date>2019-06-26T07:15:37Z</dc:date>
    <item>
      <title>TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3853826#M2684</link>
      <description>&lt;P&gt;Hi Team&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I want to use my currect TCL auto attended for new gateway. Existing gateway is working on pri line at the moment we will migrate it sip trunk between its. In my case incoming call will arrive via sip trunk.&lt;/P&gt;
&lt;P&gt;Can you please advice that my e xsiting tcl will work on sip trunk.&lt;/P&gt;
&lt;P&gt;currect call flow...&lt;/P&gt;
&lt;P&gt;pri...E1... 2821....H323... gw... CUCM... ip phone.&lt;/P&gt;
&lt;P&gt;New call flow will be like that...&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;sip trunk....CUBE 765431....sip trunk....CUCM...ip phone....&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I have uploaded my tcl script attached file...&lt;/P&gt;
&lt;P&gt;#TCL IVR Script, accepts calls and plays welcome AA, if busy or no answer, IVR responds&lt;BR /&gt;#with an option to be transferred to operator or to enter a new extension.&lt;BR /&gt;#English language selection with 9.&lt;/P&gt;
&lt;P&gt;proc init { } {&lt;BR /&gt;global param&lt;BR /&gt;global pilotno&lt;BR /&gt;global alerttimeout&lt;BR /&gt;global langselect&lt;BR /&gt;global digitcollect&lt;/P&gt;
&lt;P&gt;set pilotno 765400&lt;BR /&gt;set alerttimeout 12&lt;BR /&gt;set langselect "ZENDO"&lt;BR /&gt;set digitcollect ""&lt;/P&gt;
&lt;P&gt;set param(interruptPrompt) true&lt;BR /&gt;set param(abortKey) *&lt;BR /&gt;set param(terminationKey) #&lt;/P&gt;
&lt;P&gt;puts "\n(init) Starting LAND3.tcl Cisco\n"&lt;/P&gt;
&lt;P&gt;if { [infotag get cfg_avpair_exists cm-pilot] } {&lt;BR /&gt;set pilotno [infotag get cfg_avpair cm-pilot]&lt;BR /&gt;} else {&lt;BR /&gt;puts "\ndebug(init) Critical problem found, no Pilot number defined!\n";&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;if { [infotag get cfg_avpair_exists alert-time] } {&lt;BR /&gt;set alerttimeout [infotag get cfg_avpair alert-time]&lt;BR /&gt;} else {&lt;BR /&gt;puts "\ndebug(init) Critical problem found, no Alert-Timeout defined!\n";&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;puts "\ndebug(init)Language selected currently is '$langselect'\n";&lt;BR /&gt;puts "\ndebug(init)Digitcollect currently is '$digitcollect'\n";&lt;/P&gt;
&lt;P&gt;puts "\ndebug(init)Finished Initialisation, CMpilot is $pilotno, Alerttime is $alerttimeout\n"&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;proc act_Setup { } {&lt;BR /&gt;global alerttimeout&lt;/P&gt;
&lt;P&gt;global langselect&lt;BR /&gt;global digitcollect&lt;BR /&gt;global weekdays&lt;BR /&gt;global hour&lt;BR /&gt;global minute&lt;BR /&gt;global param&lt;/P&gt;
&lt;P&gt;set langselect "ZENDO"&lt;BR /&gt;set digitcollect ""&lt;BR /&gt;set weekdays [clock format [clock seconds] -format "%w"]&lt;BR /&gt;set hour [clock format [clock seconds] -format "%H"]&lt;BR /&gt;set minute [clock format [clock seconds] -format "%M"]&lt;/P&gt;
&lt;P&gt;puts "\ndebug(act_Setup)Language selected currently is '$langselect'\n";&lt;BR /&gt;puts "\ndebug(act_Setup)Digitcollect currently is '$digitcollect'\n";&lt;BR /&gt;puts "\n(act_Setup) Entering procedure\n"&lt;/P&gt;
&lt;P&gt;if { [infotag get leg_isdid] } {&lt;BR /&gt;leg proceeding leg_incoming&lt;BR /&gt;leg progress leg_incoming&lt;BR /&gt;leg connect leg_incoming&lt;/P&gt;
&lt;P&gt;if { $weekdays &amp;gt;= 1 &amp;amp;&amp;amp; $weekdays &amp;lt;= 5 } {&lt;/P&gt;
&lt;P&gt;if { $hour == "07" } {&lt;BR /&gt;media play leg_incoming flash:DB_HELLO_8_00_OncesiMesaiDisi.au&lt;BR /&gt;} elseif { $hour &amp;gt;= "08" &amp;amp;&amp;amp; $hour &amp;lt; "12" } {&lt;BR /&gt;media play leg_incoming flash:DB_HELLOMesaiIci.au&lt;BR /&gt;} elseif { $hour &amp;gt;= "12" &amp;amp;&amp;amp; $hour &amp;lt; "17" } {&lt;BR /&gt;media play leg_incoming flash:GoodmorningMesaiIci.au&lt;BR /&gt;} elseif { $hour &amp;gt;= "17" &amp;amp;&amp;amp; $hour &amp;lt; "18" } {&lt;BR /&gt;media play leg_incoming flash:welcome2.au&lt;BR /&gt;} else {&lt;BR /&gt;media play leg_incoming flash:GoodmorningMesaiDisi.au&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;if { $weekdays == 6 } {&lt;BR /&gt;if { $hour &amp;gt;= "07" &amp;amp;&amp;amp; $hour &amp;lt; "09" } {&lt;BR /&gt;media play leg_incoming flash:DB_HELLOMesaiIci.au&lt;BR /&gt;} elseif { $hour &amp;gt;= "09" &amp;amp;&amp;amp; $hour &amp;lt; "12" } {&lt;BR /&gt;media play leg_incoming flash:DB_HELLOMesaiIci.au&lt;BR /&gt;} elseif { $hour &amp;gt;= "12" &amp;amp;&amp;amp; $hour &amp;lt; "17" } {&lt;BR /&gt;media play leg_incoming flash:welcome2.au&lt;BR /&gt;} else {&lt;BR /&gt;media play leg_incoming flash:GoodmorningMesaiDisi.au&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;if { $weekdays == 0 } {&lt;BR /&gt;if { $hour &amp;gt;= "07" &amp;amp;&amp;amp; $hour &amp;lt; "11" } {&lt;BR /&gt;media play leg_incoming flash:GoodmorningMesaiDisi.au&lt;BR /&gt;} elseif { $hour &amp;gt;= "11" &amp;amp;&amp;amp; $hour &amp;lt; "17" } {&lt;BR /&gt;media play leg_incoming flash:GoodmorningMesaiDisi.au&lt;BR /&gt;} else {&lt;BR /&gt;media play leg_incoming flash:GoodmorningMesaiDisi.au&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;set param(interDigitTimeout) 3&lt;BR /&gt;set param(initialDigitTimeout) 2&lt;BR /&gt;set param(maxDigits) 4&lt;BR /&gt;set param(interruptPrompt) true&lt;BR /&gt;set param(abortKey) *&lt;BR /&gt;set param(terminationKey) #&lt;/P&gt;
&lt;P&gt;leg collectdigits leg_incoming param&lt;BR /&gt;fsm setstate SELECTOPT&lt;BR /&gt;} else {&lt;BR /&gt;call close&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;proc act_Collected { } {&lt;BR /&gt;global delay&lt;BR /&gt;global pilotno&lt;BR /&gt;global langselect&lt;BR /&gt;global digitcollect&lt;BR /&gt;global alerttimeout&lt;/P&gt;
&lt;P&gt;puts "\ndebug(act_Collected) Entering procedure\n";&lt;BR /&gt;puts "\ndebug(act_Collected) Digitcollect is: '$digitcollect'\n"&lt;/P&gt;
&lt;P&gt;set status [infotag get evt_status]&lt;BR /&gt;puts "\n(act_Collected) Collect status is '$status' (lang=$langselect)\n"&lt;/P&gt;
&lt;P&gt;if { $status == "cd_001"} {&lt;BR /&gt;puts "\n(act_Collected) Collect Timeout play prompt and transfer to operator\n"&lt;BR /&gt;if { $langselect == "ZENDO" } {&lt;BR /&gt;puts "\n(act_Collected) Playing ZENDO prompt\n"&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;}&lt;BR /&gt;if { $langselect == "English" } {&lt;BR /&gt;puts "\n(act_Collected) Playing English prompt\n"&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;}&lt;BR /&gt;fsm setstate TRANSFERTOOP&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;if { $status == "cd_005" } {&lt;BR /&gt;set choice [infotag get evt_dcdigits]&lt;BR /&gt;puts "\n(act_Collected) Digits entered is '$choice'\n";&lt;/P&gt;
&lt;P&gt;if { $choice == "0" } {&lt;BR /&gt;puts "\n(act_Collected) Transferring to operator ($pilotno)\n";&lt;BR /&gt;leg setup "765400" callInfo leg_incoming&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;} elseif { $choice != "0" &amp;amp;&amp;amp; $choice == "1" } {&lt;BR /&gt;leg setup "765400" callInfo leg_incoming&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;} elseif { $choice != "0" &amp;amp;&amp;amp; $choice != "1" &amp;amp;&amp;amp; $choice == "2" } {&lt;BR /&gt;leg setup "765400" callInfo leg_incoming&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;} elseif { $choice != "0" &amp;amp;&amp;amp; $choice != "1" &amp;amp;&amp;amp; $choice != "2" &amp;amp;&amp;amp; $choice == "3"} {&lt;BR /&gt;leg setup "765400" callInfo leg_incoming&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;} elseif { $choice != "0" &amp;amp;&amp;amp; $choice != "1" &amp;amp;&amp;amp; $choice != "2" &amp;amp;&amp;amp; $choice != "3" &amp;amp;&amp;amp; $choice == "4"} {&lt;BR /&gt;leg setup "765400" callInfo leg_incoming&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;} elseif { $choice != "0" &amp;amp;&amp;amp; $choice != "1" &amp;amp;&amp;amp; $choice != "2" &amp;amp;&amp;amp; $choice != "3" &amp;amp;&amp;amp; $choice != "4" &amp;amp;&amp;amp; $choice == "9"} {&lt;BR /&gt;leg setup "765400" callInfo leg_incoming&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;} elseif { $choice != "0" &amp;amp;&amp;amp; $choice != "1" &amp;amp;&amp;amp; $choice != "2" &amp;amp;&amp;amp; $choice != "3" &amp;amp;&amp;amp; $choice != "4" &amp;amp;&amp;amp; $choice != "9" } {&lt;BR /&gt;leg setup $choice callInfo leg_incoming&lt;BR /&gt;} else {&lt;BR /&gt;puts "\n\n\t\t **** NO acme-sales or acme-service numbers configured from CLI"&lt;BR /&gt;fsm setstate CLEANUP&lt;BR /&gt;reDBn&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;proc act_Cleanup { } {&lt;BR /&gt;puts "\n(act_Cleanup)Closing call\n"&lt;BR /&gt;call close&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;proc optransfer { } {&lt;BR /&gt;global pilotno&lt;/P&gt;
&lt;P&gt;leg setup $pilotno callInfo leg_incoming&lt;BR /&gt;playtone leg_incoming tn_ringback&lt;BR /&gt;puts "\n(optransfer)Transfer in progress\n"&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;proc act_InvalidExt { } {&lt;BR /&gt;global langselect&lt;BR /&gt;global pilotno&lt;/P&gt;
&lt;P&gt;puts "\n(act_InvalidExt) Entering Procedure\n"&lt;BR /&gt;set status [infotag get evt_status]&lt;BR /&gt;puts "\nDEBUG STATUS: $status\n"&lt;BR /&gt;playtone leg_incoming tn_none&lt;/P&gt;
&lt;P&gt;if { $status != "ls_000"} {&lt;BR /&gt;puts "\n(act_InvalidExt) Status is not 000. (Status=$status)\n"&lt;/P&gt;
&lt;P&gt;if { $langselect == "ZENDO" } {&lt;BR /&gt;puts "\n(act_InvalidExt) Playing ZENDO prompt\n"&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;if { $langselect == "English" } {&lt;BR /&gt;puts "\n(act_InvalidExt) Playing English prompt\n"&lt;BR /&gt;media play leg_incoming flash:Transfer.au&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;leg setup $pilotno callInfo leg_incoming&lt;BR /&gt;puts "\n(act_InvalidExt) Cannot connect so Xfer to OP ($pilotno)\n"&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;proc donothing { } {&lt;BR /&gt;puts "\n(donothing) Cannot end up here\n"&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;init&lt;BR /&gt;set delay 5&lt;/P&gt;
&lt;P&gt;#----------------------------------&lt;BR /&gt;# State Machine&lt;BR /&gt;#----------------------------------&lt;/P&gt;
&lt;P&gt;set fsm(any_state,ev_disconnected) "act_Cleanup same_state"&lt;BR /&gt;set fsm(CALL_INIT,ev_setup_indication) "act_Setup same_state"&lt;BR /&gt;set fsm(SELECTOPT,ev_collectdigits_done) "act_Collected same_state"&lt;BR /&gt;set fsm(PLACECALL,ev_leg_timer) "act_Cleanup same_state"&lt;BR /&gt;set fsm(CLEANUP,ev_leg_timer) "act_Cleanup same_state"&lt;BR /&gt;set fsm(TRANSFERTOOP,ev_media_done) "optransfer same_state"&lt;BR /&gt;set fsm(TRANSFERTOEXT,ev_collectdigits_done) "exttransfer same_state"&lt;BR /&gt;set fsm(TRANSFERTOEXT,ev_setup_done) "act_InvalidExt same_state"&lt;/P&gt;
&lt;P&gt;fsm define fsm CALL_INIT&lt;BR /&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 19:16:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3853826#M2684</guid>
      <dc:creator>KY_</dc:creator>
      <dc:date>2025-09-05T19:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3853988#M2686</link>
      <description>&lt;P&gt;Script it self maybe ok but your IOS config for Tcl service will be different&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dial-peer voice 7776 voip&lt;BR /&gt;service to_bacd2&lt;BR /&gt;destination-pattern 7776&lt;BR /&gt;&lt;STRONG&gt;session protocol sipv2&lt;/STRONG&gt;&lt;BR /&gt;session target ipv4:xxx.xxx.xxx.xxx&lt;BR /&gt;incoming called-number 7776&lt;BR /&gt;dtmf-relay h245-alphanumeric&lt;BR /&gt;codec g711ulaw&lt;BR /&gt;no vad&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;of cause there are something else need to be changed too.&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2019 14:55:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3853988#M2686</guid>
      <dc:creator>yawming</dc:creator>
      <dc:date>2019-05-10T14:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3854378#M2689</link>
      <description>&lt;P&gt;Hi Yawming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My ios config will be change only fo incoming call leg, my current incoming dp is pots like that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;dial-peer voice 200 pots&lt;BR /&gt;service ivr&lt;BR /&gt;incoming called-number 798888&lt;BR /&gt;no vad&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;new&amp;nbsp; incoming dp wil be like that:&amp;nbsp;&amp;nbsp; My&amp;nbsp; tcl ivr is working&amp;nbsp;currently with pots dp but we would like to work on vip dial peer in that case what steps should we change on tcl script ?&amp;nbsp; we will&amp;nbsp; replace itsp connection sip trunk instead of pri.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;dial-peer voice 200 voip&lt;BR /&gt;service ivr&lt;BR /&gt;&lt;STRONG&gt;session protocol sipv2&lt;/STRONG&gt;&lt;BR /&gt;incoming called-number 798888&lt;BR /&gt;codec g711ulaw&lt;BR /&gt;no vad&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sat, 11 May 2019 13:36:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3854378#M2689</guid>
      <dc:creator>KY_</dc:creator>
      <dc:date>2019-05-11T13:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3854752#M2690</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As Yawming suggested your script is ok,make sure dtmf-relay and codec configured as below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dial-peer voice 200 voip&lt;BR /&gt;&lt;STRONG&gt;service ivr&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;session protocol sipv2&lt;/STRONG&gt;&lt;BR /&gt;incoming called-number 798888&lt;BR /&gt;&lt;STRONG&gt;dtmf-relay rtp-nte&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;codec g711ulaw&lt;/STRONG&gt;&lt;BR /&gt;no vad&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Raghavendra&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2019 04:45:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3854752#M2690</guid>
      <dc:creator>Raghavendra G V</dc:creator>
      <dc:date>2019-05-13T04:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879342#M2758</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I have made incoming test call but tcl script is not involving calls.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;It does not work with this dp.&lt;/P&gt;
&lt;P&gt;I also collected debug voip ccapi and debug ccsip messages with debug debug voip app on another files.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;called number:+15052246675&lt;/P&gt;
&lt;P&gt;callling number: 089076543&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;dial-peer voice 4610 voip&lt;BR /&gt;service ivr&lt;BR /&gt;session protocol sipv2&lt;BR /&gt;incoming called-number +15052246675&lt;BR /&gt;codec g711alaw&lt;BR /&gt;voice-class sip bind control source-interface GigabitEthernet0/0/1&lt;BR /&gt;voice-class sip bind media source-interface GigabitEthernet0/0/1&lt;BR /&gt;dtmf-relay rtp-nte&lt;BR /&gt;no vad&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;********* Log*****&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Console logging: level debugging, 12954 messages logged, xml disabled,&lt;BR /&gt;filtering disabled&lt;BR /&gt;Monitor logging: level debugging, 69 messages logged, xml disabled,&lt;BR /&gt;filtering disabled&lt;BR /&gt;Buffer logging: level debugging, 8544 messages logged, xml disabled,&lt;BR /&gt;filtering disabled&lt;BR /&gt;Exception Logging: size (4096 bytes)&lt;BR /&gt;Count and timestamp logging messages: disabled&lt;BR /&gt;Persistent logging: disabled&lt;/P&gt;
&lt;P&gt;No active filter modules.&lt;/P&gt;
&lt;P&gt;Trap logging: level informational, 135 message lines logged&lt;BR /&gt;Logging Source-Interface: VRF Name:&lt;/P&gt;
&lt;P&gt;Log Buffer (1000000000 bytes):&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:23.415: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:23.415: //85546/79C82D428E4A/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:23.415: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECTED(22)] {&lt;BR /&gt;*Jun 25 14:58:23.415: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12408][IVR]&lt;BR /&gt;*Jun 25 14:58:23.416: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85546][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:23.416: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:23.416: //85546/79C82D428E4A/SSIN:/AFW_SS_MapEvent:&lt;BR /&gt;*Jun 25 14:58:23.416: //-1//SSIN:/AFW_SS_SIP_MapEvent:&lt;BR /&gt;*Jun 25 14:58:23.416: //-1//MSW :/msw_synth_bargein:&lt;BR /&gt;*Jun 25 14:58:23.416: msw_synth_bargein: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;reason=MSW_REASON_DISCONNECTED, current_state=MSW_S_PLAYING&lt;BR /&gt;*Jun 25 14:58:23.416: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...&lt;BR /&gt;*Jun 25 14:58:23.417: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mediaStream=0x7FB31EDC4F18, rtspStream=0x7FB311AFFB58&lt;BR /&gt;reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_PLAYING&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSW :/msw_synth_stop: Found gccb for callID [85546]&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSW :/msw_synth_stop: msw_synth_stop: call ms_stop_play()...&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSM :/ms_stop_play: mgdTstop at 1w5d (cause MS_STOP_DISCONNECTED)&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSM :/ms_stop_play: Play Stopped at 1w5d&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSM :/ms_stop_play: calling CBF for stream_id 2&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSW :/msu_synth_ms_play_complete: context=0x7FB311AFF1F0, use_dynamic=1, dynamicElement=0x7FB319EB38E8,&lt;BR /&gt;cause=MS_STOP_DISCONNECTED, stream_id=2, duration=1986, rate=0 proto_code=0&lt;BR /&gt;*Jun 25 14:58:23.417: //85546//MSW :/msu_synth_ms_play_complete: Ignoring: cur. stream=3, resp. stream=2&lt;BR /&gt;*Jun 25 14:58:23.418: //85546//MSW :/msw_synth_stop: msw_synth_stop: call reg_invoke_dp_delete_mcDynamicS()&lt;BR /&gt;*Jun 25 14:58:23.418: //-1//MCM :MC7:/mc_delete: mc=0x7FB31ED87850&lt;BR /&gt;*Jun 25 14:58:23.418: //-1//MCM :MC7:/mc_check_background_load: mc(0x7FB31ED87850), mc-&amp;gt;eof=1&lt;BR /&gt;*Jun 25 14:58:23.418: //85546/79C82D428E4A/AFW_:/AFW_Leg_MediaCallback:&lt;BR /&gt;*Jun 25 14:58:23.418: //-1//AFW_:/AFW_Leg_MediaCallback: pLeg=0x7FB31B2F8DE0, pModule=0x7FB311B147C8&lt;BR /&gt;*Jun 25 14:58:23.418: //-1//AFW_:/AFW_Event_New: Event ID: ev_media_done(200)&lt;BR /&gt;*Jun 25 14:58:23.418: //-1//MSW :/msw_mediadone_stats:&lt;BR /&gt;*Jun 25 14:58:23.418: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:23.418: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:23.418: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B147C8_0_1044285728] (&lt;BR /&gt;*Jun 25 14:58:23.419: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85546][LEG_INCCONNECTED(5)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:23.419: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:23.419: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:23.419: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule&lt;BR /&gt;*Jun 25 14:58:23.419: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B147C8_0_1044285728&lt;BR /&gt;*Jun 25 14:58:23.419: //85546//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:23.420: //85546//AFW_:/AFW_TclModule_DefaultEvHandling:&lt;BR /&gt;*Jun 25 14:58:23.420: //85546//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(TRANSFERTOOP[4],ev_disconnected[22])---[act_Cleanup]------&lt;BR /&gt;*Jun 25 14:58:23.420: //85546//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;(act_Cleanup)Closing call&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:23.420:&lt;BR /&gt;*Jun 25 14:58:23.420: //85546//TCL :/tcl_CallObjCmd: call close&lt;BR /&gt;*Jun 25 14:58:23.420: //85546//TCL :/tcl_CallCloseObjCmd: close&lt;BR /&gt;*Jun 25 14:58:23.420: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 1&lt;BR /&gt;*Jun 25 14:58:23.420: //-1//AFW_:/AFW_ExecEnv_CallClose: Terminating ExecEnv's root module&lt;BR /&gt;*Jun 25 14:58:23.421: //85546//AFW_:/AFW_Module_Terminate: Terminating Module: TclModule_0x7FB311B147C8_0_1044285728&lt;BR /&gt;*Jun 25 14:58:23.421: //85546//AFW_:/AFW_M_TclModule_Terminate: Module is in the state: ACTIVE&lt;BR /&gt;*Jun 25 14:58:23.421: //85546//AFW_:/AFW_TclModule_Cleaner: lastFailureCause 16&lt;BR /&gt;*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85546&lt;BR /&gt;*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85546, Cause 16&lt;BR /&gt;*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_Disconnect: Setting hunt stats for the disconnecting leg-85546&lt;BR /&gt;*Jun 25 14:58:23.421: //85546//MEDI:/C_MediaFork_Close: Media Fork Not avtive on Leg [85546]&lt;BR /&gt;*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID D type 2&lt;BR /&gt;*Jun 25 14:58:23.421: //85546//AFW_:/AFW_FSM_Drive: ACTION END: -------------(TRANSFERTOOP[4])---------------&lt;BR /&gt;*Jun 25 14:58:23.422: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B147C8_0_1044285728 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:23.422: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:23.422: //85546//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:23.422: //85546//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED&lt;BR /&gt;*Jun 25 14:58:23.422: //85546//AFW_:/AFW_Process_GetAppQEvent: Received&lt;BR /&gt;*Jun 25 14:58:23.422: //-1//AFW_:/AFW_Process_GetAppQEvent: Event[MSW_EV_SYNTHESIZER(200)] {&lt;BR /&gt;*Jun 25 14:58:23.422: //-1//AFW_:/AFW_Process_GetAppQEvent: EXECENV[0x7FB311B12408][IVR]&lt;BR /&gt;*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[TclModule_0x7FB311B147C8_0_1044285728] (&lt;BR /&gt;*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85546][LEG_INCDISCONNECTING(6)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: )&lt;BR /&gt;*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: }&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_TclModule_EventPreProcess:&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B147C8_0_1044285728&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_TclModule_Action: Module is Terminating&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B147C8_0_1044285728 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:23.424: //85546//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:23.424: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:23.424: //-1//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:23.424: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL&lt;BR /&gt;*Jun 25 14:58:30.862: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:30.862: //85542/7297824F8E44/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:30.862: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECT_DONE(23)] {&lt;BR /&gt;*Jun 25 14:58:30.862: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:30.863: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85542][LEG_INCDISCONNECTING(6)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:30.863: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:30.863: //-1//SSIN:/AFW_SS_MapEvent: No mapping required&lt;BR /&gt;*Jun 25 14:58:30.863: //85542/7297824F8E44/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:30.863: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:30.863: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B145A0_0_1044273666] (&lt;BR /&gt;*Jun 25 14:58:30.864: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85542][LEG_DISCONNECTED(12)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:30.864: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:30.864: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:30.864: //85542/7297824F8E44/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule&lt;BR /&gt;*Jun 25 14:58:30.864: //85542/7297824F8E44/AFW_:/AFW_Object_RemoveListener:&lt;BR /&gt;*Jun 25 14:58:30.864: //85542//AFW_:/AFW_Module_UnListen: NumObjects: 0&lt;BR /&gt;*Jun 25 14:58:30.865: //85542//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B145A0_0_1044273666&lt;BR /&gt;*Jun 25 14:58:30.865: //85542//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:30.865: //85542//AFW_:/AFW_M_TclModule_Action: Module is Terminating&lt;BR /&gt;*Jun 25 14:58:30.865: //-1//AFW_:/AFW_Event_New: Event ID: ev_module_done(278)&lt;BR /&gt;*Jun 25 14:58:30.865: //85542//AFW_:/AFW_TclModule_ReturnIfDone: Sending Out APP_EV_TCLMODULE_DONE event&lt;BR /&gt;*Jun 25 14:58:30.865: //85542//AFW_:/AFW_Module_ReturnArgEv:&lt;BR /&gt;*Jun 25 14:58:30.865: //85542//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B145A0_0_1044273666 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_M_Event_Free: CC_EV_CALL_DISCONNECT_DONE for a Leg: LEG_85542&lt;BR /&gt;*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_Object_RemoveAllListener:&lt;BR /&gt;*Jun 25 14:58:30.866: //85542//AFW_:/AFW_ExecEnv_DecrNPendingCmd: PendingCmdCount: 0&lt;BR /&gt;*Jun 25 14:58:30.866: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 1, CmdPending 0&lt;BR /&gt;*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_M_Event_Free: ExecEnv objCount: 1&lt;BR /&gt;*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_M_Leg_Free:&lt;BR /&gt;*Jun 25 14:58:30.866: //85542//MSW :/msw_destroy:&lt;BR /&gt;*Jun 25 14:58:30.866: //-1//MSW :/msw_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;reason=MSW_REASON_DISCONNECTED&lt;BR /&gt;*Jun 25 14:58:30.866: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;mediaStream=0x7FB31A6C2608, rtspStream=0x7FB311AFFBD8&lt;BR /&gt;reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:30.867: //85542//MSW :/msw_synth_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;mediaStream=0x7FB3195E7A20, rtspStream=0x7FB311AFFBE8&lt;BR /&gt;reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_recog_stop:&lt;BR /&gt;*Jun 25 14:58:30.867: msw_recog_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;mrcpStream=0x7FB311AFFCE8&lt;BR /&gt;reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;mediaStream=0x7FB31A6C2608, rtspStream=0x7FB311AFFBD8&lt;BR /&gt;reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:30.867: //85542//MSW :/msw_synth_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;mediaStream=0x7FB3195E7A20, rtspStream=0x7FB311AFFBE8&lt;BR /&gt;reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:30.868: //-1//MSW :/msw_recog_stop:&lt;BR /&gt;*Jun 25 14:58:30.868: msw_recog_stop: genericStream=0x7FB311AFF018,&lt;BR /&gt;mrcpStream=0x7FB311AFFCE8&lt;BR /&gt;reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:30.868: //85542/7297824F8E44/AFW_:/AFW_M_Leg_Free: LEG[85542 ][LEG_DISCONNECTED(12)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:30.868: //85542/7297824F8E44/AFW_:/decrementDialPeerCallStats: Decrementing call-stat to [1], dial-peer [4610]&lt;BR /&gt;*Jun 25 14:58:30.868: //85542//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 0&lt;BR /&gt;*Jun 25 14:58:30.868: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 3&lt;BR /&gt;*Jun 25 14:58:30.868: //85542//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED&lt;BR /&gt;*Jun 25 14:58:30.868: //85542//AFW_:/AFW_Process_GetPriorityQEvent: Received&lt;BR /&gt;*Jun 25 14:58:30.868: //-1//AFW_:/AFW_Process_GetPriorityQEvent: Event[APP_EV_TCLMODULE_DONE(278)] {&lt;BR /&gt;*Jun 25 14:58:30.868: //-1//AFW_:/AFW_Process_GetPriorityQEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:30.869: //-1//AFW_:/AFW_Process_GetPriorityQEvent: MOD[TclModule_0x7FB311B145A0_0_1044273666] (&lt;BR /&gt;*Jun 25 14:58:30.869: //-1//AFW_:/AFW_Process_GetPriorityQEvent: )&lt;BR /&gt;*Jun 25 14:58:30.869: //-1//AFW_:/AFW_Process_GetPriorityQEvent: }&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_TclModule_EventPreProcess:&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Event_Free: MODULEDONEEVENT for a Module: TclModule_0x7FB311B145A0_0_1044273666&lt;BR /&gt;*Jun 25 14:58:30.870: //85542//AFW_:/AFW_Object_RemoveAllListener:&lt;BR /&gt;*Jun 25 14:58:30.870: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 0, CmdPending 0&lt;BR /&gt;*Jun 25 14:58:30.870: //-1//AFW_:HN3E3E5A02:/AFW_M_Event_Free: ExecEnv objCount: 0&lt;BR /&gt;*Jun 25 14:58:30.870: //-1//SERV:/AFW_Service_ReleaseExecEnv: Script Name = IVR cache = true calls = 1&lt;BR /&gt;*Jun 25 14:58:30.871: //85542//AFW_:/AFW_ExecEnv_UnSetRoot: Execenv = 0x7FB311B12290&lt;BR /&gt;*Jun 25 14:58:30.871: //-1//AFW_:/AFW_Process_UnLock: pProcess(0x7FB3187A6BD0)=1&lt;BR /&gt;*Jun 25 14:58:30.871: //-1//SCRI:/cam_sa_stopped: Instance: [] ExecEnv: 0x7FB311B12290&lt;BR /&gt;*Jun 25 14:58:30.871: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:30.871: //-1//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:30.871: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//SERV:/AFW_Service_CCInterface: Received Event 27 for service IVR modulehandle NULL&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//SERV:/AFW_Service_GetExecEnv: Script Name = IVR&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//SERV:/AFW_Service_GetExecEnv: Using Cached ExecEnv&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_SetRoot: Execenv = 0x7FB311B12290&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//AFW_:/AFW_M_TclModule_NewDup:&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//AFW_:HN3E3EE4BE:/AFW_M_TclModule_Free: MOD[TclModule_0x7FB311B145A0_0_1044273666] ( )&lt;BR /&gt;*Jun 25 14:58:36.480: //-1//AFW_:/AFW_M_FSM_Free:&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:/AFW_Process_Lock: pProcess(0x7FB3187A6BD0)=2&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:LP:EE7FB311B12290000:HN3E3EFAA8:/AFW_M_Object_SetExecEnv: Inc module TclModule(0x7FB311B149F0). ObjCount: 1, CmdPending 0&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_RestoreDataBackup: Restore DataArea from Script&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_RestoreDataBackup: Restore TokenTable from Script&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_Initiate: Execenv = 0x7FB311B12290&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_SetCallCorID:&lt;BR /&gt;*Jun 25 14:58:36.481: CallCorID is ^K^Z}r^V^P^Qi^NSjU^PJ^X8&lt;BR /&gt;*Jun 25 14:58:36.481: //-1//AFW_:/AFW_Leg_New:&lt;BR /&gt;*Jun 25 14:58:36.482: //85553//AFW_:/AFW_M_Leg_SetExecEnv:&lt;BR /&gt;*Jun 25 14:58:36.482: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_IncrPendingCmd: PendingCmdCount: 1&lt;BR /&gt;*Jun 25 14:58:36.482: //-1//AFW_:LP:EE7FB311B12290000:LG85553:/AFW_M_Object_SetExecEnv: Inc object 0x7FB31B2FA4E0. ObjCount: 2, CmdPending 1&lt;BR /&gt;*Jun 25 14:58:36.482: //85553//AFW_:/AFW_Object_AddListener: adding Module TclModule as listener&lt;BR /&gt;*Jun 25 14:58:36.482: //85553//AFW_:/AFW_M_Leg_GetHandle: Leg handle: LEG_85553&lt;BR /&gt;*Jun 25 14:58:36.482: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_AssignCall: Execenv = 0x7FB311B12290, Leg = 85553, Peer_Tag = 4610&lt;BR /&gt;*Jun 25 14:58:36.482: //85553//AFW_:/AFW_ExecEnv_SetCallCorID:&lt;BR /&gt;*Jun 25 14:58:36.482: CallCorID is ^K^Z}r^V^P^Qi^NSjU^PJ^X8&lt;BR /&gt;*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:36.483: //85553//AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_SETUP_IND(37)] {&lt;BR /&gt;*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INIT(0)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:36.484: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:36.484: //85553//SSIN:/AFW_SS_MapEvent:&lt;BR /&gt;*Jun 25 14:58:36.484: //-1//SSIN:/AFW_SS_SIP_MapEvent:&lt;BR /&gt;*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID E type 0&lt;BR /&gt;*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/incrementIncomingDialPeerCallStats: Incrementing call-stat to [2] for dial-peer [4610]&lt;BR /&gt;*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:36.485: //-1//AFW_:/AFW_M_Object_ShowListeners:&lt;BR /&gt;*Jun 25 14:58:36.485: //85553//AFW_:/AFW_M_Module_GetHandle: Module handle: TclModule_0x7FB311B149F0_0_1044314792MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:36.485: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCINIT(1)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:36.485: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:36.485: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule&lt;BR /&gt;*Jun 25 14:58:36.486: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---&amp;gt; TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:36.486: //85553//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:36.486: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:&lt;BR /&gt;*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Leg_CheckIncomingCallBlock:&lt;BR /&gt;*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Leg_SettlementValidateCall: target=, tokenp=0x0, pool tag=0&lt;BR /&gt;*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Leg_IncomingTranslate:&lt;BR /&gt;*Jun 25 14:58:36.486: //-1//AFW_:/AFW_Leg_IncomingTranslate: Tag(4610) calling[089076543] redirect[] called[08505224610]&lt;BR /&gt;*Jun 25 14:58:36.486: //85553//XCCS:/C_PackageXCCSession_AcceptCallCheck: No AcceptCall; XCC application is unregistered&lt;BR /&gt;*Jun 25 14:58:36.487: //85553//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(CALL_INIT[1],ev_setup_indication[37])---[act_Setup]------&lt;BR /&gt;*Jun 25 14:58:36.487: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;debug(act_Setup)Language selected currently is 'Turkish'&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:36.487:&lt;BR /&gt;*Jun 25 14:58:36.487: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;debug(act_Setup)Digitcollect currently is ''&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:36.487:&lt;BR /&gt;*Jun 25 14:58:36.487: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;(act_Setup) Entering procedure&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:36.487:&lt;BR /&gt;*Jun 25 14:58:36.487: //85553//TCL :/tcl_InfotagObjCmd: infotag get leg_isdid&lt;BR /&gt;*Jun 25 14:58:36.487: //85553//TCL :/tcl_InfotagGetObjCmd: infotag get leg_isdid&lt;BR /&gt;*Jun 25 14:58:36.488: //85553//AFW_:/vtr_lg_incdid: argc 2 argindex 2&lt;BR /&gt;*Jun 25 14:58:36.488: //85553//TCL :/tcl_LegObjCmd: leg proceeding leg_incoming&lt;BR /&gt;*Jun 25 14:58:36.488: //85553//TCL :/tcl_LegProceedObjCmd: proceeding leg_incoming&lt;BR /&gt;*Jun 25 14:58:36.488: //85553//AFW_:/vtd_lg_incoming: argc 2&lt;BR /&gt;*Jun 25 14:58:36.488: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]&lt;BR /&gt;*Jun 25 14:58:36.488: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1&lt;BR /&gt;*Jun 25 14:58:36.489: //85553//TCL :/tcl_LegObjCmd: leg progress leg_incoming&lt;BR /&gt;*Jun 25 14:58:36.489: //85553//TCL :/tcl_LegProgressObjCmd: progress leg_incoming&lt;BR /&gt;*Jun 25 14:58:36.489: //85553//AFW_:/vtd_lg_incoming: argc 2&lt;BR /&gt;*Jun 25 14:58:36.489: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]&lt;BR /&gt;*Jun 25 14:58:36.489: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1&lt;BR /&gt;*Jun 25 14:58:36.489: //85553//TCL :/tcl_LegObjCmd: leg connect leg_incoming&lt;BR /&gt;*Jun 25 14:58:36.490: //85553//TCL :/tcl_LegConnectObjCmd: connect leg_incoming&lt;BR /&gt;*Jun 25 14:58:36.490: //85553//AFW_:/vtd_lg_incoming: argc 2&lt;BR /&gt;*Jun 25 14:58:36.490: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]&lt;BR /&gt;*Jun 25 14:58:36.490: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1&lt;BR /&gt;*Jun 25 14:58:36.490: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Connect: prog_ind=0, ccRawMsgInfo_t=0x7FB31EE166F8, cData=0&lt;BR /&gt;*Jun 25 14:58:36.490: //85553/8B1AFD728E53/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID E type 1&lt;BR /&gt;*Jun 25 14:58:36.491: //85553//PACK:/tcl_MediaObjCmd: media play leg_incoming flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.491: //85553//PACK:/tcl_MediaPlayObjCmd: play leg_incoming flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.491: //85553//AFW_:/vtd_lg_incoming: argc 3&lt;BR /&gt;*Jun 25 14:58:36.491: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]&lt;BR /&gt;*Jun 25 14:58:36.491: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1&lt;BR /&gt;*Jun 25 14:58:36.491: //-1//DPM :DP14:/pc_mc_addToDynamicS: (1) flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :DP14:/pc_mc_addToDynamicS: Doing : flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :/mcTokenizerGetNext: savedcharptr=f endptrptr=flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :DP14:/pc_mc_addToDynamicS: Token : flash:TUR_IyiGunlerMesaiIci.au status 1&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :DP14:/pc_mc_addToDynamicS: du_IsNameURL() return TRUE&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :DP14:/dp_mcDQfromURL: file=flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//MCM :/mc_createFromFileUrl: Getting a media content: name=TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;url=flash:TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;load fast, fetchtimeout=-1&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//MCM :MC6:/mc_getFromUrlName: TUR_IyiGunlerMesaiIci.au on ram&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//MCM :/mc_createFromFileUrl: Found a good mc (0x7FB3197A4A68), RefCount(1)&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :DP14:/dp_mcDQfromURL: mc_createFromFileUrl OK&lt;BR /&gt;*Jun 25 14:58:36.492: //-1//DPM :/mcTokenizerGetNext: savedcharptr=^@ endptrptr=&lt;BR /&gt;*Jun 25 14:58:36.493: //85553//PACK:/Media_Play_Start:&lt;BR /&gt;*Jun 25 14:58:36.493: //-1//PACK:/Media_Play_Start: pLeg-&amp;gt;stream is null, call msw_create()&lt;BR /&gt;*Jun 25 14:58:36.493: //85553//MSW :/msw_create: cbf=0x5636150C2560&lt;BR /&gt;*Jun 25 14:58:36.493: //-1//MSM :MS13:/ms_create: Iniz ply_timer&lt;BR /&gt;*Jun 25 14:58:36.493: //85553//MSW :/msw_synth_open: mediaStream 0x7FB3197A2EF0 created&lt;BR /&gt;*Jun 25 14:58:36.493: //85553//MSW :/msw_synth_open: rtspStream 0x7FB311AFFB78 created,&lt;BR /&gt;status=RTSP_STATUS_SUCCESS, session_id=0xD (13)&lt;BR /&gt;*Jun 25 14:58:36.493: //85553//MSW :/msw_synth_open: AIS : Creating TTS AIS Backend record&lt;BR /&gt;*Jun 25 14:58:36.493: //-1//MSM :MS14:/ms_create: Iniz ply_timer&lt;BR /&gt;*Jun 25 14:58:36.493: //85553//MSW :/msw_recrd_open:&lt;BR /&gt;*Jun 25 14:58:36.493: :msw_recrd_open mediaStream 0x7FB3197A4FB0 created&lt;BR /&gt;*Jun 25 14:58:36.494: //85553//MSW :/msw_recrd_open: rtspStream 0x7FB311AFFB88 created,&lt;BR /&gt;status=RTSP_STATUS_SUCCESS, session_id=0xE (14)&lt;BR /&gt;*Jun 25 14:58:36.494: //85553//MSW :/msw_recog_open: AIS : Creating ASR AIS Backend record&lt;BR /&gt;*Jun 25 14:58:36.494: //-1//PACK:/Media_Play_Start: msw_create() succeed to create stream [7]&lt;BR /&gt;*Jun 25 14:58:36.494: //-1//MSW :/msw_associate_call:&lt;BR /&gt;*Jun 25 14:58:36.494: msw_associate_call: callID=0x14E31(85553),&lt;BR /&gt;genericStream=0x7FB311AFF3B8&lt;BR /&gt;*Jun 25 14:58:36.494: //85553//MSW :/msw_synth_get_stream_state: genericStream 0x7FB311AFF3B8 is in state MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:36.494: //-1//MSW :/msw_synth_start:&lt;BR /&gt;*Jun 25 14:58:36.494: msw_synth_start: Enter...&lt;BR /&gt;*Jun 25 14:58:36.494: //85553//MSW :/msw_synth_start: current_stream_id=1, content 0x0, dynamicS 0x7FB31B099B90, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:36.494: //-1//MSW :/msw_synth_start: msw_synth_start: p_mcDynamicS, We've been given a list of URLs to play.&lt;BR /&gt;*Jun 25 14:58:36.494: //-1//MSW :/msw_synth_start: p_mcDynamicQ is NOT empty&lt;BR /&gt;*Jun 25 14:58:36.494: //85553//MSW :/msu_synth_partial_play: Media Stream URL&lt;BR /&gt;*Jun 25 14:58:36.495: //85553//TCL :/tcl_LegObjCmd: leg collectdigits leg_incoming param&lt;BR /&gt;*Jun 25 14:58:36.495: //85553//Digi:/tcl_LegDigitCollectObjCmd: collectdigits leg_incoming param&lt;BR /&gt;*Jun 25 14:58:36.495: //85553//AFW_:/vtd_lg_incoming: argc 3&lt;BR /&gt;*Jun 25 14:58:36.495: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]&lt;BR /&gt;*Jun 25 14:58:36.495: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1&lt;BR /&gt;*Jun 25 14:58:36.496: //85553//Digi:/C_DigitCollect_Start: Leg=85553, Dialplan=False, Diaplanterm=False, DigitReport=False, DigitConsume=False IgnoreInitialKey=False, IgnoreDTMFacceptINFO=False, Abortkey=*, Terminationkey=#, Numpatterns=0, Maxdigits=4, Mindigits=0, Interruptprompt=True, InterTimeout=3000, Initialtimeout=2000, Mask=0 Hotword=0&lt;BR /&gt;*Jun 25 14:58:36.496: //-1//Digi:/AFW_DigitCollect_New:&lt;BR /&gt;*Jun 25 14:58:36.496: //-1//Digi:HN3E3EFAB8:/AFW_DigitCollect_New: DialPlan=FALSE AbortKey=* TermKey=# NumPatts=0&lt;BR /&gt;Enable=FALSE Consume=FALSE InterruptPrompt=TRUE minDigits=0 maxDigits=4 DialPlanTerm=FALSE hotword=0&lt;BR /&gt;*Jun 25 14:58:36.496: //-1//AFW_:LP:EE7FB311B12290000:HN3E3EFAB8:/AFW_M_Object_SetExecEnv: Inc module DigitCollect(0x7FB31ED6EB70). ObjCount: 3, CmdPending 1&lt;BR /&gt;*Jun 25 14:58:36.496: //85553//AFW_:/AFW_Object_AddListener: adding Module TclModule as listener&lt;BR /&gt;*Jun 25 14:58:36.496: //85553//AFW_:/AFW_M_Module_GetHandle: Module handle: DigitCollect_0x7FB31ED6EB70_0_1044314808&lt;BR /&gt;*Jun 25 14:58:36.496: //85553/8B1AFD728E53/AFW_:/AFW_Object_AddListener: adding Module DigitCollect as listener&lt;BR /&gt;*Jun 25 14:58:36.496: //85553/8B1AFD728E53/Digi:/DigitCollectStart_UpdateStats:&lt;BR /&gt;*Jun 25 14:58:36.497: //85553//Digi:/DigitCollect_MLPPTuning:&lt;BR /&gt;*Jun 25 14:58:36.497: //85553//Digi:/DigitCollect_MLPPTuning: Precednece Digit Collect not enabled&lt;BR /&gt;*Jun 25 14:58:36.497: //85553/8B1AFD728E53/AFW_:/AFW_Leg_TypeAheadGet: no chars in buffer.&lt;BR /&gt;*Jun 25 14:58:36.497: //85553/8B1AFD728E53/AFW_:/AFW_Leg_DigitReportEnable: Current: 0x0 Input: 0x2&lt;BR /&gt;*Jun 25 14:58:36.497: //85553//TCL :/tcl_FSMObjCmd: fsm setstate SELECTOPT&lt;BR /&gt;*Jun 25 14:58:36.498: //85553//TCL :/tcl_FSMSetStateObjCmd: setstate setstate SELECTOPT&lt;BR /&gt;*Jun 25 14:58:36.498: //85553//AFW_:/AFW_FSM_Drive: ACTION END: -------------(SELECTOPT[2])---------------&lt;BR /&gt;*Jun 25 14:58:36.498: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---&amp;gt; TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:36.498: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:36.498: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:36.499: //85553//MSM :LP:MS13:/ms_associateDone:&lt;BR /&gt;*Jun 25 14:58:36.499: //85553//MSM :/ms_asDone_buginf: callID=0x14E31, pVdb=0x7FB31179A8B0,&lt;BR /&gt;disposition=0, playFunc=0x563614EC3370,&lt;BR /&gt;codec=0x6=g711alaw, vad=0,&lt;BR /&gt;mediaType=3, streamAssocID=85554&lt;BR /&gt;*Jun 25 14:58:36.499: //85553//MSM :/ms_associateDone: Setting initial seqnum=6810 for the call&lt;BR /&gt;*Jun 25 14:58:36.500: //-1//MCM :MR13:/mc_setup_reader_encaps: ENCAP SSRC is 0, mediaType is 3, random gen ssrc is 0x108DA&lt;BR /&gt;*Jun 25 14:58:36.500: //-1//MCM :MR13:/mc_setup_reader_encaps: SSRC: 0x108DA SeqNum: 0x1A9A&lt;BR /&gt;*Jun 25 14:58:36.500: //85553//MSM :/ms_associateDone: First Buf Play at 1w5d of TUR_IyiGunlerMesaiIci.au&lt;BR /&gt;*Jun 25 14:58:36.500: //85553//MSM :/ms_associateDone: 1w5d, Tstart(ply: iSndDly 0)&lt;BR /&gt;*Jun 25 14:58:36.501: //85553//MSM :/ms_handle_stream_timer: &amp;gt;&amp;gt;ms_start_play()&lt;BR /&gt;*Jun 25 14:58:36.501: //85553//MSM :/ms_start_play: 1w5d, Tstart(ply: i_dly 4)&lt;BR /&gt;*Jun 25 14:58:36.501: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:36.501: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:36.501: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_REPORT_DIGITS_DONE(71)] {&lt;BR /&gt;*Jun 25 14:58:36.502: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:36.502: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:36.502: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:36.502: //-1//SSIN:/AFW_SS_MapEvent: No mapping required&lt;BR /&gt;*Jun 25 14:58:36.502: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:36.502: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:36.504: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:36.504: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:36.504: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:36.505: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:36.505: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:36.505: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : DigitCollect&lt;BR /&gt;*Jun 25 14:58:36.505: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; DigitCollect_0x7FB31ED6EB70_0_1044314808&lt;BR /&gt;*Jun 25 14:58:36.505: //85553//Digi:/AFW_M_DigitCollect_Action:&lt;BR /&gt;*Jun 25 14:58:36.505: //85553//Digi:/act_DCRunning_RDone: id=85553 Enable succeeded.enable=0 matchDialplan=0 numPatterns=0matchDialplanTerm=0&lt;BR /&gt;*Jun 25 14:58:36.505: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: DigitCollect_0x7FB31ED6EB70_0_1044314808 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:36.505: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:36.505: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:42.926: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:42.926: //85546/79C82D428E4A/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:42.926: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECT_DONE(23)] {&lt;BR /&gt;*Jun 25 14:58:42.927: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12408][IVR]&lt;BR /&gt;*Jun 25 14:58:42.927: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85546][LEG_INCDISCONNECTING(6)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:42.927: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:42.927: //-1//SSIN:/AFW_SS_MapEvent: No mapping required&lt;BR /&gt;*Jun 25 14:58:42.927: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:42.927: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:42.927: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B147C8_0_1044285728] (&lt;BR /&gt;*Jun 25 14:58:42.928: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85546][LEG_DISCONNECTED(12)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:42.928: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:42.928: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:42.928: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule&lt;BR /&gt;*Jun 25 14:58:42.928: //85546/79C82D428E4A/AFW_:/AFW_Object_RemoveListener:&lt;BR /&gt;*Jun 25 14:58:42.928: //85546//AFW_:/AFW_Module_UnListen: NumObjects: 0&lt;BR /&gt;*Jun 25 14:58:42.929: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B147C8_0_1044285728&lt;BR /&gt;*Jun 25 14:58:42.929: //85546//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:42.929: //85546//AFW_:/AFW_M_TclModule_Action: Module is Terminating&lt;BR /&gt;*Jun 25 14:58:42.929: //-1//AFW_:/AFW_Event_New: Event ID: ev_module_done(278)&lt;BR /&gt;*Jun 25 14:58:42.929: //85546//AFW_:/AFW_TclModule_ReturnIfDone: Sending Out APP_EV_TCLMODULE_DONE event&lt;BR /&gt;*Jun 25 14:58:42.929: //85546//AFW_:/AFW_Module_ReturnArgEv:&lt;BR /&gt;*Jun 25 14:58:42.929: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B147C8_0_1044285728 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:42.929: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:42.929: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:42.929: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free: CC_EV_CALL_DISCONNECT_DONE for a Leg: LEG_85546&lt;BR /&gt;*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_Object_RemoveAllListener:&lt;BR /&gt;*Jun 25 14:58:42.930: //85546//AFW_:/AFW_ExecEnv_DecrNPendingCmd: PendingCmdCount: 0&lt;BR /&gt;*Jun 25 14:58:42.930: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 1, CmdPending 0&lt;BR /&gt;*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free: ExecEnv objCount: 1&lt;BR /&gt;*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Leg_Free:&lt;BR /&gt;*Jun 25 14:58:42.930: //85546//MSW :/msw_destroy:&lt;BR /&gt;*Jun 25 14:58:42.930: //-1//MSW :/msw_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;reason=MSW_REASON_DISCONNECTED&lt;BR /&gt;*Jun 25 14:58:42.930: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...&lt;BR /&gt;*Jun 25 14:58:42.930: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mediaStream=0x7FB31EDC4F18, rtspStream=0x7FB311AFFB58&lt;BR /&gt;reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:42.931: //85546//MSW :/msw_synth_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mediaStream=0x7FB31ED9E2B0, rtspStream=0x7FB311AFFB68&lt;BR /&gt;reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_recog_stop:&lt;BR /&gt;*Jun 25 14:58:42.931: msw_recog_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mrcpStream=0x7FB311AFFC68&lt;BR /&gt;reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mediaStream=0x7FB31EDC4F18, rtspStream=0x7FB311AFFB58&lt;BR /&gt;reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:42.931: //85546//MSW :/msw_synth_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mediaStream=0x7FB31ED9E2B0, rtspStream=0x7FB311AFFB68&lt;BR /&gt;reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: Stream not currently active&lt;BR /&gt;*Jun 25 14:58:42.931: //-1//MSW :/msw_recog_stop:&lt;BR /&gt;*Jun 25 14:58:42.932: msw_recog_stop: genericStream=0x7FB311AFF1E8,&lt;BR /&gt;mrcpStream=0x7FB311AFFC68&lt;BR /&gt;reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:42.932: //85546/79C82D428E4A/AFW_:/AFW_M_Leg_Free: LEG[85546 ][LEG_DISCONNECTED(12)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:42.932: //85546/79C82D428E4A/AFW_:/decrementDialPeerCallStats: Decrementing call-stat to [1], dial-peer [4610]&lt;BR /&gt;*Jun 25 14:58:42.932: //85546//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 0&lt;BR /&gt;*Jun 25 14:58:42.932: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 3&lt;BR /&gt;*Jun 25 14:58:42.932: //85546//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED&lt;BR /&gt;*Jun 25 14:58:42.932: //85546//AFW_:/AFW_Process_GetPriorityQEvent: Received&lt;BR /&gt;*Jun 25 14:58:42.932: //-1//AFW_:/AFW_Process_GetPriorityQEvent: Event[APP_EV_TCLMODULE_DONE(278)] {&lt;BR /&gt;*Jun 25 14:58:42.932: //-1//AFW_:/AFW_Process_GetPriorityQEvent: EXECENV[0x7FB311B12408][IVR]&lt;BR /&gt;*Jun 25 14:58:42.933: //-1//AFW_:/AFW_Process_GetPriorityQEvent: MOD[TclModule_0x7FB311B147C8_0_1044285728] (&lt;BR /&gt;*Jun 25 14:58:42.933: //-1//AFW_:/AFW_Process_GetPriorityQEvent: )&lt;BR /&gt;*Jun 25 14:58:42.933: //-1//AFW_:/AFW_Process_GetPriorityQEvent: }&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_TclModule_EventPreProcess:&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Event_Free: MODULEDONEEVENT for a Module: TclModule_0x7FB311B147C8_0_1044285728&lt;BR /&gt;*Jun 25 14:58:42.934: //85546//AFW_:/AFW_Object_RemoveAllListener:&lt;BR /&gt;*Jun 25 14:58:42.934: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 0, CmdPending 0&lt;BR /&gt;*Jun 25 14:58:42.934: //-1//AFW_:HN3E3E8920:/AFW_M_Event_Free: ExecEnv objCount: 0&lt;BR /&gt;*Jun 25 14:58:42.934: //-1//SERV:/AFW_Service_ReleaseExecEnv: Script Name = IVR cache = true calls = 1&lt;BR /&gt;*Jun 25 14:58:42.935: //85546//AFW_:/AFW_ExecEnv_UnSetRoot: Execenv = 0x7FB311B12408&lt;BR /&gt;*Jun 25 14:58:42.935: //-1//AFW_:/AFW_Process_UnLock: pProcess(0x7FB3187A6BD0)=1&lt;BR /&gt;*Jun 25 14:58:42.935: //-1//SCRI:/cam_sa_stopped: Instance: [] ExecEnv: 0x7FB311B12408&lt;BR /&gt;*Jun 25 14:58:42.935: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:42.935: //-1//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:42.935: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL&lt;BR /&gt;*Jun 25 14:58:47.449: //85553//MSM :/ms_cbf: (p 1w5d z)&lt;BR /&gt;*Jun 25 14:58:47.449: //85553//MSM :/ms_stop_play: mgdTstop at 1w5d (cause MS_STOP_COMPLETE)&lt;BR /&gt;*Jun 25 14:58:47.449: //85553//MSM :/ms_stop_play: Play Stopped at 1w5d&lt;BR /&gt;*Jun 25 14:58:47.450: //85553//MSM :/ms_stop_play: calling CBF for stream_id 1&lt;BR /&gt;*Jun 25 14:58:47.450: //85553//MSW :/msu_synth_ms_play_complete: context=0x7FB311AFF3C0, use_dynamic=1, dynamicElement=0x0,&lt;BR /&gt;cause=MS_STOP_COMPLETE, stream_id=1, duration=7306, rate=0 proto_code=0&lt;BR /&gt;*Jun 25 14:58:47.450: //85553//MSW :/msu_call_app: app_cbf=0x5636150C2560&lt;BR /&gt;Event = MSW_EV_SYNTHESIZER(1), Context 0x7FB31B2FA4E0, Type MSW_SYNTH_TYPE_SYNTHESIZE(2), Reason MSW_SYNTH_REASON_GENERIC_SUCCESS(18)&lt;BR /&gt;*Jun 25 14:58:47.450: //85553/8B1AFD728E53/AFW_:/AFW_Leg_MediaCallback:&lt;BR /&gt;*Jun 25 14:58:47.451: //-1//AFW_:/AFW_Leg_MediaCallback: pLeg=0x7FB31B2FA4E0, pModule=0x7FB311B149F0&lt;BR /&gt;*Jun 25 14:58:47.451: //-1//AFW_:/AFW_Event_New: Event ID: ev_media_done(200)&lt;BR /&gt;*Jun 25 14:58:47.451: //-1//MSW :/msw_mediadone_stats:&lt;BR /&gt;*Jun 25 14:58:47.451: //-1//MCM :MC6:/mc_delete: mc=0x7FB3197A4A68&lt;BR /&gt;*Jun 25 14:58:47.451: //-1//MCM :MC6:/mc_check_background_load: mc(0x7FB3197A4A68), mc-&amp;gt;eof=1&lt;BR /&gt;*Jun 25 14:58:47.451: //85553//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED&lt;BR /&gt;*Jun 25 14:58:47.452: //85553//AFW_:/AFW_Process_GetAppQEvent: Received&lt;BR /&gt;*Jun 25 14:58:47.452: //-1//AFW_:/AFW_Process_GetAppQEvent: Event[MSW_EV_SYNTHESIZER(200)] {&lt;BR /&gt;*Jun 25 14:58:47.452: //-1//AFW_:/AFW_Process_GetAppQEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:47.452: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:47.453: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:47.453: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:47.454: //-1//AFW_:/AFW_Process_GetAppQEvent: )&lt;BR /&gt;*Jun 25 14:58:47.454: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:47.455: //-1//AFW_:/AFW_Process_GetAppQEvent: )&lt;BR /&gt;*Jun 25 14:58:47.455: //-1//AFW_:/AFW_Process_GetAppQEvent: }&lt;BR /&gt;*Jun 25 14:58:47.455: //85553//AFW_:/AFW_M_TclModule_EventPreProcess:&lt;BR /&gt;*Jun 25 14:58:47.455: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:47.455: //85553//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:47.456: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:&lt;BR /&gt;*Jun 25 14:58:47.456: //85553//AFW_:/AFW_FSM_Drive: FSM no match for (SELECTOPT[2],ev_media_done[200])&lt;BR /&gt;*Jun 25 14:58:47.456: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:47.456: //85553//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:47.456: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:47.456: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:47.456: //-1//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:47.456: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL&lt;BR /&gt;*Jun 25 14:58:49.450: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:49.450: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:49.450: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DIGIT_END(20)] {&lt;BR /&gt;*Jun 25 14:58:49.450: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:49.451: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.451: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:49.451: //-1//SSIN:/AFW_SS_MapEvent: No mapping required&lt;BR /&gt;*Jun 25 14:58:49.451: //85553/8B1AFD728E53/AFW_:/AFW_M_Leg_EventPreProcess: Passing, not enabled.---&lt;BR /&gt;*Jun 25 14:58:49.452: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:49.452: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:49.452: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:49.452: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.452: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.453: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:49.453: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:49.453: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.454: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.454: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.454: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.454: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:49.455: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : DigitCollect&lt;BR /&gt;*Jun 25 14:58:49.455: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; DigitCollect_0x7FB31ED6EB70_0_1044314808&lt;BR /&gt;*Jun 25 14:58:49.455: //85553//Digi:/AFW_M_DigitCollect_Action:&lt;BR /&gt;*Jun 25 14:58:49.455: //85553//Digi:/act_DCRunning_Digit: : pLeg 85553 Digit T Tone Mode -1&lt;BR /&gt;*Jun 25 14:58:49.455: //85553/8B1AFD728E53/AFW_:/AFW_Leg_DigitReportDisable: Current: 0x2 Input: 0x1&lt;BR /&gt;*Jun 25 14:58:49.455: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: DigitCollect_0x7FB31ED6EB70_0_1044314808 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:49.455: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:49.456: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:49.456: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:49.456: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:49.456: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_REPORT_DIGITS_DONE(71)] {&lt;BR /&gt;*Jun 25 14:58:49.456: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:49.457: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.457: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:49.457: //-1//SSIN:/AFW_SS_MapEvent: No mapping required&lt;BR /&gt;*Jun 25 14:58:49.457: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:49.458: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:49.459: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:49.459: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.459: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.460: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.460: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.460: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:49.461: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : DigitCollect&lt;BR /&gt;*Jun 25 14:58:49.461: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; DigitCollect_0x7FB31ED6EB70_0_1044314808&lt;BR /&gt;*Jun 25 14:58:49.461: //85553//Digi:/AFW_M_DigitCollect_Action:&lt;BR /&gt;*Jun 25 14:58:49.461: //85553//Digi:/act_DCRunning_RDone: id=85553 Reporting disabled.&lt;BR /&gt;*Jun 25 14:58:49.461: //-1//Digi:/DigitCollect_Complete: DC_TIMEOUT. Digits=&lt;BR /&gt;*Jun 25 14:58:49.461: //85553//Digi:/DigitCollect_MLPPPostAdjust: Non MLPP call&lt;BR /&gt;*Jun 25 14:58:49.461: //-1//AFW_:/AFW_Event_New: Event ID: ev_collectdigits_done(267)&lt;BR /&gt;*Jun 25 14:58:49.461: //85553//AFW_:/AFW_Module_ReturnArgEv:&lt;BR /&gt;*Jun 25 14:58:49.462: //85553//AFW_:/AFW_Module_ReturnArgEv: Return List (remove=TRUE){LEG[85553 ][LEG_INCCONNECTED(5)][Cause(0)]}&lt;BR /&gt;*Jun 25 14:58:49.462: //85553/8B1AFD728E53/AFW_:/AFW_Object_RemoveListener:&lt;BR /&gt;*Jun 25 14:58:49.462: //85553//AFW_:/AFW_Module_UnListen: NumObjects: 0&lt;BR /&gt;*Jun 25 14:58:49.462: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: DigitCollect_0x7FB31ED6EB70_0_1044314808 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:49.462: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:49.462: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:49.463: //85553//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED&lt;BR /&gt;*Jun 25 14:58:49.463: //85553//AFW_:/AFW_Process_GetPriorityQEvent: Received&lt;BR /&gt;*Jun 25 14:58:49.463: //-1//AFW_:/AFW_Process_GetPriorityQEvent: Event[APP_EV_DIGITCOLLECT_DONE(267)] {&lt;BR /&gt;*Jun 25 14:58:49.463: //-1//AFW_:/AFW_Process_GetPriorityQEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:49.463: //-1//AFW_:/AFW_Process_GetPriorityQEvent: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:49.464: //-1//AFW_:/AFW_Process_GetPriorityQEvent: )&lt;BR /&gt;*Jun 25 14:58:49.464: //-1//AFW_:/AFW_Process_GetPriorityQEvent: }&lt;BR /&gt;*Jun 25 14:58:49.464: //85553//Digi:/AFW_M_DigitCollect_EventPreProcess:&lt;BR /&gt;*Jun 25 14:58:49.464: //85553//Digi:/DigitCollectEnd_UpdateStats:&lt;BR /&gt;*Jun 25 14:58:49.464: //85553//AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:49.465: //85553//AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:49.465: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:49.465: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (&lt;BR /&gt;*Jun 25 14:58:49.465: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.466: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:49.466: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:49.466: //85553//AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:49.466: //85553//AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule&lt;BR /&gt;*Jun 25 14:58:49.466: //85553/8B1AFD728E53/AFW_:/AFW_Object_AddListener: adding Module TclModule as listener&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//AFW_:/AFW_Object_RemoveListener:&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//AFW_:/AFW_Module_UnListen: NumObjects: 1&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(SELECTOPT[2],ev_collectdigits_done[267])---[act_Collected]------&lt;BR /&gt;*Jun 25 14:58:49.467: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;debug(act_Collected) Entering procedure&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:49.468:&lt;BR /&gt;*Jun 25 14:58:49.468: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;debug(act_Collected) Digitcollect is: ''&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:49.468:&lt;BR /&gt;*Jun 25 14:58:49.468: //85553//TCL :/tcl_InfotagObjCmd: infotag get evt_status&lt;BR /&gt;*Jun 25 14:58:49.468: //85553//TCL :/tcl_InfotagGetObjCmd: infotag get evt_status&lt;BR /&gt;*Jun 25 14:58:49.468: //85553//AFW_:/vtr_ev_status: argc 2 argindex 2&lt;BR /&gt;*Jun 25 14:58:49.469: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;(act_Collected) Collect status is 'cd_001' (lang=Turkish)&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:49.469:&lt;BR /&gt;*Jun 25 14:58:49.469: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;(act_Collected) Collect Timeout play prompt and transfer to operator&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:49.469:&lt;BR /&gt;*Jun 25 14:58:49.469: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;(act_Collected) Playing Turkish prompt&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:49.469:&lt;BR /&gt;*Jun 25 14:58:49.469: //85553//PACK:/tcl_MediaObjCmd: media play leg_incoming flash:Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.470: //85553//PACK:/tcl_MediaPlayObjCmd: play leg_incoming flash:Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.470: //85553//AFW_:/vtd_lg_incoming: argc 3&lt;BR /&gt;*Jun 25 14:58:49.470: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]&lt;BR /&gt;*Jun 25 14:58:49.470: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1&lt;BR /&gt;*Jun 25 14:58:49.470: //-1//DPM :DP15:/pc_mc_addToDynamicS: (1) flash:Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//DPM :DP15:/pc_mc_addToDynamicS: Doing : flash:Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//DPM :/mcTokenizerGetNext: savedcharptr=f endptrptr=flash:Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//DPM :DP15:/pc_mc_addToDynamicS: Token : flash:Transfer.au status 1&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//DPM :DP15:/pc_mc_addToDynamicS: du_IsNameURL() return TRUE&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//DPM :DP15:/dp_mcDQfromURL: file=flash:Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//MCM :/mc_createFromFileUrl: Getting a media content: name=Transfer.au&lt;BR /&gt;url=flash:Transfer.au&lt;BR /&gt;load fast, fetchtimeout=-1&lt;BR /&gt;*Jun 25 14:58:49.471: //-1//MCM :MC7:/mc_getFromUrlName: Transfer.au on ram&lt;BR /&gt;*Jun 25 14:58:49.472: //-1//MCM :/mc_createFromFileUrl: Found a good mc (0x7FB31ED87850), RefCount(1)&lt;BR /&gt;*Jun 25 14:58:49.472: //-1//DPM :DP15:/dp_mcDQfromURL: mc_createFromFileUrl OK&lt;BR /&gt;*Jun 25 14:58:49.472: //-1//DPM :/mcTokenizerGetNext: savedcharptr=^@ endptrptr=&lt;BR /&gt;*Jun 25 14:58:49.472: //85553//PACK:/Media_Play_Start:&lt;BR /&gt;*Jun 25 14:58:49.472: //85553//MSW :/msw_synth_get_stream_state: genericStream 0x7FB311AFF3B8 is in state MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:49.472: //-1//MSW :/msw_synth_start:&lt;BR /&gt;*Jun 25 14:58:49.472: msw_synth_start: Enter...&lt;BR /&gt;*Jun 25 14:58:49.472: //85553//MSW :/msw_synth_start: current_stream_id=2, content 0x0, dynamicS 0x7FB3195FE8D0, current_state=MSW_S_IDLE&lt;BR /&gt;*Jun 25 14:58:49.473: //-1//MSW :/msw_synth_start: msw_synth_start: p_mcDynamicS, We've been given a list of URLs to play.&lt;BR /&gt;*Jun 25 14:58:49.473: //-1//MSW :/msw_synth_start: p_mcDynamicQ is NOT empty&lt;BR /&gt;*Jun 25 14:58:49.473: //85553//MSW :/msu_synth_partial_play: Media Stream URL&lt;BR /&gt;*Jun 25 14:58:49.473: //85553//TCL :/tcl_FSMObjCmd: fsm setstate TRANSFERTOOP&lt;BR /&gt;*Jun 25 14:58:49.473: //85553//TCL :/tcl_FSMSetStateObjCmd: setstate setstate TRANSFERTOOP&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_FSM_Drive: ACTION END: -------------(TRANSFERTOOP[4])---------------&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Event_Free: MODULEDONEEVENT for a Module: DigitCollect_0x7FB31ED6EB70_0_1044314808&lt;BR /&gt;*Jun 25 14:58:49.475: //85553//AFW_:/AFW_Object_RemoveAllListener:&lt;BR /&gt;*Jun 25 14:58:49.475: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 2, CmdPending 1&lt;BR /&gt;*Jun 25 14:58:49.475: //-1//AFW_:HN3E3EFAB8:/AFW_M_Event_Free: ExecEnv objCount: 2&lt;BR /&gt;*Jun 25 14:58:49.475: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:49.475: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:49.475: //-1//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:49.475: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL&lt;BR /&gt;*Jun 25 14:58:49.476: //85553//MSM :LP:MS13:/ms_associateDone:&lt;BR /&gt;*Jun 25 14:58:49.476: //85553//MSM :/ms_asDone_buginf: callID=0x14E31, pVdb=0x7FB31179A8B0,&lt;BR /&gt;disposition=0, playFunc=0x563614EC3370,&lt;BR /&gt;codec=0x6=g711alaw, vad=0,&lt;BR /&gt;mediaType=3, streamAssocID=85554&lt;BR /&gt;*Jun 25 14:58:49.477: //-1//MCM :MR14:/mc_setup_reader_encaps: ENCAP SSRC is 0, mediaType is 3, random gen ssrc is 0x104A1&lt;BR /&gt;*Jun 25 14:58:49.477: //-1//MCM :MR14:/mc_setup_reader_encaps: SSRC: 0x104A1 SeqNum: 0x1CBD&lt;BR /&gt;*Jun 25 14:58:49.477: //85553//MSM :/ms_associateDone: First Buf Play at 1w5d of Transfer.au&lt;BR /&gt;*Jun 25 14:58:49.477: //85553//MSM :/ms_associateDone: 1w5d, Tstart(ply: iSndDly 0)&lt;BR /&gt;*Jun 25 14:58:49.478: //85553//MSM :/ms_handle_stream_timer: &amp;gt;&amp;gt;ms_start_play()&lt;BR /&gt;*Jun 25 14:58:49.478: //85553//MSM :/ms_start_play: 1w5d, Tstart(ply: i_dly 4)&lt;BR /&gt;*Jun 25 14:58:52.479: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:52.479: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received&lt;BR /&gt;*Jun 25 14:58:52.479: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECTED(22)] {&lt;BR /&gt;*Jun 25 14:58:52.479: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:52.480: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]&lt;BR /&gt;*Jun 25 14:58:52.480: //-1//AFW_:/AFW_Process_GetCcqEvent: }&lt;BR /&gt;*Jun 25 14:58:52.480: //85553/8B1AFD728E53/SSIN:/AFW_SS_MapEvent:&lt;BR /&gt;*Jun 25 14:58:52.480: //-1//SSIN:/AFW_SS_SIP_MapEvent:&lt;BR /&gt;*Jun 25 14:58:52.480: //-1//MSW :/msw_synth_bargein:&lt;BR /&gt;*Jun 25 14:58:52.480: msw_synth_bargein: genericStream=0x7FB311AFF3B8,&lt;BR /&gt;reason=MSW_REASON_DISCONNECTED, current_state=MSW_S_PLAYING&lt;BR /&gt;*Jun 25 14:58:52.480: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...&lt;BR /&gt;*Jun 25 14:58:52.481: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF3B8,&lt;BR /&gt;mediaStream=0x7FB3197A2EF0, rtspStream=0x7FB311AFFB78&lt;BR /&gt;reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_PLAYING&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSW :/msw_synth_stop: Found gccb for callID [85553]&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSW :/msw_synth_stop: msw_synth_stop: call ms_stop_play()...&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSM :/ms_stop_play: mgdTstop at 1w5d (cause MS_STOP_DISCONNECTED)&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSM :/ms_stop_play: Play Stopped at 1w5d&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSM :/ms_stop_play: calling CBF for stream_id 2&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSW :/msu_synth_ms_play_complete: context=0x7FB311AFF3C0, use_dynamic=1, dynamicElement=0x7FB30AD1FAE0,&lt;BR /&gt;cause=MS_STOP_DISCONNECTED, stream_id=2, duration=2000, rate=0 proto_code=0&lt;BR /&gt;*Jun 25 14:58:52.481: //85553//MSW :/msu_synth_ms_play_complete: Ignoring: cur. stream=3, resp. stream=2&lt;BR /&gt;*Jun 25 14:58:52.482: //85553//MSW :/msw_synth_stop: msw_synth_stop: call reg_invoke_dp_delete_mcDynamicS()&lt;BR /&gt;*Jun 25 14:58:52.482: //-1//MCM :MC7:/mc_delete: mc=0x7FB31ED87850&lt;BR /&gt;*Jun 25 14:58:52.482: //-1//MCM :MC7:/mc_check_background_load: mc(0x7FB31ED87850), mc-&amp;gt;eof=1&lt;BR /&gt;*Jun 25 14:58:52.482: //85553/8B1AFD728E53/AFW_:/AFW_Leg_MediaCallback:&lt;BR /&gt;*Jun 25 14:58:52.482: //-1//AFW_:/AFW_Leg_MediaCallback: pLeg=0x7FB31B2FA4E0, pModule=0x7FB311B149F0&lt;BR /&gt;*Jun 25 14:58:52.482: //-1//AFW_:/AFW_Event_New: Event ID: ev_media_done(200)&lt;BR /&gt;*Jun 25 14:58:52.482: //-1//MSW :/msw_mediadone_stats:&lt;BR /&gt;*Jun 25 14:58:52.482: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:&lt;BR /&gt;*Jun 25 14:58:52.482: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START&lt;BR /&gt;*Jun 25 14:58:52.483: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:52.483: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:52.483: //-1//AFW_:/AFW_M_Object_ShowListeners: )&lt;BR /&gt;*Jun 25 14:58:52.483: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END&lt;BR /&gt;*Jun 25 14:58:52.483: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(TRANSFERTOOP[4],ev_disconnected[22])---[act_Cleanup]------&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//TCL :/tcl_PutsObjCmd:&lt;BR /&gt;(act_Cleanup)Closing call&lt;/P&gt;
&lt;P&gt;*Jun 25 14:58:52.484:&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//TCL :/tcl_CallObjCmd: call close&lt;BR /&gt;*Jun 25 14:58:52.484: //85553//TCL :/tcl_CallCloseObjCmd: close&lt;BR /&gt;*Jun 25 14:58:52.484: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 1&lt;BR /&gt;*Jun 25 14:58:52.485: //-1//AFW_:/AFW_ExecEnv_CallClose: Terminating ExecEnv's root module&lt;BR /&gt;*Jun 25 14:58:52.485: //85553//AFW_:/AFW_Module_Terminate: Terminating Module: TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:52.485: //85553//AFW_:/AFW_M_TclModule_Terminate: Module is in the state: ACTIVE&lt;BR /&gt;*Jun 25 14:58:52.485: //85553//AFW_:/AFW_TclModule_Cleaner: lastFailureCause 16&lt;BR /&gt;*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85553&lt;BR /&gt;*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85553, Cause 16&lt;BR /&gt;*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Disconnect: Setting hunt stats for the disconnecting leg-85553&lt;BR /&gt;*Jun 25 14:58:52.485: //85553//MEDI:/C_MediaFork_Close: Media Fork Not avtive on Leg [85553]&lt;BR /&gt;*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID E type 2&lt;BR /&gt;*Jun 25 14:58:52.486: //85553//AFW_:/AFW_FSM_Drive: ACTION END: -------------(TRANSFERTOOP[4])---------------&lt;BR /&gt;*Jun 25 14:58:52.486: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:52.486: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:52.486: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:52.486: //85553//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED&lt;BR /&gt;*Jun 25 14:58:52.486: //85553//AFW_:/AFW_Process_GetAppQEvent: Received&lt;BR /&gt;*Jun 25 14:58:52.486: //-1//AFW_:/AFW_Process_GetAppQEvent: Event[MSW_EV_SYNTHESIZER(200)] {&lt;BR /&gt;*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: EXECENV[0x7FB311B12290][IVR]&lt;BR /&gt;*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[TclModule_0x7FB311B149F0_0_1044314792] (&lt;BR /&gt;*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85553][LEG_INCDISCONNECTING(6)][Cause(16)]&lt;BR /&gt;*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: )&lt;BR /&gt;*Jun 25 14:58:52.488: //-1//AFW_:/AFW_Process_GetAppQEvent: }&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_TclModule_EventPreProcess:&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---&amp;gt; TclModule_0x7FB311B149F0_0_1044314792&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_TclModule_Action:&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_TclModule_Action: Module is Terminating&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---&amp;gt; NULL&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:52.488: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1&lt;BR /&gt;*Jun 25 14:58:52.489: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)&lt;BR /&gt;*Jun 25 14:58:52.489: //-1//AFW_:/AFW_M_Event_Free:&lt;BR /&gt;*Jun 25 14:58:52.489: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 19:19:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879342#M2758</guid>
      <dc:creator>KY_</dc:creator>
      <dc:date>2025-09-05T19:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879745#M2759</link>
      <description>Hi Kemal,&lt;BR /&gt;From the logs we can see the codec negotiated is "g711alaw" and don't see any digits received.&lt;BR /&gt;is media prompts played ? did you try to press any digits?&lt;BR /&gt;what issue you are facing here?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raghavendra</description>
      <pubDate>Wed, 26 Jun 2019 06:20:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879745#M2759</guid>
      <dc:creator>Raghavendra G V</dc:creator>
      <dc:date>2019-06-26T06:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879747#M2760</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed&amp;nbsp; tcl is not play ivr promt&amp;nbsp; you are correct call not involke but i can see call is arrive gw when i look at debug ccsip messages Can you please check it for me ?&lt;/P&gt;&lt;P&gt;Normaly calls come in gw but promt is not play.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 06:27:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879747#M2760</guid>
      <dc:creator>KY_</dc:creator>
      <dc:date>2019-06-26T06:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: TCL ivr convert pri to sip trunk.</title>
      <link>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879769#M2761</link>
      <description>can you check audio file codec?, since you configured the dialpeer with "g711alaw" your audio file codec should be "g711alaw"&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raghavendra</description>
      <pubDate>Wed, 26 Jun 2019 07:15:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-ivr-convert-pri-to-sip-trunk/m-p/3879769#M2761</guid>
      <dc:creator>Raghavendra G V</dc:creator>
      <dc:date>2019-06-26T07:15:37Z</dc:date>
    </item>
  </channel>
</rss>

