<?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 prompt not playing in outgoing dialpeer in Call Control</title>
    <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569098#M2036</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are playing prompt for incoming leg for script under outgoing dial peer, just issue leg connect and media play command as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;set dest [infotag get evt_handoff dnis]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg setupack leg_incoming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg proceeding leg_incoming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;leg connect leg_incoming&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; media play leg_incoming $prompt1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure you are applying script under correct outgoing dial peer, you may go in loop with script .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Nov 2017 05:56:27 GMT</pubDate>
    <dc:creator>Raghavendra G V</dc:creator>
    <dc:date>2017-11-30T05:56:27Z</dc:date>
    <item>
      <title>TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569096#M2034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;I would appreciate your help on this. I used &lt;SPAN class="jive-wiki-body-file"&gt;&lt;SPAN class="jive-wiki-body-file-info"&gt;&lt;A _jive_internal="true" href="https://community.cisco.com/servlet/JiveServlet/downloadBody/51361-102-1-85598/play_message_2_calling_then_connect.tcl.zip" onclick="" rel="nozoom"&gt;&lt;SPAN style="color: #0a63a7; text-decoration: underline;"&gt;play_message_2_calling_then_connect.tcl&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; script to play a prompt and connected the called party in the incoming POTS dial peer and it worked perfectly fine but unfortunately due to ISDN overlap receiving the digits I have to move this to the outgoing voip dialpeer and the prompt is not playing any more under outgoing voip dialpeer. I understand this script is done for incoming dialpeer so I modified the script to adopt to the outgoing dialpeer but still I cant get it working. Can someone let me know where I am missing the point here. Please see the script below.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;===================&lt;/P&gt;&lt;P&gt;# initialize the parameters that configured from IOS CLI&lt;BR /&gt;proc init_configs { }&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global prompt1&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if [infotag get cfg_avpair_exists prompt-1] {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set prompt1 [string trim [infotag get cfg_avpair prompt-1]]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;#procedure to play audio file on incoming dial peer&lt;BR /&gt;proc act_Media { } {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global prompt1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global dest&lt;BR /&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set dest [infotag get leg_dnis]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg setupack leg_outgoing&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg proceeding leg_outgoing&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg connect leg_outgoing&lt;/P&gt;&lt;P&gt; media play leg_outgoing $prompt1&lt;/P&gt;&lt;P&gt; leg setup leg_outgoing&lt;BR /&gt; &lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# setup the call, connect caller to called party&lt;BR /&gt;proc act_Setup { } {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global dest&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; Tcl: proc act_Setup &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; TCL:Final Dest: $dest &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # handoff appl leg_incoming default "DESTNATION=$dest"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; handoff appl leg_outgoing default "DESTINATION=$dest"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg setup $dest callInfo leg_incoming &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; act_Cleanup&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;proc act_CallSetupDone { } {&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; Tcl: act_CallSetupDone &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set status [infotag get evt_status]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; handoff appl leg_all default&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call close&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;# disconnect the call&lt;BR /&gt;proc act_Cleanup { } {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; Tcl: act_Cleanup &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call close&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;init_configs&lt;/P&gt;&lt;P&gt;set fsm(any_state,ev_disconnected)&amp;nbsp; "act_Cleanup&amp;nbsp; same_state"&lt;BR /&gt;set fsm(CALL_INIT,ev_handoff)&amp;nbsp; "act_Media PLAYPROMPT"&lt;BR /&gt;set fsm(PLAYPROMPT,ev_media_done) "act_Setup PLACECALL"&lt;BR /&gt;set fsm(PLACECALL,ev_setup_done)&amp;nbsp;&amp;nbsp; "act_CallSetupDone&amp;nbsp; CALLACTIVE"&lt;BR /&gt;set fsm(CALLACTIVE,ev_disconnected)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "act_Cleanup CALLDISCONNECT"&lt;BR /&gt;set fsm(CALLDISCONNECT,ev_disconnected)&amp;nbsp;&amp;nbsp; "act_Cleanup&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; same_state"&lt;BR /&gt;set fsm(CALLDISCONNECT,ev_media_done)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "act_Cleanup&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; same_state"&lt;BR /&gt;set fsm(CALLDISCONNECT,ev_disconnect_done) "act_Cleanup&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; same_state"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;fsm define fsm CALL_INIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=================================================&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 16:34:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569096#M2034</guid>
      <dc:creator>adam1177671</dc:creator>
      <dc:date>2017-11-29T16:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569097#M2035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Niyaz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are applying script under outgoing dial peer, do you want to play prompt to calling party(incoming) or to the called party?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 04:23:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569097#M2035</guid>
      <dc:creator>Raghavendra G V</dc:creator>
      <dc:date>2017-11-30T04:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569098#M2036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are playing prompt for incoming leg for script under outgoing dial peer, just issue leg connect and media play command as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;set dest [infotag get evt_handoff dnis]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg setupack leg_incoming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg proceeding leg_incoming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;leg connect leg_incoming&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; media play leg_incoming $prompt1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure you are applying script under correct outgoing dial peer, you may go in loop with script .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 05:56:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569098#M2036</guid>
      <dc:creator>Raghavendra G V</dc:creator>
      <dc:date>2017-11-30T05:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569099#M2037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghavendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for the reply and just to answer the initial question. Yes the prompt should be played to the calling party (external caller) and the user phone should ring once the prompt finished playing to the other side. It worked fine when I used the script under the incoming POTS dialpeer but since I moved this under outgoing voip dialpeer it stopped working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I modified the script as per your suggestion and still it doesn't play but the phone rings. Please see my configs below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application Registration&lt;/P&gt;&lt;P&gt;====================&lt;/P&gt;&lt;P&gt; service welcome_out bootflash:play_msg_out.tcl&lt;/P&gt;&lt;P&gt;&amp;nbsp; param prompt-1 bootflash:calls_recorded.wav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dial peer incoming&lt;/P&gt;&lt;P&gt;==============&lt;/P&gt;&lt;P&gt;dial-peer voice 19 pots&lt;/P&gt;&lt;P&gt; translation-profile incoming TRANS-IN&lt;/P&gt;&lt;P&gt; incoming called-number 1237560&lt;/P&gt;&lt;P&gt; direct-inward-dial&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dial peer outgoing&lt;/P&gt;&lt;P&gt;==============&lt;/P&gt;&lt;P&gt;dial-peer voice 560 voip&lt;/P&gt;&lt;P&gt; translation-profile outgoing PLAYPROMPT&lt;/P&gt;&lt;P&gt; service welcome_out&lt;/P&gt;&lt;P&gt; destination-pattern 9001237560&amp;nbsp; &amp;lt;---- (this is getting translated/pre-fixed under pots TRANS-IN above)&lt;/P&gt;&lt;P&gt; session protocol sipv2&lt;/P&gt;&lt;P&gt; session target ipv4:x.x.x.x&lt;/P&gt;&lt;P&gt; voice-class sip bind control source-interface Loopback0&lt;/P&gt;&lt;P&gt; voice-class sip bind media source-interface Loopback0&lt;/P&gt;&lt;P&gt; dtmf-relay cisco-rtp&lt;/P&gt;&lt;P&gt; codec g711ulaw&lt;/P&gt;&lt;P&gt; no vad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script&lt;/P&gt;&lt;P&gt;========================&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# initialize the parameters that configured from IOS CLI&lt;BR /&gt;proc init_configs { }&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global prompt1&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if [infotag get cfg_avpair_exists prompt-1] {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set prompt1 [string trim [infotag get cfg_avpair prompt-1]]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;#procedure to play audio file on incoming dial peer&lt;BR /&gt;proc act_Media { } {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global prompt1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global dest&lt;BR /&gt; &lt;/P&gt;&lt;P&gt; &lt;BR /&gt; set dest [infotag get evt_handoff dnis]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; leg connect leg_incoming&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; media play leg_incoming $prompt1&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# setup the call, connect caller to called party&lt;BR /&gt;proc act_Setup { } {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; global dest&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; Tcl: proc act_Setup &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; TCL:Final Dest: $dest &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # handoff appl leg_incoming default "DESTNATION=$dest"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; handoff appl leg_outgoing default "DESTINATION=$dest"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #leg setup $dest callInfo leg_incoming &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; act_Cleanup&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;proc act_CallSetupDone { } {&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; Tcl: act_CallSetupDone &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set status [infotag get evt_status]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; handoff appl leg_all default&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call close&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;# disconnect the call&lt;BR /&gt;proc act_Cleanup { } {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; puts "&amp;gt;&amp;gt;&amp;gt; Tcl: act_Cleanup &amp;lt;&amp;lt;&amp;lt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call close&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;init_configs&lt;/P&gt;&lt;P&gt;set fsm(any_state,ev_disconnected)&amp;nbsp; "act_Cleanup&amp;nbsp; same_state"&lt;BR /&gt;set fsm(CALL_INIT,ev_handoff)&amp;nbsp; "act_Media PLAYPROMPT"&lt;BR /&gt;set fsm(PLAYPROMPT,ev_media_done) "act_Setup PLACECALL"&lt;BR /&gt;set fsm(PLACECALL,ev_setup_done)&amp;nbsp;&amp;nbsp; "act_CallSetupDone&amp;nbsp; CALLACTIVE"&lt;BR /&gt;set fsm(CALLACTIVE,ev_disconnected)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "act_Cleanup CALLDISCONNECT"&lt;BR /&gt;set fsm(CALLDISCONNECT,ev_disconnected)&amp;nbsp;&amp;nbsp; "act_Cleanup&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; same_state"&lt;BR /&gt;set fsm(CALLDISCONNECT,ev_media_done)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "act_Cleanup&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; same_state"&lt;BR /&gt;set fsm(CALLDISCONNECT,ev_disconnect_done) "act_Cleanup&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; same_state"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;fsm define fsm CALL_INIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;===========================&lt;/P&gt;&lt;P&gt;Please see what else I am doing wrong here and let me know your thoughts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 11:54:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569099#M2037</guid>
      <dc:creator>adam1177671</dc:creator>
      <dc:date>2017-11-30T11:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569100#M2038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To configure script under outgoing dial peer you need to configure as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dial-peer voice 560 voip&lt;/P&gt;&lt;P&gt;translation-profile outgoing PLAYPROMPT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;service welcome_out out-bound&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Handoff command with leg_incoming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;handoff appl leg_incoming default "DESTNATION=$dest"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can enable below debugs to check logs.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;debug voip app&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 12:08:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569100#M2038</guid>
      <dc:creator>Raghavendra G V</dc:creator>
      <dc:date>2017-11-30T12:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569101#M2039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Superb!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That works as expected. Thanks Raghavendra for your time and I really appreciate it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2017 13:01:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/3569101#M2039</guid>
      <dc:creator>adam1177671</dc:creator>
      <dc:date>2017-11-30T13:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: TCL prompt not playing in outgoing dialpeer</title>
      <link>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/5220793#M3573</link>
      <description>&lt;P&gt;Used the same script applied on outbound dial-peer, message is played, but the outgoing leg is not created. Any guess what might be the reason?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 09:52:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/call-control/tcl-prompt-not-playing-in-outgoing-dialpeer/m-p/5220793#M3573</guid>
      <dc:creator>stoyan.stamatov</dc:creator>
      <dc:date>2024-11-06T09:52:06Z</dc:date>
    </item>
  </channel>
</rss>

