Re: [Freeswitch-users] Mod_perl $session in not hangup

2009-09-23 Thread Jason White
lakshmanan ganapathy lakindi...@gmail.com wrote:
 Thanks for your replay. I don't know what is latest trunk. Is it latest
 version? I'm using freeswitch 1.0.4.

It's the latest version from the svn repository. Use svn checkout, then
compile it as documented on the wiki.


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Mod_perl $session in not hangup

2009-09-23 Thread Michael Collins
On Tue, Sep 22, 2009 at 11:05 PM, Jason White ja...@jasonjgw.net wrote:

 lakshmanan ganapathy lakindi...@gmail.com wrote:
  Thanks for your replay. I don't know what is latest trunk. Is it latest
  version? I'm using freeswitch 1.0.4.

 It's the latest version from the svn repository. Use svn checkout, then
 compile it as documented on the wiki.


If you're on Linux/Unix you can go into the freeswitch src directory and do
make current which will do all the work for you.
-MC
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


[Freeswitch-users] Mod_perl $session in not hangup

2009-09-22 Thread lakshmanan

Hi all, I've the following mod_perl program to execute when I call to an
extension (say 777).
I use twinkle as a soft phone, to make calls.

#!/usr/bin/perl
use strict;
use freeswitch;
our $session;
$session-answer();
if($session-ready())
{
my $uuid=$session-getVariable(uuid);
freeswitch::consoleLog(INFO,UUID is $uuid\n);

freeswitch::consoleLog(INFO,Session is answered\n);
   
$session-execute(playback,/usr/local/freeswitch/sounds/en/us/callie/time/8000/day-1.wav);
my $dtmf = $session-getDigits(4,, 5000);
freeswitch::consoleLog(INFO,I received $dtmf\n);
$session-hangup(NORMAL_CLEARING);
sleep(5);
# Some other statements.
}
return 1;

Everything is fine. 
After executing $session-hangup, I got NORMAL_CLEARING in my freeswitch
console. But in my soft phone, still the channel is active for 5 seconds.
The call got ended only after the 5 seconds sleep.

But if I create my own session like 
  my $session=new
freeswitch::Session(user/1000);
and I say $session-hangup(), it got terminated.

I wanted to know why there is such difference?? or am I wrong??
Please clarify me.


-- 
View this message in context: 
http://www.nabble.com/Mod_perl-%24session-in-not-hangup-tp25530646p25530646.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Mod_perl $session in not hangup

2009-09-22 Thread Anthony Minessale
The reason is you cannot complete the hangup until the script exits.
On the bright side, if you update to latest trunk it will probably work more
how you want it to
because a recent change will make this possible.


On Tue, Sep 22, 2009 at 4:30 AM, lakshmanan lakindi...@gmail.com wrote:


 Hi all, I've the following mod_perl program to execute when I call to an
 extension (say 777).
 I use twinkle as a soft phone, to make calls.

 #!/usr/bin/perl
 use strict;
 use freeswitch;
 our $session;
 $session-answer();
 if($session-ready())
 {
my $uuid=$session-getVariable(uuid);
freeswitch::consoleLog(INFO,UUID is $uuid\n);

freeswitch::consoleLog(INFO,Session is answered\n);


 $session-execute(playback,/usr/local/freeswitch/sounds/en/us/callie/time/8000/day-1.wav);
my $dtmf = $session-getDigits(4,, 5000);
freeswitch::consoleLog(INFO,I received $dtmf\n);
$session-hangup(NORMAL_CLEARING);
sleep(5);
# Some other statements.
 }
 return 1;

 Everything is fine.
 After executing $session-hangup, I got NORMAL_CLEARING in my freeswitch
 console. But in my soft phone, still the channel is active for 5 seconds.
 The call got ended only after the 5 seconds sleep.

 But if I create my own session like
  my $session=new
 freeswitch::Session(user/1000);
 and I say $session-hangup(), it got terminated.

 I wanted to know why there is such difference?? or am I wrong??
 Please clarify me.


 --
 View this message in context:
 http://www.nabble.com/Mod_perl-%24session-in-not-hangup-tp25530646p25530646.html
 Sent from the Freeswitch-users mailing list archive at Nabble.com.


 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org




-- 
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire

AIM: anthm
MSN:anthony_miness...@hotmail.com msn%3aanthony_miness...@hotmail.com
GTALK/JABBER/PAYPAL:anthony.miness...@gmail.compaypal%3aanthony.miness...@gmail.com
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:8...@conference.freeswitch.org sip%3a...@conference.freeswitch.org
iax:gu...@conference.freeswitch.org/888
googletalk:conf+...@conference.freeswitch.orggoogletalk%3aconf%2b...@conference.freeswitch.org
pstn:213-799-1400
___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] Mod_perl $session in not hangup

2009-09-22 Thread lakshmanan ganapathy
Thanks for your replay. I don't know what is latest trunk. Is it latest
version? I'm using freeswitch 1.0.4.


On Tue, Sep 22, 2009 at 8:09 PM, Anthony Minessale 
anthony.miness...@gmail.com wrote:

 The reason is you cannot complete the hangup until the script exits.
 On the bright side, if you update to latest trunk it will probably work
 more how you want it to
 because a recent change will make this possible.


 On Tue, Sep 22, 2009 at 4:30 AM, lakshmanan lakindi...@gmail.com wrote:


 Hi all, I've the following mod_perl program to execute when I call to an
 extension (say 777).
 I use twinkle as a soft phone, to make calls.

 #!/usr/bin/perl
 use strict;
 use freeswitch;
 our $session;
 $session-answer();
 if($session-ready())
 {
my $uuid=$session-getVariable(uuid);
freeswitch::consoleLog(INFO,UUID is $uuid\n);

freeswitch::consoleLog(INFO,Session is answered\n);


 $session-execute(playback,/usr/local/freeswitch/sounds/en/us/callie/time/8000/day-1.wav);
my $dtmf = $session-getDigits(4,, 5000);
freeswitch::consoleLog(INFO,I received $dtmf\n);
$session-hangup(NORMAL_CLEARING);
sleep(5);
# Some other statements.
 }
 return 1;

 Everything is fine.
 After executing $session-hangup, I got NORMAL_CLEARING in my freeswitch
 console. But in my soft phone, still the channel is active for 5 seconds.
 The call got ended only after the 5 seconds sleep.

 But if I create my own session like
  my $session=new
 freeswitch::Session(user/1000);
 and I say $session-hangup(), it got terminated.

 I wanted to know why there is such difference?? or am I wrong??
 Please clarify me.


 --
 View this message in context:
 http://www.nabble.com/Mod_perl-%24session-in-not-hangup-tp25530646p25530646.html
 Sent from the Freeswitch-users mailing list archive at Nabble.com.


 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org




 --
 Anthony Minessale II

 FreeSWITCH http://www.freeswitch.org/
 ClueCon http://www.cluecon.com/
 Twitter: http://twitter.com/FreeSWITCH_wire

 AIM: anthm
 MSN:anthony_miness...@hotmail.com msn%3aanthony_miness...@hotmail.com
 GTALK/JABBER/PAYPAL:anthony.miness...@gmail.compaypal%3aanthony.miness...@gmail.com
 IRC: irc.freenode.net #freeswitch

 FreeSWITCH Developer Conference
 sip:8...@conference.freeswitch.org sip%3a...@conference.freeswitch.org
 iax:gu...@conference.freeswitch.org/888
 googletalk:conf+...@conference.freeswitch.orggoogletalk%3aconf%2b...@conference.freeswitch.org
 pstn:213-799-1400

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org