Thanks for your replay. I don't know what is latest trunk. Is it latest version? I'm using freeswitch 1.0.4.<br><br><br><div class="gmail_quote">On Tue, Sep 22, 2009 at 8:09 PM, Anthony Minessale <span dir="ltr"><<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">The reason is you cannot complete the hangup until the script exits.<br>On the bright side, if you update to latest trunk it will probably work more how you want it to <br>
because a recent change will make this possible.<br>
<br><br><div class="gmail_quote">On Tue, Sep 22, 2009 at 4:30 AM, lakshmanan <span dir="ltr"><<a href="mailto:lakindia89@gmail.com" target="_blank">lakindia89@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
Hi all, I've the following mod_perl program to execute when I call to an<br>
extension (say 777).<br>
I use twinkle as a soft phone, to make calls.<br>
<br>
#!/usr/bin/perl<br>
use strict;<br>
use freeswitch;<br>
our $session;<br>
$session->answer();<br>
if($session->ready())<br>
{<br>
my $uuid=$session->getVariable("uuid");<br>
freeswitch::consoleLog("INFO","UUID is $uuid\n");<br>
<br>
freeswitch::consoleLog("INFO","Session is answered\n");<br>
<br>
$session->execute("playback","/usr/local/freeswitch/sounds/en/us/callie/time/8000/day-1.wav");<br>
my $dtmf = $session->getDigits(4,"", 5000);<br>
freeswitch::consoleLog("INFO","I received $dtmf\n");<br>
$session->hangup("NORMAL_CLEARING");<br>
sleep(5);<br>
# Some other statements.<br>
}<br>
return 1;<br>
<br>
Everything is fine.<br>
After executing $session->hangup, I got NORMAL_CLEARING in my freeswitch<br>
console. But in my soft phone, still the channel is active for 5 seconds.<br>
The call got ended only after the 5 seconds sleep.<br>
<br>
But if I create my own session like<br>
my $session=new<br>
freeswitch::Session("user/1000");<br>
and I say $session->hangup(), it got terminated.<br>
<br>
I wanted to know why there is such difference?? or am I wrong??<br>
Please clarify me.<br>
<br>
<br>
--<br>
View this message in context: <a href="http://www.nabble.com/Mod_perl-%24session-in-not-hangup-tp25530646p25530646.html" target="_blank">http://www.nabble.com/Mod_perl-%24session-in-not-hangup-tp25530646p25530646.html</a><br>
Sent from the Freeswitch-users mailing list archive at Nabble.com.<br>
<br>
<br>
_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">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>
</blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>
GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org" target="_blank">sip:888@conference.freeswitch.org</a><br>
<a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400<br>
<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>