Get a console log w/ siptrace and drop it into <a href="http://pastebin.freeswitch.org">pastebin.freeswitch.org</a>. Be sure to use &quot;FreeSWITCH Log&quot; as the syntax highlighting. Usually the logs will have ample information to help determine what is happening.<div>
<br></div><div>-MC<br><br><div class="gmail_quote">On Tue, Aug 2, 2011 at 10:43 AM, Sam <span dir="ltr">&lt;<a href="mailto:lakersman2006@yahoo.com">lakersman2006@yahoo.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div style="color:#000;background-color:#fff;font-family:times new roman, new york, times, serif;font-size:12pt"><div>I am writing a perl script to bridge a call and need to be able to pass back any early media to the caller so I have set &quot;ignore_early_media=false&quot;. My problem is that when I am getting early media and then the call finishes, the app seems to be calling the bridge app again to make a new call, even though I have no loops programmed into the script. I have set &quot;hangup_after_bridge=true&quot; but that does not help. Any help would be greatly appreciated.<br>
</div><div><br></div><div><br></div><div>###################################My code#############################################<br></div><div>#!/usr/bin/perl -w</div><div><br>our $session;<br><br>my $ringback_tone = &quot;%(2000,4000,440,480)&quot;;    #US RINGBACK TONE</div>
<div><br>if ($session-&gt;ready ()) <br>{      <br>    #set
 bridge settings<br>    $session-&gt;execute(&quot;set&quot;, &quot;ringback=$ringback_tone&quot;);    #set the ringback tone type<br>    $session-&gt;execute(&quot;set&quot;, &quot;instant_ringback=true&quot;);    #set to ring instantly<br>
    $session-&gt;execute(&quot;set&quot;, &quot;ignore_early_media=false&quot;);    #set to NOT ignore early media<br>    $session-&gt;execute(&quot;set&quot;, &quot;call_timeout=20&quot;);        #only works if &quot;ignore_early_media=true&quot;<br>
    $session-&gt;execute(&quot;set&quot;, &quot;bridge_answer_timeout=20&quot;);                                                                 <br>    $session-&gt;execute(&quot;set&quot;,
 &quot;progress_timeout=15&quot;);<br>    $session-&gt;execute(&quot;set&quot;, &quot;continue_on_fail=false&quot;);<br>    $session-&gt;execute(&quot;set&quot;, &quot;hangup_after_bridge=true&quot;); <br>    $session-&gt;execute(&quot;set&quot;, &quot;bridge_pre_execute_bleg_app=info&quot;); <br>
    $session-&gt;execute(&quot;bridge&quot;, &quot;sofia/gateway/carrier1/5214498052059&quot;);<br>    $session-&gt;hangup();<br>}</div></div></div><br>_______________________________________________<br>
Join us at ClueCon 2011, Aug 9-11, Chicago<br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br></div>