Re: [Freeswitch-users] mod_python post-processing after hangup

2008-09-12 Thread Novak Joe
Hi, I received loads of useful hints on IRC yesterday regarding this problem, and as a result was able to come up with a decent solution which just involves using the API and 'runtime' functions to run my post-processing job in a thread after hangup. I don't think it is possible to pass objects

Re: [Freeswitch-users] mod_python post-processing after hangup

2008-09-10 Thread Michael Collins
To: freeswitch-users@lists.freeswitch.org > Subject: [Freeswitch-users] mod_python post-processing after hangup > > Hi, > I'd like to run some process after a hangup, in the background. > > I'm using mod_python and would like to run something after a call > ends. In t

[Freeswitch-users] mod_python post-processing after hangup

2008-09-10 Thread Novak Joe
Hi, I'd like to run some process after a hangup, in the background. I'm using mod_python and would like to run something after a call ends. In the snippet below I'd like the call to hangup at 'session.hangup(1)' then the consoleLog to print the 'Testing' message 15 seconds later. At pr