invoso.com Report post Posted 10/16/2012 08:44 AM In my script I connect caller with Agent. How to back call to script (for example - to menu) disconnecting Agent? in case when caller should to press other menu option. Share this post Link to post
SupportTeam Report post Posted 10/16/2012 10:40 AM Are you asking how to disconnect from tromboned (Dial-and-Conference) call with agent, dropping the agent leg, and have caller move onto rest of the script? This can be done using the Bridge_Disconnect API call. eg. from 'Run VB Script' type module: set vg = CreateObject("vgServices.CommandLink") vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_2] set vg = Nothing Please see: http://www.voiceguide.com/vghelp/source/html/com_bridge_disconnect.htm Share this post Link to post
SupportTeam Report post Posted 10/16/2012 11:08 AM Also you would need to hangup the agent leg of the call. This can be done using the Line_Hangup API. So the VBScript example should look like this: set vg = CreateObject("vgServices.CommandLink") vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_2] vg.Line_Hangup $RV[Conf_LineId_2] set vg = Nothing Share this post Link to post
invoso.com Report post Posted 08/20/2014 10:54 AM Topic coming back, I try to disconnect conference call and redirect caller to main menu. VBScript above not working as show log file: 124322.313 7 10 4 RunModule start Run VB Script, [disconect and back to menu], iModuleIdx=1193, previous: vgm=1191, vgs=20:20124322.313 11 db PerformWork_RunCoreSql cmd_CoreSql.ExecuteNonQuery returned124322.313 7 10 4 t timer set 30 sec : EV_TIMEOUT_HANGUP124322.313 7 10 4 QueueUserWorkItem scrmod_RunVbs.RunModule call124322.313 7 10 4 q_scr run evScriptEvent sCode=[*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0040002 max:41|00:00:26.3005043124322.314 7 10 4 se * 42 0|0|0 || LineState=LS_MODULE_TRANSITION124322.313 107 10 4 strIni_moduleRunScript_Engine=[ClearScriptV8]124322.314 107 10 4 runscr start - ClearScriptV8124322.314 7 173 58 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0050003 max:41|00:00:26.3005043124322.314 7 173 58 se OTHER_LEG_* 42 0|0|0 || LineState=LS_XFER_9_WAITENDCALL_DialingSide124322.314 7 173 58 ct calltrack_set ID=0, guid=c935f635-2268-45bf-8292-2c172e224f0f124322.314 107 10 4 runscrunscr new VBScriptEngine call124322.315 7 173 58 ct calltrack_set sql UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@124322, key_*@124322, ', TimeDTMFpressed='2014-08-20 12:43:22' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');124322.315 107 10 4 runscrunscr new engine created124322.315 107 10 4 state [disconect and back to menu] RunScript, wait=1124322.315 7 173 58 LsXfer_9_WaitEndCall_OutLeg : [42:OTHER_LEG_*] 0,0,0,,,124322.316 7 10 4 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0050003 max:41|00:00:26.3005043124322.316 7 10 4 se OTHER_LEG_* 42 0|0|0 || LineState=LS_MODULE_TRANSITION124322.315 107 10 4 rv replace start------------------------------set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_1]vg.Line_Hangup $RV[Conf_LineId_1]set vg = Nothing------------------------------124322.315 11 173 58 WARN dial DbProcessQueue_DoQueuedWork unhandled strDbInteractionType=[]. Running CoreSQL124322.316 11 db PerformWork_RunCoreSql assign sql124322.316 107 10 4 rv replace end [set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect 10, 10vg.Line_Hangup 10set vg = Nothing]124322.317 107 10 4 there was 0 matches for 'Script'124322.317 107 10 4 not saving script (null or empty)124322.316 11 db PerformWork_RunCoreSql ExecuteNonQuery call: UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@124322, key_*@124322, ', TimeDTMFpressed='2014-08-20 12:43:22' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');124322.317 107 10 4 runscr waiting. wait=1124322.317 107 10 4 moh file not specified124322.317 107 10 4 runscr .Execute call124322.318 108 rem remoting link constructor activated: vgServices_CommandLink124322.319 11 db PerformWork_RunCoreSql cmd_CoreSql.ExecuteNonQuery returned124322.319 108 rem Bridge_Disconnect 10, 10124322.319 108 Bridge_Disconnect 10, 10124322.320 108 Bridge_Disconnect sChDlgcName1=dtiB1T4 since sDevName1=Dialogic dxxxB1C4124322.320 108 Bridge_Disconnect sChDlgcName2=dtiB1T4 since sDevName2=Dialogic dxxxB1C4124322.335 108 Bridge_Disconnect iLineId1=10, iLineId2=10, iOtherLeg=173124322.335 108 WARN Bridge_Disconnect iOtherLeg=173 but iLineId2=10124322.336 108 rem Line_Hangup 10124322.337 108 10 4 q_scr + cmdHangupCall 0124322.337 7 10 4 q_scr run cmdHangupCall sCode=[] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00 max:41|00:00:26.3005043124322.337 107 10 4 runscr .Execute returned. iRunWait=1124322.337 107 10 4 runscr RunWait_1 script completed124322.337 107 10 4 runscr sModuleClearScriptProcessWasCalledFrom is current module disconect and back to menu, cleearing setting124322.338 107 10 4 moh not stopping play, bDoNotStopMoh==true124322.338 107 10 4 runscr RunWait_1 bScriptHasSetNextModule was set. exiting thread.124322.337 7 10 4 HangupCall (qScr) crn_in=0, L1=Connected, L2=Running_Normal, lPlayId=0, lRecId=-2608124322.338 7 10 4 ccrn_connected=2fc01bf, crn_NewIncomingCall=0, crn_CurrentMakeCall=0, crn_InProcessOfReleasing=0124322.338 7 10 4 RecSoundStop begin trunc100ms=0, sCaller=Line_Hangup_Main, lRecId=-2608124322.339 7 10 4 RecSoundStop lRecId_InProcessOfStopping=-2608, lRecId=0124322.339 7 10 4 q_tel + cmd_RecordStop [0,0,0,0,0][||||]124322.339 7 10 4 rv add Hangup Source|qScr124322.339 7 10 4 d added Hangup Source | qScr124322.339 8 10 4 q_tel run cmd_RecordStop 0 00:00:00 max:18|00:00:01.1120636124322.339 7 10 4 d added Hangup Source | qScr How to set VBScript properly? Share this post Link to post
SupportTeam Report post Posted 08/20/2014 11:10 AM Your VBScript is: set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_1]vg.Line_Hangup $RV[Conf_LineId_1]set vg = Nothing example from two years ago suggested to use $RV[Conf_LineId_2], not $RV[Conf_LineId_1] Share this post Link to post
invoso.com Report post Posted 08/20/2014 12:13 PM 141032.662 7 22 8 rv add switch_disconnect|*141032.662 7 22 8 d added switch_disconnect | *141032.663 7 22 8 d added switch_disconnect | *141032.663 7 22 8 rvns add switch_disconnect_PathTaken|star141032.664 7 22 8 d added switch_disconnect_PathTaken | star141032.664 7 22 8 t timer clear (force=False)141032.664 7 22 8 RunModule start Run VB Script, [disconect and back to menu], iModuleIdx=1409, previous: vgm=1411, vgs=22:22141032.665 7 22 8 t timer set 30 sec : EV_TIMEOUT_HANGUP141032.665 7 22 8 QueueUserWorkItem scrmod_RunVbs.RunModule call141032.665 7 155 52 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0050003 max:26|00:00:15.1668675141032.666 7 155 52 se OTHER_LEG_* 42 0|0|0 || LineState=LS_XFER_9_WAITENDCALL_DialingSide141032.665 107 22 8 strIni_moduleRunScript_Engine=[ClearScriptV8]141032.666 107 22 8 runscr start - ClearScriptV8141032.667 107 22 8 runscrunscr new VBScriptEngine call141032.666 7 155 52 ct calltrack_set ID=0, guid=c935f635-2268-45bf-8292-2c172e224f0f141032.668 107 22 8 runscrunscr new engine created141032.668 107 22 8 state [disconect and back to menu] RunScript, wait=1141032.668 107 22 8 rv replace start------------------------------set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_2]vg.Line_Hangup $RV[Conf_LineId_2]set vg = Nothing------------------------------141032.668 7 155 52 ct calltrack_set sql UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@141032, ', TimeDTMFpressed='2014-08-20 14:10:32' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');141032.669 107 22 8 rv replace end [set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect 22, 155vg.Line_Hangup 155set vg = Nothing]141032.669 107 22 8 there was 0 matches for 'Script'141032.669 7 155 52 LsXfer_9_WaitEndCall_OutLeg : [42:OTHER_LEG_*] 0,0,0,,,141032.670 107 22 8 not saving script (null or empty)141032.671 107 22 8 runscr waiting. wait=1141032.669 11 155 52 WARN dial DbProcessQueue_DoQueuedWork unhandled strDbInteractionType=[]. Running CoreSQL141032.671 11 db PerformWork_RunCoreSql assign sql141032.672 11 db PerformWork_RunCoreSql ExecuteNonQuery call: UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@141032, ', TimeDTMFpressed='2014-08-20 14:10:32' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');141032.671 107 22 8 moh file not specified141032.672 107 22 8 runscr .Execute call141032.674 71 rem remoting link constructor activated: vgServices_CommandLink141032.676 71 rem Bridge_Disconnect 22, 155141032.676 71 Bridge_Disconnect 22, 155141032.676 71 Bridge_Disconnect sChDlgcName1=dtiB1T8 since sDevName1=Dialogic dxxxB2C4141032.677 71 Bridge_Disconnect sChDlgcName2=dtiB2T22 since sDevName2=Dialogic dxxxB14C2141032.689 71 Bridge_Disconnect iLineId1=22, iLineId2=155, iOtherLeg=155141032.690 71 rem Line_Hangup 155141032.691 71 155 52 q_scr + cmdHangupCall 0141032.691 7 155 52 q_scr run cmdHangupCall sCode=[] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00 max:26|00:00:15.1668675141032.692 7 155 52 HangupCall (qScr) crn_in=0, L1=Connected, L2=Running_Normal, lPlayId=0, lRecId=0141032.691 107 22 8 runscr .Execute returned. iRunWait=1141032.692 107 22 8 runscr RunWait_1 script completed141032.693 107 22 8 runscr sModuleClearScriptProcessWasCalledFrom is current module disconect and back to menu, cleearing setting141032.693 107 22 8 moh not stopping play, bDoNotStopMoh==true141032.693 107 22 8 runscr RunWait_1 taking fail path as script completed and no next module set141032.692 7 155 52 ccrn_connected=2840127, crn_NewIncomingCall=0, crn_CurrentMakeCall=0, crn_InProcessOfReleasing=0141032.696 7 155 52 rv add Hangup Source|qScr141032.696 107 22 8 HangupCall (RunModule_Script_AfterScriptStarted_1) crn_in=0, L1=Connected, L2=Running_Normal, lPlayId=0, lRecId=-769617141032.697 107 22 8 ccrn_connected=2840123, crn_NewIncomingCall=0, crn_CurrentMakeCall=0, crn_InProcessOfReleasing=0141032.697 107 22 8 RecSoundStop begin trunc100ms=0, sCaller=Line_Hangup_Main, lRecId=-769617141032.697 107 22 8 RecSoundStop lRecId_InProcessOfStopping=-769617, lRecId=0141032.698 107 22 8 q_tel + cmd_RecordStop [0,0,0,0,0][||||]141032.696 7 155 52 d added Hangup Source | qScr141032.698 7 155 52 d added Hangup Source | qScr In Paths I have: on {success} goto [..........\Scripts\script.vgs|] Share this post Link to post
SupportTeam Report post Posted 08/20/2014 09:14 PM Trace shows: 141032.693 107 22 8 runscr RunWait_1 taking fail path as script completed and no next module set The VBScript is not returning a result, but the 'Run VBScript' module was waiting for script to complete and return a result. Suggest adding a "Run_ResultReturn" or a "Script_Goto" etc. command. eg: set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_2]vg.Line_Hangup $RV[Conf_LineId_2] vg.Run_ResultReturn $RV_LINEID, "success"set vg = Nothing Share this post Link to post
invoso.com Report post Posted 08/21/2014 07:24 AM 092242.899 7 34 12 rv add switch_disconnect|*092242.899 7 34 12 d added switch_disconnect | *092242.899 7 34 12 d added switch_disconnect | *092242.899 7 34 12 rvns add switch_disconnect_PathTaken|star092242.900 7 34 12 d added switch_disconnect_PathTaken | star092242.900 7 34 12 t timer clear (force=False)092242.900 7 34 12 RunModule start Run VB Script, [disconect and back to menu], iModuleIdx=1193, previous: vgm=1191, vgs=20:20092242.900 11 db PerformWork_RunCoreSql cmd_CoreSql.ExecuteNonQuery returned092242.900 7 34 12 t timer set 30 sec : EV_TIMEOUT_HANGUP092242.900 7 34 12 QueueUserWorkItem scrmod_RunVbs.RunModule call092242.901 7 34 12 q_scr run evScriptEvent sCode=[*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0050003 max:23|00:00:23.3013327092242.901 7 34 12 se * 42 0|0|0 || LineState=LS_MODULE_TRANSITION092242.901 107 34 12 strIni_moduleRunScript_Engine=[ClearScriptV8]092242.901 107 34 12 runscr start - ClearScriptV8092242.901 107 34 12 runscrunscr new VBScriptEngine call092242.901 7 179 60 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0040003 max:23|00:00:23.3013327092242.902 7 179 60 se OTHER_LEG_* 42 0|0|0 || LineState=LS_XFER_9_WAITENDCALL_DialingSide092242.902 107 34 12 runscrunscr new engine created092242.902 107 34 12 state [disconect and back to menu] RunScript, wait=1092242.902 7 179 60 ct calltrack_set ID=0, guid=c935f635-2268-45bf-8292-2c172e224f0f092242.902 7 179 60 ct calltrack_set sql UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@092242, key_*@092242, ', TimeDTMFpressed='2014-08-21 09:22:42' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');092242.902 107 34 12 rv replace start------------------------------set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_2]vg.Line_Hangup $RV[Conf_LineId_2]vg.Run_ResultReturn $RV_LINEID, "success"set vg = Nothing------------------------------092242.902 7 179 60 LsXfer_9_WaitEndCall_OutLeg : [42:OTHER_LEG_*] 0,0,0,,,092242.903 107 34 12 rv replace end [set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect 34, 179vg.Line_Hangup 179vg.Run_ResultReturn 34, "success"set vg = Nothing]092242.903 107 34 12 there was 0 matches for 'Script'092242.903 7 34 12 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0050003 max:23|00:00:23.3013327092242.903 7 34 12 se OTHER_LEG_* 42 0|0|0 || LineState=LS_MODULE_TRANSITION092242.903 107 34 12 not saving script (null or empty)092242.904 107 34 12 runscr waiting. wait=1092242.904 107 34 12 moh file not specified092242.904 107 34 12 runscr .Execute call092242.902 11 179 60 WARN dial DbProcessQueue_DoQueuedWork unhandled strDbInteractionType=[]. Running CoreSQL092242.904 11 db PerformWork_RunCoreSql assign sql092242.905 11 db PerformWork_RunCoreSql ExecuteNonQuery call: UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@092242, key_*@092242, ', TimeDTMFpressed='2014-08-21 09:22:42' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');092242.905 108 rem remoting link constructor activated: vgServices_CommandLink092242.906 108 rem Bridge_Disconnect 34, 179092242.906 108 Bridge_Disconnect 34, 179092242.906 108 Bridge_Disconnect sChDlgcName1=dtiB1T12 since sDevName1=Dialogic dxxxB3C4092242.906 108 Bridge_Disconnect sChDlgcName2=dtiB2T30 since sDevName2=Dialogic dxxxB16C2092242.907 11 db PerformWork_RunCoreSql cmd_CoreSql.ExecuteNonQuery returned092242.918 108 Bridge_Disconnect iLineId1=34, iLineId2=179, iOtherLeg=179092242.920 108 rem Line_Hangup 179092242.920 108 179 60 q_scr + cmdHangupCall 0092242.920 7 179 60 q_scr run cmdHangupCall sCode=[] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00 max:23|00:00:23.3013327092242.920 7 179 60 HangupCall (qScr) crn_in=0, L1=Connected, L2=Running_Normal, lPlayId=0, lRecId=0092242.920 7 179 60 ccrn_connected=2980137, crn_NewIncomingCall=0, crn_CurrentMakeCall=0, crn_InProcessOfReleasing=0092242.921 7 179 60 rv add Hangup Source|qScr092242.920 108 34 12 rem Run_ResultReturn [success] 7092242.921 108 34 12 q_scr + cmdRun_ResultReturn 0092242.921 7 179 60 d added Hangup Source | qScr092242.921 7 179 60 d added Hangup Source | qScr092242.922 7 179 60 HangupCall sScriptToRunOnHangup=[C:\Program Files (x86)\VoiceGuide\Scripts\manager\manager_termination.vgs]092242.922 7 179 60 no script running on this line. AfterHangup script will not be ran.092242.922 7 179 60 rv add DropCall_Source|set_dialout_status092242.921 107 34 12 runscr .Execute returned. iRunWait=1092242.922 107 34 12 runscr RunWait_1 script completed092242.922 7 179 60 d added DropCall_Source | set_dialout_status092242.922 7 179 60 d added DropCall_Source | set_dialout_status092242.922 107 34 12 runscr sModuleClearScriptProcessWasCalledFrom is current module disconect and back to menu, cleearing setting092242.923 107 34 12 moh not stopping play, bDoNotStopMoh==true092242.923 7 179 60 crn 0 set to crn_connected 2980137092242.923 7 179 60 L1_set Disconnect_Pending (iState=LS_XFER_9_WAITENDCALL_DialingSide)092242.923 7 179 60 state Hanging up... [qScr] Share this post Link to post
SupportTeam Report post Posted 08/21/2014 07:59 AM Looks fine. Is there a problem? Share this post Link to post
invoso.com Report post Posted 08/21/2014 09:51 AM I use additional path: OTHER_LEG_* and with this working fine Share this post Link to post
invoso.com Report post Posted 08/21/2014 10:13 AM Other strange option. VG now showing this: 120340.399 7 37 13 LsGetNbrsRxDigits *,OTHER_LEG_*120340.399 7 37 13 path {OTHER_LEG_*} found (at offset 87)120340.399 7 37 13 FindNextVgmTitleInPathList: next module title is=[disconect and back to menu]120340.399 7 37 13 rv add switch_disconnect_recorded_call|OTHER_LEG_*120340.399 7 37 13 d added switch_disconnect_recorded_call | OTHER_LEG_*120340.400 7 37 13 d added switch_disconnect_recorded_call | OTHER_LEG_*120340.400 7 37 13 t timer clear (force=False)120340.400 7 37 13 RunModule start Run VB Script, [disconect and back to menu], iModuleIdx=1075, previous: vgm=1030, vgs=19:19120340.400 7 37 13 t timer set 30 sec : EV_TIMEOUT_HANGUP120340.400 7 37 13 QueueUserWorkItem scrmod_RunVbs.RunModule call120340.400 7 37 13 q_scr run evScriptEvent sCode=[*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0110007 max:36|00:00:21.8362490120340.401 7 37 13 se * 42 0|0|0 || LineState=LS_MODULE_TRANSITION120340.400 98 37 13 strIni_moduleRunScript_Engine=[ClearScriptV8]120340.401 98 37 13 runscr start - ClearScriptV8120340.401 98 37 13 runscrunscr new VBScriptEngine call120340.401 11 db PerformWork_RunCoreSql cmd_CoreSql.ExecuteNonQuery returned120340.401 7 158 53 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0110006 max:36|00:00:21.8362490120340.402 7 158 53 se OTHER_LEG_* 42 0|0|0 || LineState=LS_XFER_9_WAITENDCALL_DialingSide120340.402 98 37 13 runscrunscr new engine created120340.402 98 37 13 state [disconect and back to menu] RunScript, wait=1120340.402 7 158 53 ct calltrack_set ID=0, guid=c935f635-2268-45bf-8292-2c172e224f0f120340.402 7 158 53 ct calltrack_set sql UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@120340, key_*@120340, ', TimeDTMFpressed='2014-08-21 12:03:40' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');120340.402 98 37 13 rv replace start------------------------------set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect $RV_LINEID, $RV[Conf_LineId_2]vg.Line_Hangup $RV[Conf_LineId_2]vg.Run_ResultReturn $RV_LINEID, "success"set vg = Nothing------------------------------120340.402 7 158 53 LsXfer_9_WaitEndCall_OutLeg : [42:OTHER_LEG_*] 0,0,0,,,120340.403 98 37 13 rv replace end [set vg = CreateObject("vgServices.CommandLink")vg.Bridge_Disconnect 37, 158vg.Line_Hangup 158vg.Run_ResultReturn 37, "success"set vg = Nothing]120340.404 98 37 13 there was 0 matches for 'Script'120340.404 98 37 13 not saving script (null or empty)120340.404 98 37 13 runscr waiting. wait=1120340.403 11 158 53 WARN dial DbProcessQueue_DoQueuedWork unhandled strDbInteractionType=[]. Running CoreSQL120340.405 11 db PerformWork_RunCoreSql assign sql120340.405 11 db PerformWork_RunCoreSql ExecuteNonQuery call: UPDATE calltrack SET Outcome='Answered_Live_Key', History='key_*@120340, key_*@120340, ', TimeDTMFpressed='2014-08-21 12:03:40' WHERE (QueID=0 OR QueGUID='c935f635-2268-45bf-8292-2c172e224f0f');120340.404 7 37 13 q_scr run evScriptEvent sCode=[OTHER_LEG_*] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00.0070004 max:36|00:00:21.8362490120340.405 7 37 13 se OTHER_LEG_* 42 0|0|0 || LineState=LS_RUN_WAITTILLFINISHED120340.405 7 37 13 LsRunWaitTillFinished OTHER_LEG_* lCode2Str=*120340.406 7 37 13 path {OTHER_LEG_*} not found120340.406 7 37 13 path {*} not found120340.405 98 37 13 moh file not specified120340.407 98 37 13 runscr .Execute call120340.407 11 db PerformWork_RunCoreSql cmd_CoreSql.ExecuteNonQuery returned120340.408 108 rem remoting link constructor activated: vgServices_CommandLink120340.409 108 rem Bridge_Disconnect 37, 158120340.409 108 Bridge_Disconnect 37, 158120340.409 108 Bridge_Disconnect sChDlgcName1=dtiB1T13 since sDevName1=Dialogic dxxxB4C1120340.409 108 Bridge_Disconnect sChDlgcName2=dtiB2T23 since sDevName2=Dialogic dxxxB14C3120340.421 108 Bridge_Disconnect iLineId1=37, iLineId2=158, iOtherLeg=158120340.422 108 rem Line_Hangup 158120340.422 108 158 53 q_scr + cmdHangupCall 0120340.422 7 158 53 q_scr run cmdHangupCall sCode=[] iActionID=0, crn=0 [0|0|0|0|0][|||||] 00:00:00 max:36|00:00:21.8362490120340.422 7 158 53 HangupCall (qScr) crn_in=0, L1=Connected, L2=Running_Normal, lPlayId=0, lRecId=0120340.423 7 158 53 ccrn_connected=2a4025a, crn_NewIncomingCall=0, crn_CurrentMakeCall=0, crn_InProcessOfReleasing=0120340.423 7 158 53 rv add Hangup Source|qScr120340.423 108 37 13 rem Run_ResultReturn [success] 7120340.423 108 37 13 q_scr + cmdRun_ResultReturn 0120340.423 7 158 53 d added Hangup Source | qScr120340.424 7 158 53 d added Hangup Source | qScr120340.424 98 37 13 runscr .Execute returned. iRunWait=1120340.424 98 37 13 runscr RunWait_1 script completed120340.424 98 37 13 runscr sModuleClearScriptProcessWasCalledFrom is current module disconect and back to menu, cleearing setting120340.424 98 37 13 moh not stopping play, bDoNotStopMoh==true120340.424 98 37 13 runscr RunWait_1 bScriptHasSetNextModule was set. exiting thread.120340.424 7 158 53 HangupCall sScriptToRunOnHangup=[C:\Program Files (x86)\VoiceGuide\Scripts\manager\manager_termination.vgs]120340.425 7 158 53 no script running on this line. AfterHangup script will not be ran.120340.425 7 158 53 rv add DropCall_Source|set_dialout_status120340.425 7 158 53 d added DropCall_Source | set_dialout_status120340.425 7 158 53 d added DropCall_Source | set_dialout_status120340.426 7 158 53 crn 0 set to crn_connected 2a4025a120340.426 7 158 53 L1_set Disconnect_Pending (iState=LS_XFER_9_WAITENDCALL_DialingSide)120340.426 7 158 53 state Hanging up... [qScr] VG recognize pressed * in capture module in next module (VBS) Share this post Link to post
SupportTeam Report post Posted 08/22/2014 03:11 AM Can you please post a fuller trace excerpt - from the time that the outgoing 2nd leg of the conference call was being initiated (or just post the whole vgEngine file from which excerpt was taken). When posting traces please .ZIP them up and post as attachments. Share this post Link to post
invoso.com Report post Posted 09/10/2014 07:33 AM I attached requested logs asterisk to back.zip Share this post Link to post
SupportTeam Report post Posted 09/10/2014 09:18 AM Attached trace does not seem to contain any * keypresses to disconnect the conference. ktTel does show an error like this: 678 165801.815 3448 rec2 open save file name=C:\callrecord\ID20140909165744201.wav => -1, [dx_fileerrno=2, ENOENT, No such file or directory; invalid device name; file or path not found.] Share this post Link to post