<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>Hi Vincent,</div><div> </div><div>Create outbound ESL connection with async property as per wiki</div><div><pre style="font-family:monospace,Courier;padding:1em;border:1px dashed rgb(47,111,171);color:rgb(0,0,0);background-color:rgb(249,249,249);line-height:1.3em;font-size:12.727272033691406px">
&lt;action application=&quot;socket&quot; data=&quot;<a href="http://127.0.0.1:8084">127.0.0.1:8084</a> async full&quot;/&gt;</pre></div><div>Once the call is routed to lua socket server that you run on specified port you can execute almost everything</div>
<div>con:execute(&quot;application&quot;, &quot;params&quot;);</div><div><br></div><div>For your case, application will be bridge and params will be user/1001, user/1002</div><div><br></div><div>hope this helps.</div><div>
Kalyani</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra">
---------- Forwarded message ----------<br></div></div>From: Vincent Xia &lt;<a href="mailto:gmangudai@gmail.com">gmangudai@gmail.com</a>&gt;<br>To: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>
Cc: <br>Date: Fri, 16 May 2014 18:22:47 +0800<br>Subject: [Freeswitch-users] dialing multiple destinations simultaneously in lua<br>here is what the wiki says about how to dial multiple destinations<br>
simultaneously:<br>
<br>
“Multiple destinations in outbound calls. This means any dialstring<br>
may contain a &#39;|&#39; and/or &#39;,&#39; separated list of call URLs. The &quot;|&quot;<br>
calls one call at a time, the &quot;,&quot; calls multiple calls simultaneously.<br>
The example below will call 2 locations and connects the first to answer<br>
<br>
&lt;extension name=&quot;3002&quot;&gt;<br>
  &lt;condition field=&quot;destination_number&quot; expression=&quot;^3002$&quot;&gt;<br>
    &lt;action application=&quot;bridge&quot;<br>
data=&quot;iax/guest@somebox/1234,sofia/test-int/1000@somehost&quot;/&gt;<br>
  &lt;/condition&gt;<br>
&lt;/extension&gt;”<br>
<br>
so my question is what&#39;s the equivalent of doing something like<br>
<br>
&lt;action application=&quot;bridge&quot; data=&quot;user/1001, user/1002&quot;/&gt;<br>
<br>
in lua script? though i wonder if it&#39;s possible cuz someone has said<br>
the scripts are not asynchronous, they work in<br>
<br>
blocked mode so the calls will have to be made one after another, not<br>
simultaneously.<br>
<br>
<br></blockquote></div></div></div>