Perhaps you could rely on FreeSWITCH&#39;s global_setvar and global_getvar APIs. You could perhaps create a global var whose name is the uuid and then put some meaningful value in it. You would just need to make absolutely certain that you clear out that variable manually, otherwise you&#39;ll have a lot of junk variables. <div>

<br></div><div>-MC<br><br><div class="gmail_quote">On Thu, Oct 6, 2011 at 9:28 AM, xl127 <span dir="ltr">&lt;<a href="mailto:x.liu@hw.ac.uk" target="_blank">x.liu@hw.ac.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Thanks for the suggestions!<br>
<br>
I thought about and tried to make my outbound socket application<br>
fail e.g. by send a hangup message but it didn&#39;t work.<br>
<br>
What I did is that I set a public variable channelUUID with initial<br>
value null in MyOutboundHandler,<br>
I check if it is null in the handleConnectionResponse method. If it not<br>
null, a hangup command is sent to FS.<br>
But it looks like each call channel creates its own Java thread, so the<br>
channelUUID is always null before the connection.<br>
So my approach doesn&#39;t work.<br>
<br>
Any idea about checking if the remote application is answering a call?<br>
<br>
Thanks!<br>
Xing<br>
<div><div></div><div><br>
<br>
On 06/10/11 16:43, Anthony Minessale wrote:<br>
&gt; Really the socket app has not limit to how many simultaneous<br>
&gt; connections it can handle.<br>
&gt; You could try mod_limit, or make the remote end of you application<br>
&gt; fail when there are too many connections.<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Oct 6, 2011 at 10:30 AM, xl127&lt;<a href="mailto:x.liu@hw.ac.uk" target="_blank">x.liu@hw.ac.uk</a>&gt;  wrote:<br>
&gt;&gt; Hello,<br>
&gt;&gt;<br>
&gt;&gt; I am trying to bridge multiple calls to multiple Java ESL outbound<br>
&gt;&gt; socket applications.<br>
&gt;&gt;<br>
&gt;&gt; Basically I want to check if the first socket app is engaged then the<br>
&gt;&gt; call should be transferred<br>
&gt;&gt; to the second socket app and so on.<br>
&gt;&gt;<br>
&gt;&gt; For initial test, I tried two concurrent calls, the problem is both<br>
&gt;&gt; calls are always answered<br>
&gt;&gt; by the first outbound socket.<br>
&gt;&gt;<br>
&gt;&gt; I have following setting in the dialplan:<br>
&gt;&gt;<br>
&gt;&gt; &lt;extension name=&quot;sipgateDialedIn&quot;&gt;<br>
&gt;&gt; &lt;condition field=&quot;destination_number&quot; expression=&quot;^5800$&quot;&gt;<br>
&gt;&gt; &lt;action application=&quot;set&quot; data=&quot;continue_on_fail=true&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;set&quot; data=&quot;hangup_after_bridge=true&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;bridge&quot; data=&quot;loopback/5801&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;bridge&quot; data=&quot;loopback/5802&quot;/&gt;<br>
&gt;&gt;<br>
&gt;&gt; &lt;action application=&quot;set&quot; data=&quot;tts_engine=flite&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;set&quot; data=&quot;tts_voice=kal&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;speak&quot; data=&quot;Sorry, I am busy at the moment. Please<br>
&gt;&gt; try again later.&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;sleep&quot; data=&quot;10&quot;/&gt;<br>
&gt;&gt; &lt;action application=&quot;hangup&quot;/&gt;<br>
&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt; &lt;/extension&gt;<br>
&gt;&gt;<br>
&gt;&gt; &lt;extension name=&quot;myOutboundESL5801&quot;&gt;<br>
&gt;&gt; &lt;condition field=&quot;destination_number&quot; expression=&quot;^5801$&quot;&gt;<br>
&gt;&gt; &lt;action application=&quot;socket&quot; data=&quot;<a href="http://127.0.0.1:9981" target="_blank">127.0.0.1:9981</a> async full&quot;/&gt;<br>
&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt; &lt;/extension&gt;<br>
&gt;&gt;<br>
&gt;&gt; &lt;extension name=&quot;myOutboundESL5802&quot;&gt;<br>
&gt;&gt; &lt;condition field=&quot;destination_number&quot; expression=&quot;^5802$&quot;&gt;<br>
&gt;&gt; &lt;action application=&quot;socket&quot; data=&quot;<a href="http://127.0.0.1:9982" target="_blank">127.0.0.1:9982</a> async full&quot;/&gt;<br>
&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt; &lt;/extension&gt;<br>
&gt;&gt;<br>
&gt;&gt; I expect the first call to 5800 would be asnwered by extension 5801, the<br>
&gt;&gt; second concurrent call to 5800 will be<br>
&gt;&gt; answered by extension 5802, and the third call gets a busy message.<br>
&gt;&gt;<br>
&gt;&gt; I use Java ESL client-0.9.2 libraries. How do I check in the dialplan if<br>
&gt;&gt; the socket is engaged?<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ve tried and googled a while but without success.<br>
&gt;&gt;<br>
&gt;&gt; Any advices please?<br>
&gt;&gt;<br>
&gt;&gt; Many thanks!<br>
&gt;&gt; Xing<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Heriot-Watt University is a Scottish charity<br>
&gt;&gt; registered under charity number SC000278.<br>
&gt;&gt;<br>
&gt;&gt; Heriot-Watt University is the Sunday Times<br>
&gt;&gt; Scottish University of the Year 2011-2012<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
Heriot-Watt University is a Scottish charity<br>
registered under charity number SC000278.<br>
<br>
Heriot-Watt University is the Sunday Times<br>
Scottish University of the Year 2011-2012<br>
<br>
<br>
<br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">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>
</div></div></blockquote></div><br></div>