Can you pastebin a debug log with a siptrace? Also, pastebin your dialplan. I think we can help with this but I want to see what you&#39;re doing before I suggest anything.<div><br></div><div>-MC<br><br><div class="gmail_quote">
On Fri, Jan 21, 2011 at 5:57 PM, John Carpenter <span dir="ltr">&lt;<a href="mailto:john@247-talk.co.uk">john@247-talk.co.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">



  
  

<div>
Hi, I am trying to setup a very simple IVR using LUA. Call arrives from a DID SIP trunk and is answered and message is played ok, after a particular digit is pressed it bridges the call to an extension which is remotely connected. It works but after 2 rings the call to the extension is dropped with a SIP message &quot;BYE&quot; from DID provider. If I just route the call directly to the extension (no IVR) it works fine. It seems like the DID hangs up when the call is bridged to the extension. Have tried same thing using the XML IVR Engine and get exactly the same result. The IVR script is below<br>

<br>
pathsep = &#39;/&#39;<br>
session:setAutoHangup(false);<br>
session:answer()<br>
prompt = &quot;ivr&quot; .. pathsep .. &quot;247talk.wav&quot;<br>
invalid = &quot;ivr&quot; .. pathsep .. &quot;ivr-that_was_an_invalid_entry.wav&quot;<br>
freeswitch.consoleLog(&quot;INFO&quot;, &quot;Prompt file is &#39;&quot; .. prompt .. &quot;&#39;\n&quot;)<br>
continue = true<br>
<br>
while( session:ready() == true and continue == true) do<br>
        digits = session:playAndGetDigits(1,1,3,7000,&quot;#&quot;, prompt, invalid, &quot;\\d+&quot;)<br>
        if (digits == &quot;1&quot;) then<br>
                continue = false<br>
                session:execute(&quot;bridge&quot;,&quot;sofia/external/2476%91.xxx.xx.xx&quot;)<br>
        end<br>
        if (digits == &quot;2&quot;) then<br>
                session:execute(&quot;bridge&quot;,&quot;sofia/external/2475%91.xxx.xx.xx&quot;)<br>
        end<br>
        if (digits == &quot;3&quot;) then<br>
                continue = false<br>
                session:execute(&quot;bridge&quot;,&quot;sofia/external/2475%91.xxx.xx.xx&quot;)<br>
        end<br>
end<br>
<br>
session:hangup()<br>
<br>
Any help with this greatly appreciated it is driving me nuts.<br>
<br>
regards, John Carpenter
</div>

<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></div>