<br><br><div class="gmail_quote">On Tue, Apr 17, 2012 at 2:37 AM, azza miled <span dir="ltr">&lt;<a href="mailto:azza.miled@gmail.com">azza.miled@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">thank you, but to be clearer, I want that my lua IVR script transfer the call to OpenSIPS. So, if I get what you said, I have to bridge to an external server (in the xml dialplan) and then,I just have to transfer the call to the IP address of my Opensips server in my lua script. am I wrong??<br>
</div></blockquote><div><br>Just be careful when using the word &quot;transfer.&quot; It can mean two related but very different things. There a transfer like transferring a phone call from one phone to another. There&#39;s also a dialplan transfer application that sends the call flow to another part of the dialplan. I suspect you&#39;ll be doing a little of both. :)<br>
<br>In your Lua script I suggest that the end of the program be transferring (i.e. dialplan transfer) to an extension in the dialplan that would then execute the bridge over to your OpenSIPS server. Read this part of the wiki carefully, especially the note about autohangup:<br>
<br><a href="http://wiki.freeswitch.org/wiki/Lua#session:transfer">http://wiki.freeswitch.org/wiki/Lua#session:transfer</a><br><br>The line could be something like this:<br><br><span style="font-family:courier new,monospace">session:transfer(target_number,&quot;XML&quot;,&quot;to_opensips&quot;)</span><br style="font-family:courier new,monospace">
<br>The dialplan extension to which you transfer the call can then just do the bridge. You could even create an entirely new dialplan context. E.g., you could create a file /usr/local/freeswitch/conf/dialplan/to_opensips.xml with something like this:<br>
<br><span style="font-family:courier new,monospace">&lt;include&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">  &lt;context name=&quot;to_opensips&quot;&gt;</span><br style="font-family:courier new,monospace">
<span style="font-family:courier new,monospace">    &lt;extension name=&quot;bridge to opensips&quot;&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      &lt;condition field=&quot;destination_number&quot; expression=&quot;(.*)&quot;&gt;</span><br style="font-family:courier new,monospace">
<span style="font-family:courier new,monospace">        &lt;action application=&quot;bridge&quot; data=&quot;sofia/internal/$1@${opensips_ip_address}&quot;/&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      &lt;/condition&gt;</span><br style="font-family:courier new,monospace">
<span style="font-family:courier new,monospace">    &lt;/extension&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">  &lt;/context&gt;</span><br style="font-family:courier new,monospace">
<span style="font-family:courier new,monospace">&lt;/include&gt; </span><br style="font-family:courier new,monospace"><br>I put my usual disclaimer here: This is off the top of my head. I did not try this code. If you try it and it doesn&#39;t work then tinker and see if you can figure it out. :)<br>
<br>-MC<br></div></div>