[Freeswitch-users] Originated session callback.

Michael Collins msc at freeswitch.org
Tue Apr 19 01:03:29 MSD 2011


What are you trying to accomplish with this script? Why are you creating a
new session right in the middle of handling an existing session? I am
curious to know what problem you are attempting to solve.

-MC

On Mon, Apr 18, 2011 at 5:35 AM, Mohammed Habib <habib at alexcoder.com> wrote:

> I need help getting events from originated session.
>
> This is my lua script:
>
> function onInput_MainSession(s, type, obj)
>    -- This one is working fine.
>    freeswitch.consoleLog("info", "Callback with type " .. type .. "\n");
> end
>
> function onInput_NewSession(s, type, obj)
>    -- This one is never called.
>    freeswitch.consoleLog("info", "Callback with type " .. type .. "\n");
> end
>
> session:answer();
> session:setInputCallback("onInput_MainSession");
> session:sleep(200);
> session:execute("detect_speech", "unimrcp testgrammer trestgrammer");
>
> newsession = freeswitch.Session("user/1002");
> newsession:setInputCallback("onInput_NewSession");
> newsession:sleep(200);
> newsession:execute("detect_speech", "unimrcp testgrammer trestgrammer");
>
> while ((session:ready() == true) ) and (newsession:ready() == true) do
>     -- Loop
>     sleep(200);
> end
>
> I am unable to capture any of the new session events or dtmf.
>
> Please help.
>
> Thank you,
> Mohammed Habib
>
>
>
> _______________________________________________
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> http://www.freeswitch.org
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20110418/972690df/attachment.html 


More information about the FreeSWITCH-users mailing list