cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3040
Views
0
Helpful
7
Replies

TCL ivr convert pri to sip trunk.

KY_
Level 4
Level 4

Hi Team

 

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.

Can you please advice that my e xsiting tcl will work on sip trunk.

currect call flow...

pri...E1... 2821....H323... gw... CUCM... ip phone.

New call flow will be like that...


sip trunk....CUBE 4431....sip trunk....CUCM...ip phone....

 

I have uploaded my tcl script attached file...

#TCL IVR Script, accepts calls and plays welcome AA, if busy or no answer, IVR responds
#with an option to be transferred to operator or to enter a new extension.
#English language selection with 9.

proc init { } {
global param
global pilotno
global alerttimeout
global langselect
global digitcollect

set pilotno 4400
set alerttimeout 12
set langselect "Turkish"
set digitcollect ""

set param(interruptPrompt) true
set param(abortKey) *
set param(terminationKey) #

puts "\n(init) Starting LAND3.tcl Cisco\n"

if { [infotag get cfg_avpair_exists cm-pilot] } {
set pilotno [infotag get cfg_avpair cm-pilot]
} else {
puts "\ndebug(init) Critical problem found, no Pilot number defined!\n";
}

if { [infotag get cfg_avpair_exists alert-time] } {
set alerttimeout [infotag get cfg_avpair alert-time]
} else {
puts "\ndebug(init) Critical problem found, no Alert-Timeout defined!\n";
}

puts "\ndebug(init)Language selected currently is '$langselect'\n";
puts "\ndebug(init)Digitcollect currently is '$digitcollect'\n";

puts "\ndebug(init)Finished Initialisation, CMpilot is $pilotno, Alerttime is $alerttimeout\n"
}

proc act_Setup { } {
global alerttimeout

global langselect
global digitcollect
global weekdays
global hour
global minute
global param

set langselect "Turkish"
set digitcollect ""
set weekdays [clock format [clock seconds] -format "%w"]
set hour [clock format [clock seconds] -format "%H"]
set minute [clock format [clock seconds] -format "%M"]

puts "\ndebug(act_Setup)Language selected currently is '$langselect'\n";
puts "\ndebug(act_Setup)Digitcollect currently is '$digitcollect'\n";
puts "\n(act_Setup) Entering procedure\n"

if { [infotag get leg_isdid] } {
leg proceeding leg_incoming
leg progress leg_incoming
leg connect leg_incoming

if { $weekdays >= 1 && $weekdays <= 5 } {

if { $hour == "07" } {
media play leg_incoming flash:TUR_Gunaydin_8_00_OncesiMesaiDisi.au
} elseif { $hour >= "08" && $hour < "12" } {
media play leg_incoming flash:TUR_GunaydinMesaiIci.au
} elseif { $hour >= "12" && $hour < "17" } {
media play leg_incoming flash:GoodmorningMesaiIci.au
} elseif { $hour >= "17" && $hour < "18" } {
media play leg_incoming flash:welcome2.au
} else {
media play leg_incoming flash:GoodmorningMesaiDisi.au
}
}
if { $weekdays == 6 } {
if { $hour >= "07" && $hour < "09" } {
media play leg_incoming flash:TUR_GunaydinMesaiIci.au
} elseif { $hour >= "09" && $hour < "12" } {
media play leg_incoming flash:TUR_GunaydinMesaiIci.au
} elseif { $hour >= "12" && $hour < "17" } {
media play leg_incoming flash:welcome2.au
} else {
media play leg_incoming flash:GoodmorningMesaiDisi.au
}
}
if { $weekdays == 0 } {
if { $hour >= "07" && $hour < "11" } {
media play leg_incoming flash:GoodmorningMesaiDisi.au
} elseif { $hour >= "11" && $hour < "17" } {
media play leg_incoming flash:GoodmorningMesaiDisi.au
} else {
media play leg_incoming flash:GoodmorningMesaiDisi.au
}
}

set param(interDigitTimeout) 3
set param(initialDigitTimeout) 2
set param(maxDigits) 4
set param(interruptPrompt) true
set param(abortKey) *
set param(terminationKey) #

leg collectdigits leg_incoming param
fsm setstate SELECTOPT
} else {
call close
}
}

proc act_Collected { } {
global delay
global pilotno
global langselect
global digitcollect
global alerttimeout

puts "\ndebug(act_Collected) Entering procedure\n";
puts "\ndebug(act_Collected) Digitcollect is: '$digitcollect'\n"

set status [infotag get evt_status]
puts "\n(act_Collected) Collect status is '$status' (lang=$langselect)\n"

if { $status == "cd_001"} {
puts "\n(act_Collected) Collect Timeout play prompt and transfer to operator\n"
if { $langselect == "Turkish" } {
puts "\n(act_Collected) Playing Turkish prompt\n"
media play leg_incoming flash:Transfer.au
}
if { $langselect == "English" } {
puts "\n(act_Collected) Playing English prompt\n"
media play leg_incoming flash:Transfer.au
}
fsm setstate TRANSFERTOOP
}

if { $status == "cd_005" } {
set choice [infotag get evt_dcdigits]
puts "\n(act_Collected) Digits entered is '$choice'\n";

if { $choice == "0" } {
puts "\n(act_Collected) Transferring to operator ($pilotno)\n";
leg setup "4400" callInfo leg_incoming
media play leg_incoming flash:Transfer.au
} elseif { $choice != "0" && $choice == "1" } {
leg setup "4400" callInfo leg_incoming
media play leg_incoming flash:Transfer.au
} elseif { $choice != "0" && $choice != "1" && $choice == "2" } {
leg setup "4400" callInfo leg_incoming
media play leg_incoming flash:Transfer.au
} elseif { $choice != "0" && $choice != "1" && $choice != "2" && $choice == "3"} {
leg setup "4400" callInfo leg_incoming
media play leg_incoming flash:Transfer.au
} elseif { $choice != "0" && $choice != "1" && $choice != "2" && $choice != "3" && $choice == "4"} {
leg setup "4400" callInfo leg_incoming
media play leg_incoming flash:Transfer.au
} elseif { $choice != "0" && $choice != "1" && $choice != "2" && $choice != "3" && $choice != "4" && $choice == "9"} {
leg setup "4400" callInfo leg_incoming
media play leg_incoming flash:Transfer.au
} elseif { $choice != "0" && $choice != "1" && $choice != "2" && $choice != "3" && $choice != "4" && $choice != "9" } {
leg setup $choice callInfo leg_incoming
} else {
puts "\n\n\t\t **** NO acme-sales or acme-service numbers configured from CLI"
fsm setstate CLEANUP
return
}
}
}

proc act_Cleanup { } {
puts "\n(act_Cleanup)Closing call\n"
call close
}

proc optransfer { } {
global pilotno

leg setup $pilotno callInfo leg_incoming
playtone leg_incoming tn_ringback
puts "\n(optransfer)Transfer in progress\n"
}

proc act_InvalidExt { } {
global langselect
global pilotno

puts "\n(act_InvalidExt) Entering Procedure\n"
set status [infotag get evt_status]
puts "\nDEBUG STATUS: $status\n"
playtone leg_incoming tn_none

if { $status != "ls_000"} {
puts "\n(act_InvalidExt) Status is not 000. (Status=$status)\n"

if { $langselect == "Turkish" } {
puts "\n(act_InvalidExt) Playing Turkish prompt\n"
media play leg_incoming flash:Transfer.au
}

if { $langselect == "English" } {
puts "\n(act_InvalidExt) Playing English prompt\n"
media play leg_incoming flash:Transfer.au
}

leg setup $pilotno callInfo leg_incoming
puts "\n(act_InvalidExt) Cannot connect so Xfer to OP ($pilotno)\n"
}
}

proc donothing { } {
puts "\n(donothing) Cannot end up here\n"
}

init
set delay 5

#----------------------------------
# State Machine
#----------------------------------

set fsm(any_state,ev_disconnected) "act_Cleanup same_state"
set fsm(CALL_INIT,ev_setup_indication) "act_Setup same_state"
set fsm(SELECTOPT,ev_collectdigits_done) "act_Collected same_state"
set fsm(PLACECALL,ev_leg_timer) "act_Cleanup same_state"
set fsm(CLEANUP,ev_leg_timer) "act_Cleanup same_state"
set fsm(TRANSFERTOOP,ev_media_done) "optransfer same_state"
set fsm(TRANSFERTOEXT,ev_collectdigits_done) "exttransfer same_state"
set fsm(TRANSFERTOEXT,ev_setup_done) "act_InvalidExt same_state"

fsm define fsm CALL_INIT
Regards

7 Replies 7

yawming
Cisco Employee
Cisco Employee

Script it self maybe ok but your IOS config for Tcl service will be different 

 

example

 

dial-peer voice 7776 voip
service to_bacd2
destination-pattern 7776
session protocol sipv2
session target ipv4:xxx.xxx.xxx.xxx
incoming called-number 7776
dtmf-relay h245-alphanumeric
codec g711ulaw
no vad

 

 

of cause there are something else need to be changed too.

Hi Yawming

 

My ios config will be change only fo incoming call leg, my current incoming dp is pots like that

 

 

dial-peer voice 200 pots
service ivr
incoming called-number 798888
no vad

 

new  incoming dp wil be like that:   My  tcl ivr is working 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 ?  we will  replace itsp connection sip trunk instead of pri.

 

dial-peer voice 200 voip
service ivr
session protocol sipv2
incoming called-number 798888
codec g711ulaw
no vad

 

 

Regards

Hi,

 

As Yawming suggested your script is ok,make sure dtmf-relay and codec configured as below.

 

dial-peer voice 200 voip
service ivr
session protocol sipv2
incoming called-number 798888
dtmf-relay rtp-nte
codec g711ulaw
no vad

 

Thanks,

Raghavendra

Hi 

 

I have made incoming test call but tcl script is not involving calls.

 

It does not work with this dp.

I also collected debug voip ccapi and debug ccsip messages with debug debug voip app on another files.

 

called number:08505224610

callling number: 05342992223

 

dial-peer voice 4610 voip
service ivr
session protocol sipv2
incoming called-number 08505224610
codec g711alaw
voice-class sip bind control source-interface GigabitEthernet0/0/1
voice-class sip bind media source-interface GigabitEthernet0/0/1
dtmf-relay rtp-nte
no vad

 

********* Log*****

 


Console logging: level debugging, 12954 messages logged, xml disabled,
filtering disabled
Monitor logging: level debugging, 69 messages logged, xml disabled,
filtering disabled
Buffer logging: level debugging, 8544 messages logged, xml disabled,
filtering disabled
Exception Logging: size (4096 bytes)
Count and timestamp logging messages: disabled
Persistent logging: disabled

No active filter modules.

Trap logging: level informational, 135 message lines logged
Logging Source-Interface: VRF Name:

Log Buffer (1000000000 bytes):

*Jun 25 14:58:23.415: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:23.415: //85546/79C82D428E4A/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:23.415: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECTED(22)] {
*Jun 25 14:58:23.415: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12408][IVR]
*Jun 25 14:58:23.416: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85546][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:23.416: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:23.416: //85546/79C82D428E4A/SSIN:/AFW_SS_MapEvent:
*Jun 25 14:58:23.416: //-1//SSIN:/AFW_SS_SIP_MapEvent:
*Jun 25 14:58:23.416: //-1//MSW :/msw_synth_bargein:
*Jun 25 14:58:23.416: msw_synth_bargein: genericStream=0x7FB311AFF1E8,
reason=MSW_REASON_DISCONNECTED, current_state=MSW_S_PLAYING
*Jun 25 14:58:23.416: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...
*Jun 25 14:58:23.417: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF1E8,
mediaStream=0x7FB31EDC4F18, rtspStream=0x7FB311AFFB58
reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_PLAYING
*Jun 25 14:58:23.417: //85546//MSW :/msw_synth_stop: Found gccb for callID [85546]
*Jun 25 14:58:23.417: //85546//MSW :/msw_synth_stop: msw_synth_stop: call ms_stop_play()...
*Jun 25 14:58:23.417: //85546//MSM :/ms_stop_play: mgdTstop at 1w5d (cause MS_STOP_DISCONNECTED)
*Jun 25 14:58:23.417: //85546//MSM :/ms_stop_play: Play Stopped at 1w5d
*Jun 25 14:58:23.417: //85546//MSM :/ms_stop_play: calling CBF for stream_id 2
*Jun 25 14:58:23.417: //85546//MSW :/msu_synth_ms_play_complete: context=0x7FB311AFF1F0, use_dynamic=1, dynamicElement=0x7FB319EB38E8,
cause=MS_STOP_DISCONNECTED, stream_id=2, duration=1986, rate=0 proto_code=0
*Jun 25 14:58:23.417: //85546//MSW :/msu_synth_ms_play_complete: Ignoring: cur. stream=3, resp. stream=2
*Jun 25 14:58:23.418: //85546//MSW :/msw_synth_stop: msw_synth_stop: call reg_invoke_dp_delete_mcDynamicS()
*Jun 25 14:58:23.418: //-1//MCM :MC7:/mc_delete: mc=0x7FB31ED87850
*Jun 25 14:58:23.418: //-1//MCM :MC7:/mc_check_background_load: mc(0x7FB31ED87850), mc->eof=1
*Jun 25 14:58:23.418: //85546/79C82D428E4A/AFW_:/AFW_Leg_MediaCallback:
*Jun 25 14:58:23.418: //-1//AFW_:/AFW_Leg_MediaCallback: pLeg=0x7FB31B2F8DE0, pModule=0x7FB311B147C8
*Jun 25 14:58:23.418: //-1//AFW_:/AFW_Event_New: Event ID: ev_media_done(200)
*Jun 25 14:58:23.418: //-1//MSW :/msw_mediadone_stats:
*Jun 25 14:58:23.418: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:23.418: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:23.418: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B147C8_0_1044285728] (
*Jun 25 14:58:23.419: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85546][LEG_INCCONNECTED(5)][Cause(16)]
*Jun 25 14:58:23.419: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:23.419: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:23.419: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule
*Jun 25 14:58:23.419: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B147C8_0_1044285728
*Jun 25 14:58:23.419: //85546//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:23.420: //85546//AFW_:/AFW_TclModule_DefaultEvHandling:
*Jun 25 14:58:23.420: //85546//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(TRANSFERTOOP[4],ev_disconnected[22])---[act_Cleanup]------
*Jun 25 14:58:23.420: //85546//TCL :/tcl_PutsObjCmd:
(act_Cleanup)Closing call

*Jun 25 14:58:23.420:
*Jun 25 14:58:23.420: //85546//TCL :/tcl_CallObjCmd: call close
*Jun 25 14:58:23.420: //85546//TCL :/tcl_CallCloseObjCmd: close
*Jun 25 14:58:23.420: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 1
*Jun 25 14:58:23.420: //-1//AFW_:/AFW_ExecEnv_CallClose: Terminating ExecEnv's root module
*Jun 25 14:58:23.421: //85546//AFW_:/AFW_Module_Terminate: Terminating Module: TclModule_0x7FB311B147C8_0_1044285728
*Jun 25 14:58:23.421: //85546//AFW_:/AFW_M_TclModule_Terminate: Module is in the state: ACTIVE
*Jun 25 14:58:23.421: //85546//AFW_:/AFW_TclModule_Cleaner: lastFailureCause 16
*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85546
*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85546, Cause 16
*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_Disconnect: Setting hunt stats for the disconnecting leg-85546
*Jun 25 14:58:23.421: //85546//MEDI:/C_MediaFork_Close: Media Fork Not avtive on Leg [85546]
*Jun 25 14:58:23.421: //85546/79C82D428E4A/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID D type 2
*Jun 25 14:58:23.421: //85546//AFW_:/AFW_FSM_Drive: ACTION END: -------------(TRANSFERTOOP[4])---------------
*Jun 25 14:58:23.422: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B147C8_0_1044285728 ---> NULL
*Jun 25 14:58:23.422: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:23.422: //85546//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:23.422: //85546//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED
*Jun 25 14:58:23.422: //85546//AFW_:/AFW_Process_GetAppQEvent: Received
*Jun 25 14:58:23.422: //-1//AFW_:/AFW_Process_GetAppQEvent: Event[MSW_EV_SYNTHESIZER(200)] {
*Jun 25 14:58:23.422: //-1//AFW_:/AFW_Process_GetAppQEvent: EXECENV[0x7FB311B12408][IVR]
*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[TclModule_0x7FB311B147C8_0_1044285728] (
*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85546][LEG_INCDISCONNECTING(6)][Cause(16)]
*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: )
*Jun 25 14:58:23.423: //-1//AFW_:/AFW_Process_GetAppQEvent: }
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_TclModule_EventPreProcess:
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B147C8_0_1044285728
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_TclModule_Action: Module is Terminating
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B147C8_0_1044285728 ---> NULL
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:23.424: //85546//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:23.424: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:23.424: //-1//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:23.424: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL
*Jun 25 14:58:30.862: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:30.862: //85542/7297824F8E44/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:30.862: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECT_DONE(23)] {
*Jun 25 14:58:30.862: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:30.863: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85542][LEG_INCDISCONNECTING(6)][Cause(16)]
*Jun 25 14:58:30.863: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:30.863: //-1//SSIN:/AFW_SS_MapEvent: No mapping required
*Jun 25 14:58:30.863: //85542/7297824F8E44/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:30.863: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:30.863: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B145A0_0_1044273666] (
*Jun 25 14:58:30.864: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85542][LEG_DISCONNECTED(12)][Cause(16)]
*Jun 25 14:58:30.864: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:30.864: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:30.864: //85542/7297824F8E44/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule
*Jun 25 14:58:30.864: //85542/7297824F8E44/AFW_:/AFW_Object_RemoveListener:
*Jun 25 14:58:30.864: //85542//AFW_:/AFW_Module_UnListen: NumObjects: 0
*Jun 25 14:58:30.865: //85542//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B145A0_0_1044273666
*Jun 25 14:58:30.865: //85542//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:30.865: //85542//AFW_:/AFW_M_TclModule_Action: Module is Terminating
*Jun 25 14:58:30.865: //-1//AFW_:/AFW_Event_New: Event ID: ev_module_done(278)
*Jun 25 14:58:30.865: //85542//AFW_:/AFW_TclModule_ReturnIfDone: Sending Out APP_EV_TCLMODULE_DONE event
*Jun 25 14:58:30.865: //85542//AFW_:/AFW_Module_ReturnArgEv:
*Jun 25 14:58:30.865: //85542//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B145A0_0_1044273666 ---> NULL
*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:30.865: //85542/7297824F8E44/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_M_Event_Free: CC_EV_CALL_DISCONNECT_DONE for a Leg: LEG_85542
*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_Object_RemoveAllListener:
*Jun 25 14:58:30.866: //85542//AFW_:/AFW_ExecEnv_DecrNPendingCmd: PendingCmdCount: 0
*Jun 25 14:58:30.866: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 1, CmdPending 0
*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_M_Event_Free: ExecEnv objCount: 1
*Jun 25 14:58:30.866: //85542/7297824F8E44/AFW_:/AFW_M_Leg_Free:
*Jun 25 14:58:30.866: //85542//MSW :/msw_destroy:
*Jun 25 14:58:30.866: //-1//MSW :/msw_stop: genericStream=0x7FB311AFF018,
reason=MSW_REASON_DISCONNECTED
*Jun 25 14:58:30.866: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...
*Jun 25 14:58:30.867: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF018,
mediaStream=0x7FB31A6C2608, rtspStream=0x7FB311AFFBD8
reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:30.867: //85542//MSW :/msw_synth_stop: Stream not currently active
*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF018,
mediaStream=0x7FB3195E7A20, rtspStream=0x7FB311AFFBE8
reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE
*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: Stream not currently active
*Jun 25 14:58:30.867: //-1//MSW :/msw_recog_stop:
*Jun 25 14:58:30.867: msw_recog_stop: genericStream=0x7FB311AFF018,
mrcpStream=0x7FB311AFFCE8
reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:30.867: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...
*Jun 25 14:58:30.867: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF018,
mediaStream=0x7FB31A6C2608, rtspStream=0x7FB311AFFBD8
reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:30.867: //85542//MSW :/msw_synth_stop: Stream not currently active
*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF018,
mediaStream=0x7FB3195E7A20, rtspStream=0x7FB311AFFBE8
reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE
*Jun 25 14:58:30.867: //-1//MSW :/msw_recrd_stop: Stream not currently active
*Jun 25 14:58:30.868: //-1//MSW :/msw_recog_stop:
*Jun 25 14:58:30.868: msw_recog_stop: genericStream=0x7FB311AFF018,
mrcpStream=0x7FB311AFFCE8
reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:30.868: //85542/7297824F8E44/AFW_:/AFW_M_Leg_Free: LEG[85542 ][LEG_DISCONNECTED(12)][Cause(16)]
*Jun 25 14:58:30.868: //85542/7297824F8E44/AFW_:/decrementDialPeerCallStats: Decrementing call-stat to [1], dial-peer [4610]
*Jun 25 14:58:30.868: //85542//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 0
*Jun 25 14:58:30.868: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 3
*Jun 25 14:58:30.868: //85542//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED
*Jun 25 14:58:30.868: //85542//AFW_:/AFW_Process_GetPriorityQEvent: Received
*Jun 25 14:58:30.868: //-1//AFW_:/AFW_Process_GetPriorityQEvent: Event[APP_EV_TCLMODULE_DONE(278)] {
*Jun 25 14:58:30.868: //-1//AFW_:/AFW_Process_GetPriorityQEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:30.869: //-1//AFW_:/AFW_Process_GetPriorityQEvent: MOD[TclModule_0x7FB311B145A0_0_1044273666] (
*Jun 25 14:58:30.869: //-1//AFW_:/AFW_Process_GetPriorityQEvent: )
*Jun 25 14:58:30.869: //-1//AFW_:/AFW_Process_GetPriorityQEvent: }
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_TclModule_EventPreProcess:
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_M_Event_Free: MODULEDONEEVENT for a Module: TclModule_0x7FB311B145A0_0_1044273666
*Jun 25 14:58:30.870: //85542//AFW_:/AFW_Object_RemoveAllListener:
*Jun 25 14:58:30.870: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 0, CmdPending 0
*Jun 25 14:58:30.870: //-1//AFW_:HN3E3E5A02:/AFW_M_Event_Free: ExecEnv objCount: 0
*Jun 25 14:58:30.870: //-1//SERV:/AFW_Service_ReleaseExecEnv: Script Name = IVR cache = true calls = 1
*Jun 25 14:58:30.871: //85542//AFW_:/AFW_ExecEnv_UnSetRoot: Execenv = 0x7FB311B12290
*Jun 25 14:58:30.871: //-1//AFW_:/AFW_Process_UnLock: pProcess(0x7FB3187A6BD0)=1
*Jun 25 14:58:30.871: //-1//SCRI:/cam_sa_stopped: Instance: [] ExecEnv: 0x7FB311B12290
*Jun 25 14:58:30.871: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:30.871: //-1//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:30.871: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL
*Jun 25 14:58:36.480: //-1//SERV:/AFW_Service_CCInterface: Received Event 27 for service IVR modulehandle NULL
*Jun 25 14:58:36.480: //-1//SERV:/AFW_Service_GetExecEnv: Script Name = IVR
*Jun 25 14:58:36.480: //-1//SERV:/AFW_Service_GetExecEnv: Using Cached ExecEnv
*Jun 25 14:58:36.480: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_SetRoot: Execenv = 0x7FB311B12290
*Jun 25 14:58:36.480: //-1//AFW_:/AFW_M_TclModule_NewDup:
*Jun 25 14:58:36.480: //-1//AFW_:HN3E3EE4BE:/AFW_M_TclModule_Free: MOD[TclModule_0x7FB311B145A0_0_1044273666] ( )
*Jun 25 14:58:36.480: //-1//AFW_:/AFW_M_FSM_Free:
*Jun 25 14:58:36.481: //-1//AFW_:/AFW_Process_Lock: pProcess(0x7FB3187A6BD0)=2
*Jun 25 14:58:36.481: //-1//AFW_:LP:EE7FB311B12290000:HN3E3EFAA8:/AFW_M_Object_SetExecEnv: Inc module TclModule(0x7FB311B149F0). ObjCount: 1, CmdPending 0
*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_RestoreDataBackup: Restore DataArea from Script
*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_RestoreDataBackup: Restore TokenTable from Script
*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_Initiate: Execenv = 0x7FB311B12290
*Jun 25 14:58:36.481: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_SetCallCorID:
*Jun 25 14:58:36.481: CallCorID is ^K^Z}r^V^P^Qi^NSjU^PJ^X8
*Jun 25 14:58:36.481: //-1//AFW_:/AFW_Leg_New:
*Jun 25 14:58:36.482: //85553//AFW_:/AFW_M_Leg_SetExecEnv:
*Jun 25 14:58:36.482: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_IncrPendingCmd: PendingCmdCount: 1
*Jun 25 14:58:36.482: //-1//AFW_:LP:EE7FB311B12290000:LG85553:/AFW_M_Object_SetExecEnv: Inc object 0x7FB31B2FA4E0. ObjCount: 2, CmdPending 1
*Jun 25 14:58:36.482: //85553//AFW_:/AFW_Object_AddListener: adding Module TclModule as listener
*Jun 25 14:58:36.482: //85553//AFW_:/AFW_M_Leg_GetHandle: Leg handle: LEG_85553
*Jun 25 14:58:36.482: //-1//AFW_:EE7FB311B12290000:/AFW_ExecEnv_AssignCall: Execenv = 0x7FB311B12290, Leg = 85553, Peer_Tag = 4610
*Jun 25 14:58:36.482: //85553//AFW_:/AFW_ExecEnv_SetCallCorID:
*Jun 25 14:58:36.482: CallCorID is ^K^Z}r^V^P^Qi^NSjU^PJ^X8
*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:36.483: //85553//AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_SETUP_IND(37)] {
*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:36.483: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INIT(0)][Cause(0)]
*Jun 25 14:58:36.484: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:36.484: //85553//SSIN:/AFW_SS_MapEvent:
*Jun 25 14:58:36.484: //-1//SSIN:/AFW_SS_SIP_MapEvent:
*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID E type 0
*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/incrementIncomingDialPeerCallStats: Incrementing call-stat to [2] for dial-peer [4610]
*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:36.484: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:36.485: //-1//AFW_:/AFW_M_Object_ShowListeners:
*Jun 25 14:58:36.485: //85553//AFW_:/AFW_M_Module_GetHandle: Module handle: TclModule_0x7FB311B149F0_0_1044314792MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:36.485: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCINIT(1)][Cause(0)]
*Jun 25 14:58:36.485: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:36.485: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule
*Jun 25 14:58:36.486: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---> TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:36.486: //85553//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:36.486: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:
*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Leg_CheckIncomingCallBlock:
*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Leg_SettlementValidateCall: target=, tokenp=0x0, pool tag=0
*Jun 25 14:58:36.486: //85553/8B1AFD728E53/AFW_:/AFW_Leg_IncomingTranslate:
*Jun 25 14:58:36.486: //-1//AFW_:/AFW_Leg_IncomingTranslate: Tag(4610) calling[05342992223] redirect[] called[08505224610]
*Jun 25 14:58:36.486: //85553//XCCS:/C_PackageXCCSession_AcceptCallCheck: No AcceptCall; XCC application is unregistered
*Jun 25 14:58:36.487: //85553//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(CALL_INIT[1],ev_setup_indication[37])---[act_Setup]------
*Jun 25 14:58:36.487: //85553//TCL :/tcl_PutsObjCmd:
debug(act_Setup)Language selected currently is 'Turkish'

*Jun 25 14:58:36.487:
*Jun 25 14:58:36.487: //85553//TCL :/tcl_PutsObjCmd:
debug(act_Setup)Digitcollect currently is ''

*Jun 25 14:58:36.487:
*Jun 25 14:58:36.487: //85553//TCL :/tcl_PutsObjCmd:
(act_Setup) Entering procedure

*Jun 25 14:58:36.487:
*Jun 25 14:58:36.487: //85553//TCL :/tcl_InfotagObjCmd: infotag get leg_isdid
*Jun 25 14:58:36.487: //85553//TCL :/tcl_InfotagGetObjCmd: infotag get leg_isdid
*Jun 25 14:58:36.488: //85553//AFW_:/vtr_lg_incdid: argc 2 argindex 2
*Jun 25 14:58:36.488: //85553//TCL :/tcl_LegObjCmd: leg proceeding leg_incoming
*Jun 25 14:58:36.488: //85553//TCL :/tcl_LegProceedObjCmd: proceeding leg_incoming
*Jun 25 14:58:36.488: //85553//AFW_:/vtd_lg_incoming: argc 2
*Jun 25 14:58:36.488: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]
*Jun 25 14:58:36.488: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1
*Jun 25 14:58:36.489: //85553//TCL :/tcl_LegObjCmd: leg progress leg_incoming
*Jun 25 14:58:36.489: //85553//TCL :/tcl_LegProgressObjCmd: progress leg_incoming
*Jun 25 14:58:36.489: //85553//AFW_:/vtd_lg_incoming: argc 2
*Jun 25 14:58:36.489: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]
*Jun 25 14:58:36.489: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1
*Jun 25 14:58:36.489: //85553//TCL :/tcl_LegObjCmd: leg connect leg_incoming
*Jun 25 14:58:36.490: //85553//TCL :/tcl_LegConnectObjCmd: connect leg_incoming
*Jun 25 14:58:36.490: //85553//AFW_:/vtd_lg_incoming: argc 2
*Jun 25 14:58:36.490: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]
*Jun 25 14:58:36.490: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1
*Jun 25 14:58:36.490: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Connect: prog_ind=0, ccRawMsgInfo_t=0x7FB31EE166F8, cData=0
*Jun 25 14:58:36.490: //85553/8B1AFD728E53/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID E type 1
*Jun 25 14:58:36.491: //85553//PACK:/tcl_MediaObjCmd: media play leg_incoming flash:TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.491: //85553//PACK:/tcl_MediaPlayObjCmd: play leg_incoming flash:TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.491: //85553//AFW_:/vtd_lg_incoming: argc 3
*Jun 25 14:58:36.491: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]
*Jun 25 14:58:36.491: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1
*Jun 25 14:58:36.491: //-1//DPM :DP14:/pc_mc_addToDynamicS: (1) flash:TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.492: //-1//DPM :DP14:/pc_mc_addToDynamicS: Doing : flash:TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.492: //-1//DPM :/mcTokenizerGetNext: savedcharptr=f endptrptr=flash:TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.492: //-1//DPM :DP14:/pc_mc_addToDynamicS: Token : flash:TUR_IyiGunlerMesaiIci.au status 1
*Jun 25 14:58:36.492: //-1//DPM :DP14:/pc_mc_addToDynamicS: du_IsNameURL() return TRUE
*Jun 25 14:58:36.492: //-1//DPM :DP14:/dp_mcDQfromURL: file=flash:TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.492: //-1//MCM :/mc_createFromFileUrl: Getting a media content: name=TUR_IyiGunlerMesaiIci.au
url=flash:TUR_IyiGunlerMesaiIci.au
load fast, fetchtimeout=-1
*Jun 25 14:58:36.492: //-1//MCM :MC6:/mc_getFromUrlName: TUR_IyiGunlerMesaiIci.au on ram
*Jun 25 14:58:36.492: //-1//MCM :/mc_createFromFileUrl: Found a good mc (0x7FB3197A4A68), RefCount(1)
*Jun 25 14:58:36.492: //-1//DPM :DP14:/dp_mcDQfromURL: mc_createFromFileUrl OK
*Jun 25 14:58:36.492: //-1//DPM :/mcTokenizerGetNext: savedcharptr=^@ endptrptr=
*Jun 25 14:58:36.493: //85553//PACK:/Media_Play_Start:
*Jun 25 14:58:36.493: //-1//PACK:/Media_Play_Start: pLeg->stream is null, call msw_create()
*Jun 25 14:58:36.493: //85553//MSW :/msw_create: cbf=0x5636150C2560
*Jun 25 14:58:36.493: //-1//MSM :MS13:/ms_create: Iniz ply_timer
*Jun 25 14:58:36.493: //85553//MSW :/msw_synth_open: mediaStream 0x7FB3197A2EF0 created
*Jun 25 14:58:36.493: //85553//MSW :/msw_synth_open: rtspStream 0x7FB311AFFB78 created,
status=RTSP_STATUS_SUCCESS, session_id=0xD (13)
*Jun 25 14:58:36.493: //85553//MSW :/msw_synth_open: AIS : Creating TTS AIS Backend record
*Jun 25 14:58:36.493: //-1//MSM :MS14:/ms_create: Iniz ply_timer
*Jun 25 14:58:36.493: //85553//MSW :/msw_recrd_open:
*Jun 25 14:58:36.493: :msw_recrd_open mediaStream 0x7FB3197A4FB0 created
*Jun 25 14:58:36.494: //85553//MSW :/msw_recrd_open: rtspStream 0x7FB311AFFB88 created,
status=RTSP_STATUS_SUCCESS, session_id=0xE (14)
*Jun 25 14:58:36.494: //85553//MSW :/msw_recog_open: AIS : Creating ASR AIS Backend record
*Jun 25 14:58:36.494: //-1//PACK:/Media_Play_Start: msw_create() succeed to create stream [7]
*Jun 25 14:58:36.494: //-1//MSW :/msw_associate_call:
*Jun 25 14:58:36.494: msw_associate_call: callID=0x14E31(85553),
genericStream=0x7FB311AFF3B8
*Jun 25 14:58:36.494: //85553//MSW :/msw_synth_get_stream_state: genericStream 0x7FB311AFF3B8 is in state MSW_S_IDLE
*Jun 25 14:58:36.494: //-1//MSW :/msw_synth_start:
*Jun 25 14:58:36.494: msw_synth_start: Enter...
*Jun 25 14:58:36.494: //85553//MSW :/msw_synth_start: current_stream_id=1, content 0x0, dynamicS 0x7FB31B099B90, current_state=MSW_S_IDLE
*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.
*Jun 25 14:58:36.494: //-1//MSW :/msw_synth_start: p_mcDynamicQ is NOT empty
*Jun 25 14:58:36.494: //85553//MSW :/msu_synth_partial_play: Media Stream URL
*Jun 25 14:58:36.495: //85553//TCL :/tcl_LegObjCmd: leg collectdigits leg_incoming param
*Jun 25 14:58:36.495: //85553//Digi:/tcl_LegDigitCollectObjCmd: collectdigits leg_incoming param
*Jun 25 14:58:36.495: //85553//AFW_:/vtd_lg_incoming: argc 3
*Jun 25 14:58:36.495: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]
*Jun 25 14:58:36.495: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1
*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
*Jun 25 14:58:36.496: //-1//Digi:/AFW_DigitCollect_New:
*Jun 25 14:58:36.496: //-1//Digi:HN3E3EFAB8:/AFW_DigitCollect_New: DialPlan=FALSE AbortKey=* TermKey=# NumPatts=0
Enable=FALSE Consume=FALSE InterruptPrompt=TRUE minDigits=0 maxDigits=4 DialPlanTerm=FALSE hotword=0
*Jun 25 14:58:36.496: //-1//AFW_:LP:EE7FB311B12290000:HN3E3EFAB8:/AFW_M_Object_SetExecEnv: Inc module DigitCollect(0x7FB31ED6EB70). ObjCount: 3, CmdPending 1
*Jun 25 14:58:36.496: //85553//AFW_:/AFW_Object_AddListener: adding Module TclModule as listener
*Jun 25 14:58:36.496: //85553//AFW_:/AFW_M_Module_GetHandle: Module handle: DigitCollect_0x7FB31ED6EB70_0_1044314808
*Jun 25 14:58:36.496: //85553/8B1AFD728E53/AFW_:/AFW_Object_AddListener: adding Module DigitCollect as listener
*Jun 25 14:58:36.496: //85553/8B1AFD728E53/Digi:/DigitCollectStart_UpdateStats:
*Jun 25 14:58:36.497: //85553//Digi:/DigitCollect_MLPPTuning:
*Jun 25 14:58:36.497: //85553//Digi:/DigitCollect_MLPPTuning: Precednece Digit Collect not enabled
*Jun 25 14:58:36.497: //85553/8B1AFD728E53/AFW_:/AFW_Leg_TypeAheadGet: no chars in buffer.
*Jun 25 14:58:36.497: //85553/8B1AFD728E53/AFW_:/AFW_Leg_DigitReportEnable: Current: 0x0 Input: 0x2
*Jun 25 14:58:36.497: //85553//TCL :/tcl_FSMObjCmd: fsm setstate SELECTOPT
*Jun 25 14:58:36.498: //85553//TCL :/tcl_FSMSetStateObjCmd: setstate setstate SELECTOPT
*Jun 25 14:58:36.498: //85553//AFW_:/AFW_FSM_Drive: ACTION END: -------------(SELECTOPT[2])---------------
*Jun 25 14:58:36.498: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---> TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:36.498: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:36.498: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:36.499: //85553//MSM :LP:MS13:/ms_associateDone:
*Jun 25 14:58:36.499: //85553//MSM :/ms_asDone_buginf: callID=0x14E31, pVdb=0x7FB31179A8B0,
disposition=0, playFunc=0x563614EC3370,
codec=0x6=g711alaw, vad=0,
mediaType=3, streamAssocID=85554
*Jun 25 14:58:36.499: //85553//MSM :/ms_associateDone: Setting initial seqnum=6810 for the call
*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
*Jun 25 14:58:36.500: //-1//MCM :MR13:/mc_setup_reader_encaps: SSRC: 0x108DA SeqNum: 0x1A9A
*Jun 25 14:58:36.500: //85553//MSM :/ms_associateDone: First Buf Play at 1w5d of TUR_IyiGunlerMesaiIci.au
*Jun 25 14:58:36.500: //85553//MSM :/ms_associateDone: 1w5d, Tstart(ply: iSndDly 0)
*Jun 25 14:58:36.501: //85553//MSM :/ms_handle_stream_timer: >>ms_start_play()
*Jun 25 14:58:36.501: //85553//MSM :/ms_start_play: 1w5d, Tstart(ply: i_dly 4)
*Jun 25 14:58:36.501: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:36.501: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:36.501: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_REPORT_DIGITS_DONE(71)] {
*Jun 25 14:58:36.502: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:36.502: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:36.502: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:36.502: //-1//SSIN:/AFW_SS_MapEvent: No mapping required
*Jun 25 14:58:36.502: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:36.502: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:36.503: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:36.504: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:36.504: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:36.504: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:36.505: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:36.505: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:36.505: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : DigitCollect
*Jun 25 14:58:36.505: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> DigitCollect_0x7FB31ED6EB70_0_1044314808
*Jun 25 14:58:36.505: //85553//Digi:/AFW_M_DigitCollect_Action:
*Jun 25 14:58:36.505: //85553//Digi:/act_DCRunning_RDone: id=85553 Enable succeeded.enable=0 matchDialplan=0 numPatterns=0matchDialplanTerm=0
*Jun 25 14:58:36.505: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: DigitCollect_0x7FB31ED6EB70_0_1044314808 ---> NULL
*Jun 25 14:58:36.505: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:36.505: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:42.926: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:42.926: //85546/79C82D428E4A/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:42.926: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECT_DONE(23)] {
*Jun 25 14:58:42.927: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12408][IVR]
*Jun 25 14:58:42.927: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85546][LEG_INCDISCONNECTING(6)][Cause(16)]
*Jun 25 14:58:42.927: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:42.927: //-1//SSIN:/AFW_SS_MapEvent: No mapping required
*Jun 25 14:58:42.927: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:42.927: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:42.927: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B147C8_0_1044285728] (
*Jun 25 14:58:42.928: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85546][LEG_DISCONNECTED(12)][Cause(16)]
*Jun 25 14:58:42.928: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:42.928: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:42.928: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule
*Jun 25 14:58:42.928: //85546/79C82D428E4A/AFW_:/AFW_Object_RemoveListener:
*Jun 25 14:58:42.928: //85546//AFW_:/AFW_Module_UnListen: NumObjects: 0
*Jun 25 14:58:42.929: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B147C8_0_1044285728
*Jun 25 14:58:42.929: //85546//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:42.929: //85546//AFW_:/AFW_M_TclModule_Action: Module is Terminating
*Jun 25 14:58:42.929: //-1//AFW_:/AFW_Event_New: Event ID: ev_module_done(278)
*Jun 25 14:58:42.929: //85546//AFW_:/AFW_TclModule_ReturnIfDone: Sending Out APP_EV_TCLMODULE_DONE event
*Jun 25 14:58:42.929: //85546//AFW_:/AFW_Module_ReturnArgEv:
*Jun 25 14:58:42.929: //85546//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B147C8_0_1044285728 ---> NULL
*Jun 25 14:58:42.929: //85546/79C82D428E4A/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:42.929: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:42.929: //85546/79C82D428E4A/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free: CC_EV_CALL_DISCONNECT_DONE for a Leg: LEG_85546
*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_Object_RemoveAllListener:
*Jun 25 14:58:42.930: //85546//AFW_:/AFW_ExecEnv_DecrNPendingCmd: PendingCmdCount: 0
*Jun 25 14:58:42.930: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 1, CmdPending 0
*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Event_Free: ExecEnv objCount: 1
*Jun 25 14:58:42.930: //85546/79C82D428E4A/AFW_:/AFW_M_Leg_Free:
*Jun 25 14:58:42.930: //85546//MSW :/msw_destroy:
*Jun 25 14:58:42.930: //-1//MSW :/msw_stop: genericStream=0x7FB311AFF1E8,
reason=MSW_REASON_DISCONNECTED
*Jun 25 14:58:42.930: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...
*Jun 25 14:58:42.930: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF1E8,
mediaStream=0x7FB31EDC4F18, rtspStream=0x7FB311AFFB58
reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:42.931: //85546//MSW :/msw_synth_stop: Stream not currently active
*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF1E8,
mediaStream=0x7FB31ED9E2B0, rtspStream=0x7FB311AFFB68
reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE
*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: Stream not currently active
*Jun 25 14:58:42.931: //-1//MSW :/msw_recog_stop:
*Jun 25 14:58:42.931: msw_recog_stop: genericStream=0x7FB311AFF1E8,
mrcpStream=0x7FB311AFFC68
reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:42.931: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...
*Jun 25 14:58:42.931: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF1E8,
mediaStream=0x7FB31EDC4F18, rtspStream=0x7FB311AFFB58
reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:42.931: //85546//MSW :/msw_synth_stop: Stream not currently active
*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: genericStream=0x7FB311AFF1E8,
mediaStream=0x7FB31ED9E2B0, rtspStream=0x7FB311AFFB68
reason=MSW_RECRD_REASON_DISCONNECTED current_state=MSW_S_IDLE
*Jun 25 14:58:42.931: //-1//MSW :/msw_recrd_stop: Stream not currently active
*Jun 25 14:58:42.931: //-1//MSW :/msw_recog_stop:
*Jun 25 14:58:42.932: msw_recog_stop: genericStream=0x7FB311AFF1E8,
mrcpStream=0x7FB311AFFC68
reason=MSW_RECOG_REASON_DISCONNECTED, current_state=MSW_S_IDLE
*Jun 25 14:58:42.932: //85546/79C82D428E4A/AFW_:/AFW_M_Leg_Free: LEG[85546 ][LEG_DISCONNECTED(12)][Cause(16)]
*Jun 25 14:58:42.932: //85546/79C82D428E4A/AFW_:/decrementDialPeerCallStats: Decrementing call-stat to [1], dial-peer [4610]
*Jun 25 14:58:42.932: //85546//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 0
*Jun 25 14:58:42.932: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 3
*Jun 25 14:58:42.932: //85546//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED
*Jun 25 14:58:42.932: //85546//AFW_:/AFW_Process_GetPriorityQEvent: Received
*Jun 25 14:58:42.932: //-1//AFW_:/AFW_Process_GetPriorityQEvent: Event[APP_EV_TCLMODULE_DONE(278)] {
*Jun 25 14:58:42.932: //-1//AFW_:/AFW_Process_GetPriorityQEvent: EXECENV[0x7FB311B12408][IVR]
*Jun 25 14:58:42.933: //-1//AFW_:/AFW_Process_GetPriorityQEvent: MOD[TclModule_0x7FB311B147C8_0_1044285728] (
*Jun 25 14:58:42.933: //-1//AFW_:/AFW_Process_GetPriorityQEvent: )
*Jun 25 14:58:42.933: //-1//AFW_:/AFW_Process_GetPriorityQEvent: }
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_TclModule_EventPreProcess:
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_M_Event_Free: MODULEDONEEVENT for a Module: TclModule_0x7FB311B147C8_0_1044285728
*Jun 25 14:58:42.934: //85546//AFW_:/AFW_Object_RemoveAllListener:
*Jun 25 14:58:42.934: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 0, CmdPending 0
*Jun 25 14:58:42.934: //-1//AFW_:HN3E3E8920:/AFW_M_Event_Free: ExecEnv objCount: 0
*Jun 25 14:58:42.934: //-1//SERV:/AFW_Service_ReleaseExecEnv: Script Name = IVR cache = true calls = 1
*Jun 25 14:58:42.935: //85546//AFW_:/AFW_ExecEnv_UnSetRoot: Execenv = 0x7FB311B12408
*Jun 25 14:58:42.935: //-1//AFW_:/AFW_Process_UnLock: pProcess(0x7FB3187A6BD0)=1
*Jun 25 14:58:42.935: //-1//SCRI:/cam_sa_stopped: Instance: [] ExecEnv: 0x7FB311B12408
*Jun 25 14:58:42.935: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:42.935: //-1//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:42.935: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL
*Jun 25 14:58:47.449: //85553//MSM :/ms_cbf: (p 1w5d z)
*Jun 25 14:58:47.449: //85553//MSM :/ms_stop_play: mgdTstop at 1w5d (cause MS_STOP_COMPLETE)
*Jun 25 14:58:47.449: //85553//MSM :/ms_stop_play: Play Stopped at 1w5d
*Jun 25 14:58:47.450: //85553//MSM :/ms_stop_play: calling CBF for stream_id 1
*Jun 25 14:58:47.450: //85553//MSW :/msu_synth_ms_play_complete: context=0x7FB311AFF3C0, use_dynamic=1, dynamicElement=0x0,
cause=MS_STOP_COMPLETE, stream_id=1, duration=7306, rate=0 proto_code=0
*Jun 25 14:58:47.450: //85553//MSW :/msu_call_app: app_cbf=0x5636150C2560
Event = MSW_EV_SYNTHESIZER(1), Context 0x7FB31B2FA4E0, Type MSW_SYNTH_TYPE_SYNTHESIZE(2), Reason MSW_SYNTH_REASON_GENERIC_SUCCESS(18)
*Jun 25 14:58:47.450: //85553/8B1AFD728E53/AFW_:/AFW_Leg_MediaCallback:
*Jun 25 14:58:47.451: //-1//AFW_:/AFW_Leg_MediaCallback: pLeg=0x7FB31B2FA4E0, pModule=0x7FB311B149F0
*Jun 25 14:58:47.451: //-1//AFW_:/AFW_Event_New: Event ID: ev_media_done(200)
*Jun 25 14:58:47.451: //-1//MSW :/msw_mediadone_stats:
*Jun 25 14:58:47.451: //-1//MCM :MC6:/mc_delete: mc=0x7FB3197A4A68
*Jun 25 14:58:47.451: //-1//MCM :MC6:/mc_check_background_load: mc(0x7FB3197A4A68), mc->eof=1
*Jun 25 14:58:47.451: //85553//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED
*Jun 25 14:58:47.452: //85553//AFW_:/AFW_Process_GetAppQEvent: Received
*Jun 25 14:58:47.452: //-1//AFW_:/AFW_Process_GetAppQEvent: Event[MSW_EV_SYNTHESIZER(200)] {
*Jun 25 14:58:47.452: //-1//AFW_:/AFW_Process_GetAppQEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:47.452: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:47.453: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:47.453: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:47.454: //-1//AFW_:/AFW_Process_GetAppQEvent: )
*Jun 25 14:58:47.454: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:47.455: //-1//AFW_:/AFW_Process_GetAppQEvent: )
*Jun 25 14:58:47.455: //-1//AFW_:/AFW_Process_GetAppQEvent: }
*Jun 25 14:58:47.455: //85553//AFW_:/AFW_M_TclModule_EventPreProcess:
*Jun 25 14:58:47.455: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:47.455: //85553//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:47.456: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:
*Jun 25 14:58:47.456: //85553//AFW_:/AFW_FSM_Drive: FSM no match for (SELECTOPT[2],ev_media_done[200])
*Jun 25 14:58:47.456: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---> NULL
*Jun 25 14:58:47.456: //85553//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:47.456: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:47.456: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:47.456: //-1//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:47.456: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL
*Jun 25 14:58:49.450: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:49.450: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:49.450: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DIGIT_END(20)] {
*Jun 25 14:58:49.450: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:49.451: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.451: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:49.451: //-1//SSIN:/AFW_SS_MapEvent: No mapping required
*Jun 25 14:58:49.451: //85553/8B1AFD728E53/AFW_:/AFW_M_Leg_EventPreProcess: Passing, not enabled.---
*Jun 25 14:58:49.452: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:49.452: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:49.452: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:49.452: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.452: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.453: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:49.453: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:49.453: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.454: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.454: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.454: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.454: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:49.455: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : DigitCollect
*Jun 25 14:58:49.455: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> DigitCollect_0x7FB31ED6EB70_0_1044314808
*Jun 25 14:58:49.455: //85553//Digi:/AFW_M_DigitCollect_Action:
*Jun 25 14:58:49.455: //85553//Digi:/act_DCRunning_Digit: : pLeg 85553 Digit T Tone Mode -1
*Jun 25 14:58:49.455: //85553/8B1AFD728E53/AFW_:/AFW_Leg_DigitReportDisable: Current: 0x2 Input: 0x1
*Jun 25 14:58:49.455: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: DigitCollect_0x7FB31ED6EB70_0_1044314808 ---> NULL
*Jun 25 14:58:49.455: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:49.456: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:49.456: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:49.456: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:49.456: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_REPORT_DIGITS_DONE(71)] {
*Jun 25 14:58:49.456: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:49.457: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.457: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:49.457: //-1//SSIN:/AFW_SS_MapEvent: No mapping required
*Jun 25 14:58:49.457: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:49.458: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.458: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:49.459: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:49.459: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.459: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.460: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.460: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.460: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:49.461: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : DigitCollect
*Jun 25 14:58:49.461: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> DigitCollect_0x7FB31ED6EB70_0_1044314808
*Jun 25 14:58:49.461: //85553//Digi:/AFW_M_DigitCollect_Action:
*Jun 25 14:58:49.461: //85553//Digi:/act_DCRunning_RDone: id=85553 Reporting disabled.
*Jun 25 14:58:49.461: //-1//Digi:/DigitCollect_Complete: DC_TIMEOUT. Digits=
*Jun 25 14:58:49.461: //85553//Digi:/DigitCollect_MLPPPostAdjust: Non MLPP call
*Jun 25 14:58:49.461: //-1//AFW_:/AFW_Event_New: Event ID: ev_collectdigits_done(267)
*Jun 25 14:58:49.461: //85553//AFW_:/AFW_Module_ReturnArgEv:
*Jun 25 14:58:49.462: //85553//AFW_:/AFW_Module_ReturnArgEv: Return List (remove=TRUE){LEG[85553 ][LEG_INCCONNECTED(5)][Cause(0)]}
*Jun 25 14:58:49.462: //85553/8B1AFD728E53/AFW_:/AFW_Object_RemoveListener:
*Jun 25 14:58:49.462: //85553//AFW_:/AFW_Module_UnListen: NumObjects: 0
*Jun 25 14:58:49.462: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: DigitCollect_0x7FB31ED6EB70_0_1044314808 ---> NULL
*Jun 25 14:58:49.462: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:49.462: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:49.463: //85553//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED
*Jun 25 14:58:49.463: //85553//AFW_:/AFW_Process_GetPriorityQEvent: Received
*Jun 25 14:58:49.463: //-1//AFW_:/AFW_Process_GetPriorityQEvent: Event[APP_EV_DIGITCOLLECT_DONE(267)] {
*Jun 25 14:58:49.463: //-1//AFW_:/AFW_Process_GetPriorityQEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:49.463: //-1//AFW_:/AFW_Process_GetPriorityQEvent: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:49.464: //-1//AFW_:/AFW_Process_GetPriorityQEvent: )
*Jun 25 14:58:49.464: //-1//AFW_:/AFW_Process_GetPriorityQEvent: }
*Jun 25 14:58:49.464: //85553//Digi:/AFW_M_DigitCollect_EventPreProcess:
*Jun 25 14:58:49.464: //85553//Digi:/DigitCollectEnd_UpdateStats:
*Jun 25 14:58:49.464: //85553//AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:49.465: //85553//AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:49.465: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:49.465: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[DigitCollect_0x7FB31ED6EB70_0_1044314808] (
*Jun 25 14:58:49.465: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.466: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:49.466: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:49.466: //85553//AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:49.466: //85553//AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule
*Jun 25 14:58:49.466: //85553/8B1AFD728E53/AFW_:/AFW_Object_AddListener: adding Module TclModule as listener
*Jun 25 14:58:49.467: //85553//AFW_:/AFW_Object_RemoveListener:
*Jun 25 14:58:49.467: //85553//AFW_:/AFW_Module_UnListen: NumObjects: 1
*Jun 25 14:58:49.467: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:49.467: //85553//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:49.467: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:
*Jun 25 14:58:49.467: //85553//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(SELECTOPT[2],ev_collectdigits_done[267])---[act_Collected]------
*Jun 25 14:58:49.467: //85553//TCL :/tcl_PutsObjCmd:
debug(act_Collected) Entering procedure

*Jun 25 14:58:49.468:
*Jun 25 14:58:49.468: //85553//TCL :/tcl_PutsObjCmd:
debug(act_Collected) Digitcollect is: ''

*Jun 25 14:58:49.468:
*Jun 25 14:58:49.468: //85553//TCL :/tcl_InfotagObjCmd: infotag get evt_status
*Jun 25 14:58:49.468: //85553//TCL :/tcl_InfotagGetObjCmd: infotag get evt_status
*Jun 25 14:58:49.468: //85553//AFW_:/vtr_ev_status: argc 2 argindex 2
*Jun 25 14:58:49.469: //85553//TCL :/tcl_PutsObjCmd:
(act_Collected) Collect status is 'cd_001' (lang=Turkish)

*Jun 25 14:58:49.469:
*Jun 25 14:58:49.469: //85553//TCL :/tcl_PutsObjCmd:
(act_Collected) Collect Timeout play prompt and transfer to operator

*Jun 25 14:58:49.469:
*Jun 25 14:58:49.469: //85553//TCL :/tcl_PutsObjCmd:
(act_Collected) Playing Turkish prompt

*Jun 25 14:58:49.469:
*Jun 25 14:58:49.469: //85553//PACK:/tcl_MediaObjCmd: media play leg_incoming flash:Transfer.au
*Jun 25 14:58:49.470: //85553//PACK:/tcl_MediaPlayObjCmd: play leg_incoming flash:Transfer.au
*Jun 25 14:58:49.470: //85553//AFW_:/vtd_lg_incoming: argc 3
*Jun 25 14:58:49.470: //85553//AFW_:/vtd_lg_incoming: Legs [85553 ]
*Jun 25 14:58:49.470: //85553//Tcl :/tcl_parseCallID_vartagObj: VARTAG Translation Leg Count=1
*Jun 25 14:58:49.470: //-1//DPM :DP15:/pc_mc_addToDynamicS: (1) flash:Transfer.au
*Jun 25 14:58:49.471: //-1//DPM :DP15:/pc_mc_addToDynamicS: Doing : flash:Transfer.au
*Jun 25 14:58:49.471: //-1//DPM :/mcTokenizerGetNext: savedcharptr=f endptrptr=flash:Transfer.au
*Jun 25 14:58:49.471: //-1//DPM :DP15:/pc_mc_addToDynamicS: Token : flash:Transfer.au status 1
*Jun 25 14:58:49.471: //-1//DPM :DP15:/pc_mc_addToDynamicS: du_IsNameURL() return TRUE
*Jun 25 14:58:49.471: //-1//DPM :DP15:/dp_mcDQfromURL: file=flash:Transfer.au
*Jun 25 14:58:49.471: //-1//MCM :/mc_createFromFileUrl: Getting a media content: name=Transfer.au
url=flash:Transfer.au
load fast, fetchtimeout=-1
*Jun 25 14:58:49.471: //-1//MCM :MC7:/mc_getFromUrlName: Transfer.au on ram
*Jun 25 14:58:49.472: //-1//MCM :/mc_createFromFileUrl: Found a good mc (0x7FB31ED87850), RefCount(1)
*Jun 25 14:58:49.472: //-1//DPM :DP15:/dp_mcDQfromURL: mc_createFromFileUrl OK
*Jun 25 14:58:49.472: //-1//DPM :/mcTokenizerGetNext: savedcharptr=^@ endptrptr=
*Jun 25 14:58:49.472: //85553//PACK:/Media_Play_Start:
*Jun 25 14:58:49.472: //85553//MSW :/msw_synth_get_stream_state: genericStream 0x7FB311AFF3B8 is in state MSW_S_IDLE
*Jun 25 14:58:49.472: //-1//MSW :/msw_synth_start:
*Jun 25 14:58:49.472: msw_synth_start: Enter...
*Jun 25 14:58:49.472: //85553//MSW :/msw_synth_start: current_stream_id=2, content 0x0, dynamicS 0x7FB3195FE8D0, current_state=MSW_S_IDLE
*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.
*Jun 25 14:58:49.473: //-1//MSW :/msw_synth_start: p_mcDynamicQ is NOT empty
*Jun 25 14:58:49.473: //85553//MSW :/msu_synth_partial_play: Media Stream URL
*Jun 25 14:58:49.473: //85553//TCL :/tcl_FSMObjCmd: fsm setstate TRANSFERTOOP
*Jun 25 14:58:49.473: //85553//TCL :/tcl_FSMSetStateObjCmd: setstate setstate TRANSFERTOOP
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_FSM_Drive: ACTION END: -------------(TRANSFERTOOP[4])---------------
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---> NULL
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:49.474: //85553//AFW_:/AFW_M_Event_Free: MODULEDONEEVENT for a Module: DigitCollect_0x7FB31ED6EB70_0_1044314808
*Jun 25 14:58:49.475: //85553//AFW_:/AFW_Object_RemoveAllListener:
*Jun 25 14:58:49.475: //-1//AFW_:/AFW_M_Object_UnSetExecEnv: ObjCount: 2, CmdPending 1
*Jun 25 14:58:49.475: //-1//AFW_:HN3E3EFAB8:/AFW_M_Event_Free: ExecEnv objCount: 2
*Jun 25 14:58:49.475: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:49.475: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:49.475: //-1//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:49.475: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL
*Jun 25 14:58:49.476: //85553//MSM :LP:MS13:/ms_associateDone:
*Jun 25 14:58:49.476: //85553//MSM :/ms_asDone_buginf: callID=0x14E31, pVdb=0x7FB31179A8B0,
disposition=0, playFunc=0x563614EC3370,
codec=0x6=g711alaw, vad=0,
mediaType=3, streamAssocID=85554
*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
*Jun 25 14:58:49.477: //-1//MCM :MR14:/mc_setup_reader_encaps: SSRC: 0x104A1 SeqNum: 0x1CBD
*Jun 25 14:58:49.477: //85553//MSM :/ms_associateDone: First Buf Play at 1w5d of Transfer.au
*Jun 25 14:58:49.477: //85553//MSM :/ms_associateDone: 1w5d, Tstart(ply: iSndDly 0)
*Jun 25 14:58:49.478: //85553//MSM :/ms_handle_stream_timer: >>ms_start_play()
*Jun 25 14:58:49.478: //85553//MSM :/ms_start_play: 1w5d, Tstart(ply: i_dly 4)
*Jun 25 14:58:52.479: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:52.479: //85553/8B1AFD728E53/AFW_:/AFW_Process_GetCcqEvent: Received
*Jun 25 14:58:52.479: //-1//AFW_:/AFW_Process_GetCcqEvent: Event[CC_EV_CALL_DISCONNECTED(22)] {
*Jun 25 14:58:52.479: //-1//AFW_:/AFW_Process_GetCcqEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:52.480: //-1//AFW_:/AFW_Process_GetCcqEvent: LEG[85553][LEG_INCCONNECTED(5)][Cause(0)]
*Jun 25 14:58:52.480: //-1//AFW_:/AFW_Process_GetCcqEvent: }
*Jun 25 14:58:52.480: //85553/8B1AFD728E53/SSIN:/AFW_SS_MapEvent:
*Jun 25 14:58:52.480: //-1//SSIN:/AFW_SS_SIP_MapEvent:
*Jun 25 14:58:52.480: //-1//MSW :/msw_synth_bargein:
*Jun 25 14:58:52.480: msw_synth_bargein: genericStream=0x7FB311AFF3B8,
reason=MSW_REASON_DISCONNECTED, current_state=MSW_S_PLAYING
*Jun 25 14:58:52.480: //-1//MSW :/msw_synth_stop: msw_synth_stop: Enter...
*Jun 25 14:58:52.481: //-1//MSW :/msw_synth_stop: genericStream=0x7FB311AFF3B8,
mediaStream=0x7FB3197A2EF0, rtspStream=0x7FB311AFFB78
reason=MSW_SYNTH_REASON_DISCONNECTED, current_state=MSW_S_PLAYING
*Jun 25 14:58:52.481: //85553//MSW :/msw_synth_stop: Found gccb for callID [85553]
*Jun 25 14:58:52.481: //85553//MSW :/msw_synth_stop: msw_synth_stop: call ms_stop_play()...
*Jun 25 14:58:52.481: //85553//MSM :/ms_stop_play: mgdTstop at 1w5d (cause MS_STOP_DISCONNECTED)
*Jun 25 14:58:52.481: //85553//MSM :/ms_stop_play: Play Stopped at 1w5d
*Jun 25 14:58:52.481: //85553//MSM :/ms_stop_play: calling CBF for stream_id 2
*Jun 25 14:58:52.481: //85553//MSW :/msu_synth_ms_play_complete: context=0x7FB311AFF3C0, use_dynamic=1, dynamicElement=0x7FB30AD1FAE0,
cause=MS_STOP_DISCONNECTED, stream_id=2, duration=2000, rate=0 proto_code=0
*Jun 25 14:58:52.481: //85553//MSW :/msu_synth_ms_play_complete: Ignoring: cur. stream=3, resp. stream=2
*Jun 25 14:58:52.482: //85553//MSW :/msw_synth_stop: msw_synth_stop: call reg_invoke_dp_delete_mcDynamicS()
*Jun 25 14:58:52.482: //-1//MCM :MC7:/mc_delete: mc=0x7FB31ED87850
*Jun 25 14:58:52.482: //-1//MCM :MC7:/mc_check_background_load: mc(0x7FB31ED87850), mc->eof=1
*Jun 25 14:58:52.482: //85553/8B1AFD728E53/AFW_:/AFW_Leg_MediaCallback:
*Jun 25 14:58:52.482: //-1//AFW_:/AFW_Leg_MediaCallback: pLeg=0x7FB31B2FA4E0, pModule=0x7FB311B149F0
*Jun 25 14:58:52.482: //-1//AFW_:/AFW_Event_New: Event ID: ev_media_done(200)
*Jun 25 14:58:52.482: //-1//MSW :/msw_mediadone_stats:
*Jun 25 14:58:52.482: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners:
*Jun 25 14:58:52.482: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: START
*Jun 25 14:58:52.483: //-1//AFW_:/AFW_M_Object_ShowListeners: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:52.483: //-1//AFW_:/AFW_M_Object_ShowListeners: LEG[85553][LEG_INCCONNECTED(5)][Cause(16)]
*Jun 25 14:58:52.483: //-1//AFW_:/AFW_M_Object_ShowListeners: )
*Jun 25 14:58:52.483: //85553/8B1AFD728E53/AFW_:/AFW_M_Object_ShowListeners: END
*Jun 25 14:58:52.483: //85553/8B1AFD728E53/AFW_:/AFW_Object_WalkListeners: Entering Module : TclModule
*Jun 25 14:58:52.484: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:52.484: //85553//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:52.484: //85553//AFW_:/AFW_TclModule_DefaultEvHandling:
*Jun 25 14:58:52.484: //85553//AFW_:/AFW_FSM_Drive: ACTION BEGIN: ------(TRANSFERTOOP[4],ev_disconnected[22])---[act_Cleanup]------
*Jun 25 14:58:52.484: //85553//TCL :/tcl_PutsObjCmd:
(act_Cleanup)Closing call

*Jun 25 14:58:52.484:
*Jun 25 14:58:52.484: //85553//TCL :/tcl_CallObjCmd: call close
*Jun 25 14:58:52.484: //85553//TCL :/tcl_CallCloseObjCmd: close
*Jun 25 14:58:52.484: //-1//AFW_:/AFW_ExecEnv_CallClose: Exec Env state: 1
*Jun 25 14:58:52.485: //-1//AFW_:/AFW_ExecEnv_CallClose: Terminating ExecEnv's root module
*Jun 25 14:58:52.485: //85553//AFW_:/AFW_Module_Terminate: Terminating Module: TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:52.485: //85553//AFW_:/AFW_M_TclModule_Terminate: Module is in the state: ACTIVE
*Jun 25 14:58:52.485: //85553//AFW_:/AFW_TclModule_Cleaner: lastFailureCause 16
*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85553
*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Disconnect: Disconnecting Leg: LEG_85553, Cause 16
*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_Disconnect: Setting hunt stats for the disconnecting leg-85553
*Jun 25 14:58:52.485: //85553//MEDI:/C_MediaFork_Close: Media Fork Not avtive on Leg [85553]
*Jun 25 14:58:52.485: //85553/8B1AFD728E53/AFW_:/AFW_Leg_UpdateStats: Updating stats for ID E type 2
*Jun 25 14:58:52.486: //85553//AFW_:/AFW_FSM_Drive: ACTION END: -------------(TRANSFERTOOP[4])---------------
*Jun 25 14:58:52.486: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---> NULL
*Jun 25 14:58:52.486: //85553/8B1AFD728E53/AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:52.486: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:52.486: //85553//AFW_:/AFW_Event_IsOk: AppEventOk Success - timestamp MATCHED
*Jun 25 14:58:52.486: //85553//AFW_:/AFW_Process_GetAppQEvent: Received
*Jun 25 14:58:52.486: //-1//AFW_:/AFW_Process_GetAppQEvent: Event[MSW_EV_SYNTHESIZER(200)] {
*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: EXECENV[0x7FB311B12290][IVR]
*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: MOD[TclModule_0x7FB311B149F0_0_1044314792] (
*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: LEG[85553][LEG_INCDISCONNECTING(6)][Cause(16)]
*Jun 25 14:58:52.487: //-1//AFW_:/AFW_Process_GetAppQEvent: )
*Jun 25 14:58:52.488: //-1//AFW_:/AFW_Process_GetAppQEvent: }
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_TclModule_EventPreProcess:
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: NULL ---> TclModule_0x7FB311B149F0_0_1044314792
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_TclModule_Action:
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_TclModule_Action: Module is Terminating
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_ExecEnv_SetModuleScope: TclModule_0x7FB311B149F0_0_1044314792 ---> NULL
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:52.488: //85553//AFW_:/AFW_ExecEnv_CloseIfDone: Cmd Count: 1
*Jun 25 14:58:52.489: //-1//AFW_:/AFW_Event_New: Event ID: ev_any_event(0)
*Jun 25 14:58:52.489: //-1//AFW_:/AFW_M_Event_Free:
*Jun 25 14:58:52.489: //-1//AFW_:/AFW_M_Event_Free: Null or invalid event context: for event APP_EV_NULL

Hi Kemal,
From the logs we can see the codec negotiated is "g711alaw" and don't see any digits received.
is media prompts played ? did you try to press any digits?
what issue you are facing here?

Thanks,
Raghavendra

Hi 

 

I noticed  tcl is not play ivr promt  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 ?

Normaly calls come in gw but promt is not play.

 

Thanks

 

 

can you check audio file codec?, since you configured the dialpeer with "g711alaw" your audio file codec should be "g711alaw"

Thanks,
Raghavendra
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: