<div dir="ltr">I need help getting events from originated session.<br><br>This is my lua script:<br><br>function onInput_MainSession(s, type, obj)<br>   -- This one is working fine.<br>   freeswitch.consoleLog(&quot;info&quot;, &quot;Callback with type &quot; .. type .. &quot;\n&quot;);<br>
end<br><br>function onInput_NewSession(s, type, obj)<br>   -- This one is never called.<br>   freeswitch.consoleLog(&quot;info&quot;, &quot;Callback with type &quot; .. type .. &quot;\n&quot;);<br>end<br><br>session:answer();<br>
session:setInputCallback(&quot;onInput_MainSession&quot;);<br>session:sleep(200);<br>session:execute(&quot;detect_speech&quot;, &quot;unimrcp testgrammer trestgrammer&quot;);<br><br>newsession = freeswitch.Session(&quot;user/1002&quot;);<br>
newsession:setInputCallback(&quot;onInput_NewSession&quot;);<br>newsession:sleep(200);<br>
newsession:execute(&quot;detect_speech&quot;, &quot;unimrcp testgrammer trestgrammer&quot;);<br><br>while ((session:ready() == true) ) and (newsession:ready() == true) do<br>    -- Loop<br>    sleep(200);<br>end<br><br>I am unable to capture any of the new session events or dtmf.<br>
<br>Please help.<br><br>Thank you,<br>Mohammed Habib<br></div>