Hi again.<div><br></div><div>I&#39;m having a little problem with the Java ESL.</div><div><br></div><div>I can do some basic things like answer the call, subscribe to events, put music in the caller... Thought I have som questions about API commands.</div>
<div><br></div><div>The flow right now in my program is this one:</div><div><br></div><div><ul><li>I begin listenning at port 8084 for ESL events</li><li><meta http-equiv="content-type" content="text/html; charset=utf-8">If I receive an event with the name &quot;channel_data&quot; I begin the iteration</li>
<li>I answer the call with <font class="Apple-style-span" color="#3333ff"><i>sendMsg, addcallcommand(&quot;execute&quot;) and addExecuteAppName(&quot;answer&quot;);</i></font></li><li>I subscribe to all events for debuging, I just use <i><font class="Apple-style-span" color="#3333ff">EslMessage response = sendSyncSingleLineCommand(channel, &quot;event text all&quot;);</font></i></li>
<li>I put a tone on the caller  with <meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="color: rgb(51, 51, 255); "><i>sendMsg, addcallcommand(&quot;execute&quot;) and addExecuteAppName(&quot;playback&quot;);</i></span></li>
<li>Now here is a tricky part, I send a petition with HttpURLConnection to an APP server, this server is the one that controls the C2DM stuff, he answers me when he sends the push and I continue the flow, but still have to wait for the legB to connect to the freeswitch server</li>
<li>I have to control when the legB gets connected to freeswitch, this is something i have to work on, i don&#39;t want to be making continuous requests to freeswitch to avoid overloading, so right now I assume legB is connected by default.</li>
<li>It&#39;s time to originate the call, so I send <meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="color: rgb(51, 51, 255); "><i>sendMsg, addcallcommand(&quot;execute&quot;), addExecuteAppName(&quot;set&quot;) and addExecuteAppArg(&quot;{ignore_early_media=&#39;true&#39;}sofia/internal/1002%10.166.108.139&quot;);</i></span> . <meta http-equiv="content-type" content="text/html; charset=utf-8"><i>I&#39;m using a default destiny for testing</i></li>
<li>I have just tested that this also works  <i><font class="Apple-style-span" color="#3333ff">EslMessage response = sendSyncSingleLineCommand(channel, &quot;api originate {ignore_early_media=&#39;true&#39;}sofia/internal/1002%10.166.108.139&quot;); </font></i></li>
<li>And finally I bridge the call with <font class="Apple-style-span" color="#3333ff">SendMsg, addCallCommand(&quot;execute&quot;), addExecuteAppName(&quot;bridge&quot;), addExecuteAppArg(&quot;sofia/internal/1002%10.166.108.139&quot;) and addEventLock();</font></li>
</ul></div><div>This works well, but right now my major issue is knowing when the legB gets connected to freeswitch so I can begin originating the call, but I have some questions that I would like to know the answer too:</div>
<div><br></div><div><ul><li>The execute messages are for APP so they work like in the dialplan &lt;action&gt; field, I saw somewhere that to see the complete list one should look in the dialplan.xml, but I haven&#39;t found anything about a complete list :S</li>
<li>Things can be accomplished with API calls too, but I just dont get why I have to use &quot;api&quot; before &quot;originate&quot; to make a call, but not needing it for the events, it&#39;s a little confusing to use API commands like this, is there any simpler way to do it?</li>
<li>This makes my last question, is there any way to make freeswitch tell me when someone registers in the server or do I need to be continuosly asking freeswith with an API command if it is connected</li></ul><div><br></div>
</div><div>Thinks are going well, I have to begin working with the android client next to be able to process the C2DM messages, right now im using a default voip client.</div><div><br></div><div><br>Sorry for the long post and thanks for your attention.</div>
<div><br></div><div>Regards</div><div><br></div><div>Jose</div><div><br></div><div>P.S: Again, thanks to davidv for making possible the use of a Java ESL client :)</div><div><br></div><div><br><div class="gmail_quote">2011/7/11 Nacho <span dir="ltr">&lt;<a href="mailto:leucaruth@gmail.com">leucaruth@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Cool, thanks for the tip David, I&#39;m using your library and have it working.<div><br>The wiki should advice about the SWIGed library and it&#39;s problems with Java and outbound connections.</div>
<div><br></div><div>In a few days I will have news about the my progress.</div>
<div><br></div><div>Regards,</div><div><br></div><div>Jose</div><div><div><div></div><div class="h5"><br><div class="gmail_quote">2011/7/11 david varnes <span dir="ltr">&lt;<a href="mailto:david.varnes@gmail.com" target="_blank">david.varnes@gmail.com</a>&gt;</span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Jose,<br>
<br>
If you want to use Java and ESL there are other alternatives<br>
than the SWIGed library.<br>
<br>
<a href="http://wiki.freeswitch.org/wiki/Java_ESL" target="_blank">http://wiki.freeswitch.org/wiki/Java_ESL</a><br>
<br>
I maintain the one here <a href="http://wiki.freeswitch.org/wiki/Java_ESL_Client" target="_blank">http://wiki.freeswitch.org/wiki/Java_ESL_Client</a><br>
<br>
I have a few pending changes that I want to commit for a new<br>
release, but the existing release is stable.<br>
<br>
hope this helps<br>
davidv<br>
<div><div></div><div><br>
On 11 July 2011 00:12, Nacho &lt;<a href="mailto:leucaruth@gmail.com" target="_blank">leucaruth@gmail.com</a>&gt; wrote:<br>
&gt; I just noticed short before you answered :).<br>
&gt; I have been reading it and I found it very interesting, but I have found a<br>
&gt; problem in Java.<br>
&gt; The constructor for an Outbound connection requires the File Descriptor (an<br>
&gt; Int parameter) of the listening socket to create the ESL object, but as far<br>
&gt; as I know, Java doesn&#39;t allow to get the int value of a File Descriptor from<br>
&gt; a Socket. This would be veary easy to achieve in C, but I have no found any<br>
&gt; means to get this to work with Java in Linux (Windows is out of the<br>
&gt; question).<br>
&gt; I tried to see the source code of the ESL client to see how it uses the int<br>
&gt; value, but as I suspected is C code wrapped with SWIG. I have thought about<br>
&gt; other ways to work with it, like using the FileDescriptor class in java and<br>
&gt; Reflection, but I have not found any way to get the desired int value, so<br>
&gt; i&#39;m stuck about what to do right now.<br>
&gt; Any ideas? if the constructor requires the int value of the File Descriptor<br>
&gt; means that there is a way to get it, doesn&#39;t it?<br>
&gt; Regards,<br>
&gt; Jose<br>
&gt;<br>
&gt; 2011/7/7 Kristian Kielhofner &lt;<a href="mailto:kris@kriskinc.com" target="_blank">kris@kriskinc.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://wiki.freeswitch.org/wiki/Event_Socket_Library" target="_blank">http://wiki.freeswitch.org/wiki/Event_Socket_Library</a><br>
&gt;&gt;<br>
&gt;&gt; On Thu, Jul 7, 2011 at 7:35 AM, Nacho &lt;<a href="mailto:leucaruth@gmail.com" target="_blank">leucaruth@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; Hi again<br>
&gt;&gt; &gt; Im doing as Kristian suggested, at first is an easier solution that<br>
&gt;&gt; &gt; making a<br>
&gt;&gt; &gt; module.<br>
&gt;&gt; &gt; I created a plan that redirects calls to a local port where I will do<br>
&gt;&gt; &gt; the<br>
&gt;&gt; &gt; testings with the server that will work with that call.<br>
&gt;&gt; &gt; The call is parked and the connection is stablished as I can see with<br>
&gt;&gt; &gt; netcat, so I was thinking about making a program with C or Java that<br>
&gt;&gt; &gt; will<br>
&gt;&gt; &gt; become the custom server. The problem is that I don&#39;t find info about<br>
&gt;&gt; &gt; the<br>
&gt;&gt; &gt; structure of the packages I&#39;ll receive from Freeswitch, how to deal with<br>
&gt;&gt; &gt; them or even how can I send orders to freeswitch.<br>
&gt;&gt; &gt; Any suggestions about where I could find some info about it would be<br>
&gt;&gt; &gt; kindly<br>
&gt;&gt; &gt; appreciated.<br>
&gt;&gt; &gt; Regards,<br>
&gt;&gt; &gt; Jose.<br>
&gt;&gt; &gt; 2011/7/6 Robert-iPhone &lt;<a href="mailto:rhuddleston@gmail.com" target="_blank">rhuddleston@gmail.com</a>&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I have interest too! Considering mwi / voicemail push for apple<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Sent from my iPhone<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On Jul 5, 2011, at 5:49 PM, Anthony Minessale<br>
&gt;&gt; &gt;&gt; &lt;<a href="mailto:anthony.minessale@gmail.com" target="_blank">anthony.minessale@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt; it can be left out of FS code but still part of contrib if an<br>
&gt;&gt; &gt;&gt; &gt; external<br>
&gt;&gt; &gt;&gt; &gt; solution is developed.<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; On Tue, Jul 5, 2011 at 1:20 PM, Kristian Kielhofner<br>
&gt;&gt; &gt;&gt; &gt; &lt;<a href="mailto:kris@kriskinc.com" target="_blank">kris@kriskinc.com</a>&gt;<br>
&gt;&gt; &gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;&gt; Jose,<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;  Whether it&#39;s C2DM or APNS (Apple) this functionality is best left<br>
&gt;&gt; &gt;&gt; &gt;&gt; out of FreeSWITCH.  FreeSWITCH has plenty of other existing means<br>
&gt;&gt; &gt;&gt; &gt;&gt; (XML_CURL, socket, etc) to drive dynamic call functionality and<br>
&gt;&gt; &gt;&gt; &gt;&gt; interact with other technologies.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;  How do you ask?  An imcoming call to FreeSWITCH could hit static<br>
&gt;&gt; &gt;&gt; &gt;&gt; dialplan and execute a socket connection to some other custom<br>
&gt;&gt; &gt;&gt; &gt;&gt; server.<br>
&gt;&gt; &gt;&gt; &gt;&gt; This server could tell FreeSWITCH to do something (play media,<br>
&gt;&gt; &gt;&gt; &gt;&gt; ringback, messages, whatever) while it sends a PUSH (via C2DM or<br>
&gt;&gt; &gt;&gt; &gt;&gt; APNS,<br>
&gt;&gt; &gt;&gt; &gt;&gt; for example).<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;  One could implement such a socket program easily.  It can be<br>
&gt;&gt; &gt;&gt; &gt;&gt; extended and maintained separately as new push technologies become<br>
&gt;&gt; &gt;&gt; &gt;&gt; available.<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; On Mon, Jul 4, 2011 at 7:48 AM, Nacho &lt;<a href="mailto:leucaruth@gmail.com" target="_blank">leucaruth@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Hello all.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; My name is Jose. This is my first post here. I joined the list<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; because<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; I was<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; wondering about developing a feature for Freeswitch and I would<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; like<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; to know<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; your opinion.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; The idea is about making a non-persistent client for cell phones<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; that<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; works<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; with PUSH technology (C2DM and Android for example). These clients<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; wouldn&#39;t<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; be connected to the Freeswitch server at first, but if there is an<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; incoming<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; call, the Freeswitch server would send a PUSH message to these<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; clients, the<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; client would process it and, if accepted by the user, the client<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; would<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; awake, connect to Freeswitch and then receive the the call invite<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; message<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; and accept it automatically.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; I don&#39;t know if this idea is plausible due to the real time<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; restrictions we<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; have to face in phone calls. If the delay introduced by C2DM<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; delivery<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; is<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; high, the waiting time for the caller is probably something that he<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; isn&#39;t<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; willing to accept in order to get his call answered.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Another question is about the battery life time it would save<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; because<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; the<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; application woulnd&#39;t need to be answering the &quot;still alive&quot; ACKS<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; from<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Freeswitch.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; I&#39;m new in freeswitch developing and still learning about it, but<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; I&#39;m<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; really<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; interested in this, so any help would be kindly appreciated.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Aquellos que hablan son esclavos de sus palabras y los que callan<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; dueńos de<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; su silencio.<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; FreeSWITCH-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; --<br>
&gt;&gt; &gt;&gt; &gt;&gt; Kristian Kielhofner<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; &gt;&gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt;&gt; &gt;&gt; &gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; FreeSWITCH-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt;&gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; &gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; --<br>
&gt;&gt; &gt;&gt; &gt; Anthony Minessale II<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
&gt;&gt; &gt;&gt; &gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
&gt;&gt; &gt;&gt; &gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; AIM: anthm<br>
&gt;&gt; &gt;&gt; &gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>
&gt;&gt; &gt;&gt; &gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>
&gt;&gt; &gt;&gt; &gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; FreeSWITCH Developer Conference<br>
&gt;&gt; &gt;&gt; &gt; <a href="mailto:sip%3A888@conference.freeswitch.org" target="_blank">sip:888@conference.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt; pstn:+19193869900<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; &gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt;&gt; &gt;&gt; &gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; FreeSWITCH-dev mailing list<br>
&gt;&gt; &gt;&gt; &gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; &gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt;&gt; &gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; FreeSWITCH-dev mailing list<br>
&gt;&gt; &gt;&gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt;&gt; &gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt;&gt; &gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Aquellos que hablan son esclavos de sus palabras y los que callan dueńos<br>
&gt;&gt; &gt; de<br>
&gt;&gt; &gt; su silencio.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt;&gt; &gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; FreeSWITCH-dev mailing list<br>
&gt;&gt; &gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt;&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt;&gt; &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt;&gt; &gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Kristian Kielhofner<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-dev mailing list<br>
&gt;&gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Aquellos que hablan son esclavos de sus palabras y los que callan dueńos de<br>
&gt; su silencio.<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Join us at ClueCon 2011, Aug 9-11, Chicago<br>
&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a> 877-7-4ACLUE<br>
&gt;<br>
&gt; FreeSWITCH-dev mailing list<br>
&gt; <a href="mailto:FreeSWITCH-dev@lists.freeswitch.org" target="_blank">FreeSWITCH-dev@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
</div></div>david varnes<br>
<br>
e: <a href="mailto:david.varnes@gmail.com" target="_blank">david.varnes@gmail.com</a><br>
p: +61 404 925 633<br>
</blockquote></div><br><br clear="all"><br></div></div>-- <br><div class="im">Aquellos que hablan son esclavos de sus palabras y los que callan dueńos de su silencio.<br>
</div></div>
</blockquote></div><br><br clear="all"><br>-- <br>Aquellos que hablan son esclavos de sus palabras y los que callan dueńos de su silencio.<br>
</div>