party A should be created with the uuid that is already there:<br><br>its called sessionUuid and is magically created.<br><br>try <br><br>session = new JavaSession(sessionUuid);<br>session.execute(&quot;bridge&quot;, &quot;sofia/gateway/<a href="http://voip.did.les.net/14146548900" target="_blank">voip.did.les.net/14146548900</a>&quot;);<br>
<br>
<br><br><br><br><div class="gmail_quote">On Thu, Jun 26, 2008 at 5:17 PM, Klaus Teller &lt;<a href="mailto:klaus.teller@gmx.net">klaus.teller@gmx.net</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
OK. here is what happens:<br>
<br>
What I do:<br>
<br>
1) Party A calls in.<br>
2) Java creates a answers leg A.<br>
3) java creates a session willf ollowing code:<br>
<br>
&nbsp;JavaSession session2= new JavaSession( &quot;sofia/gateway/<a href="http://voip.did.les.net/14146548900" target="_blank">voip.did.les.net/14146548900</a>&quot;);<br>
&nbsp;session2.originate( &quot;sofia/gateway/<a href="http://voip.did.les.net/14146548900" target="_blank">voip.did.les.net/14146548900</a>&quot;,originate, 15);<br>
4) Java bridges the two legs with the following code:<br>
if(session2.ready())<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; freeswitch.bridge(session2,session1);<br>
<br>
<br>
The result:<br>
1) Connection is established and forwarded to the Java code &nbsp;without problem.<br>
2) Java code indeed answers<br>
3) The far end rights (i.e. the device connected to leg B)<br>
4) The far end rings twice<br>
5) The near end (call originator) is disconnected<br>
6) FS displays teh following error message:<br>
<br>
2008-06-26 18:06:07 [WARNING] switch_cpp.cpp:801 originate() Error Creating Outgoing Channel! [sofia/gateway/<a href="http://did.voip.les.net/14146548900" target="_blank">did.voip.les.net/14146548900</a>]<br>
<br>
2008-06-26 18:06:07 [ERR] switch_cpp.cpp:760 ready() session is not initalized<br>
<br>
6) The far end continues to ring<br>
7) The far end goes to voicemail<br>
8) FS displays on the console that far end answered<br>
9) Voicemail records silence and terminates.<br>
<br>
So, any idea why near end is disconnected?<br>
<br>
Thanks,<br>
Klaus.<br>
<br>
<br>
-------- Original-Nachricht --------<br>
&gt; Datum: Thu, 26 Jun 2008 16:51:47 -0500<br>
<div><div></div><div class="Wj3C7c">&gt; Von: &quot;Anthony Minessale&quot; &lt;<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>&gt;<br>
&gt; An: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>
&gt; Betreff: Re: [Freeswitch-users] Java Support<br>
<br>
&gt; originate string is the same string you put in the bridge app<br>
&gt;<br>
&gt; eg:<br>
&gt; sofia/default/<a href="mailto:foo@bar.com">foo@bar.com</a><br>
&gt;<br>
&gt;<br>
&gt; On Thu, Jun 26, 2008 at 4:26 PM, Klaus Teller &lt;<a href="mailto:klaus.teller@gmx.net">klaus.teller@gmx.net</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt; &gt; Hi,<br>
&gt; &gt;<br>
&gt; &gt; what is an originate string? I tried the following:<br>
&gt; &gt;<br>
&gt; &gt; JavaSession session2= new JavaSession(System.nanoTime()+&quot;&quot;);<br>
&gt; &gt;<br>
&gt; &gt; what i get is the following error message:<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; 2008-06-26 17:23:26 [ERR] switch_core_session.c:205<br>
&gt; &gt; switch_core_session_outgoing_channel() Could not locate channel type<br>
&gt; &gt; 61111410867975<br>
&gt; &gt; 2008-06-26 17:23:26 [ERR] switch_ivr_originate.c:823<br>
&gt; switch_ivr_originate()<br>
&gt; &gt; Cannot create outgoing channel of type [61111410867975] cause:<br>
&gt; &gt; [CHAN_NOT_IMPLEMENTED]<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Thanks,<br>
&gt; &gt; Klaus.<br>
&gt; &gt; -------- Original-Nachricht --------<br>
&gt; &gt; &gt; Datum: Thu, 26 Jun 2008 09:13:41 -0500<br>
&gt; &gt; &gt; Von: &quot;Anthony Minessale&quot; &lt;<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>&gt;<br>
&gt; &gt; &gt; An: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>
&gt; &gt; &gt; Betreff: Re: [Freeswitch-users] Java Support<br>
&gt; &gt;<br>
&gt; &gt; &gt; If you want to create a new one you can feed an originate string to<br>
&gt; the<br>
&gt; &gt; &gt; constructor instead of a uuid<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; if you are just planning to bridge a call you can just execute bridge<br>
&gt; on<br>
&gt; &gt; &gt; your existing session.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; session.execute(&quot;brodge&quot;, &quot;sofia/default/<a href="mailto:foo@bar.com">foo@bar.com</a>&quot;);<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Thu, Jun 26, 2008 at 9:06 AM, Klaus Teller &lt;<a href="mailto:klaus.teller@gmx.net">klaus.teller@gmx.net</a>&gt;<br>
&gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Thanks for the feedback. But where do I get a GUID/UUID from if I<br>
&gt; want<br>
&gt; &gt; &gt; to<br>
&gt; &gt; &gt; &gt; create a brand new session?<br>
&gt; &gt; &gt; &gt; Do I need to create one myself?<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; As the sample code on the wiki shows, if a FS session already<br>
&gt; exists, i<br>
&gt; &gt; &gt; can<br>
&gt; &gt; &gt; &gt; use the JavaSession constructor and pass it the UUID. But I tend to<br>
&gt; &gt; &gt; beleive<br>
&gt; &gt; &gt; &gt; that to originate a new call i would need to create a fresh<br>
&gt; &gt; JavaSession.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Then, what do I pass to originate as first parameter? It&#39;s expecting<br>
&gt; a<br>
&gt; &gt; &gt; &gt; CoreSession.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Klaus L&#39;Imbecile.<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; -------- Original-Nachricht --------<br>
&gt; &gt; &gt; &gt; &gt; Datum: Thu, 26 Jun 2008 15:25:59 +0200 (SAST)<br>
&gt; &gt; &gt; &gt; &gt; Von: <a href="mailto:damjan@ecntelecoms.com">damjan@ecntelecoms.com</a><br>
&gt; &gt; &gt; &gt; &gt; An: <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br>
&gt; &gt; &gt; &gt; &gt; Betreff: Re: [Freeswitch-users] Java Support<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; X-ECN Telecoms-MailScanner-Information: Contact ECN Telecoms<br>
&gt; &gt; &gt; &gt; &gt; X-ECN Telecoms-MailScanner: Found to be clean<br>
&gt; &gt; &gt; &gt; &gt; X-ECN Telecoms-MailScanner-SpamCheck: not spam, SpamAssassin (not<br>
&gt; &gt; &gt; cached,<br>
&gt; &gt; &gt; &gt; &gt; &nbsp; &nbsp; &nbsp; score=-101.81, required 6, autolearn=not spam, AWL 0.79,<br>
&gt; &gt; &gt; &gt; &gt; &nbsp; &nbsp; &nbsp; BAYES_00 -2.60, NO_RELAYS -0.00, USER_IN_WHITELIST -100.00)<br>
&gt; &gt; &gt; &gt; &gt; X-ECN Telecoms-MailScanner-From: <a href="mailto:damjan@ecntelecoms.com">damjan@ecntelecoms.com</a><br>
&gt; &gt; &gt; &gt; &gt; X-Spam-Status: No<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Hi Folks,<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Questions regading Java (not Javascript):<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; 1) How do I originate a call? I tried somethis as following<br>
&gt; without<br>
&gt; &gt; &gt; &gt; &gt; &gt; success<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; JavaSession session2= new JavaSession();<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; session2.originate(null,&quot;sofia/gateway/<a href="http://did.voip.les.net/14163442000" target="_blank">did.voip.les.net/14163442000</a>&quot;);<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; You need to use the JavaSession constructor that takes a GUID/UUID<br>
&gt; &gt; &gt; &gt; string.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; The error messgae I get is that session2 is not initialized. Any<br>
&gt; &gt; &gt; idea?<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; 2) Assuming I have two legs session1 and session2. Bridging them<br>
&gt; &gt; &gt; would<br>
&gt; &gt; &gt; &gt; &gt; be<br>
&gt; &gt; &gt; &gt; &gt; &gt; done with freeswitch.birdge(session1, session2) is that correct?<br>
&gt; I<br>
&gt; &gt; &gt; &gt; &gt; &gt; coudln&#39;t test this since I&#39;m not able to create session2.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; I guess.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Quick Observations:<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; 1) The wiki says that Java 1.6 would cause FS to crash. But,<br>
&gt; &gt; &gt; actually<br>
&gt; &gt; &gt; &gt; &gt; the<br>
&gt; &gt; &gt; &gt; &gt; &gt; current Java 1.6 works just fine while the current Java 1.5<br>
&gt; (update<br>
&gt; &gt; &gt; 15)<br>
&gt; &gt; &gt; &gt; &gt; &gt; causes the FS to crash.<br>
&gt; &gt; &gt; &gt; &gt; &gt; 2) Whatever path to Java is specified when building FS, when<br>
&gt; &gt; &gt; starting<br>
&gt; &gt; &gt; &gt; &gt; it,<br>
&gt; &gt; &gt; &gt; &gt; &gt; it will look for Java at: /usr/java/jdk1.6.0/jre.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; The config file for mod_java determines that path, not what was<br>
&gt; &gt; &gt; present<br>
&gt; &gt; &gt; &gt; at<br>
&gt; &gt; &gt; &gt; &gt; build time.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Looking forward to your feedback.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Klaus L&#39;Imbecile.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; Good luck<br>
&gt; &gt; &gt; &gt; &gt; Damjan<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten<br>
&gt; &gt; &gt; &gt; &gt; &gt; Browser-Versionen downloaden: <a href="http://www.gmx.net/de/go/browser" target="_blank">http://www.gmx.net/de/go/browser</a><br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; &gt; &gt; &gt; Freeswitch-users mailing list<br>
&gt; &gt; &gt; &gt; &gt; &gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; &gt; &gt; &gt; &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; &gt; &gt; &gt; &gt; UNSUBSCRIBE:<br>
&gt; &gt; &gt; &gt; <a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</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; Freeswitch-users mailing list<br>
&gt; &gt; &gt; &gt; &gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; &gt; &gt; &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; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&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; &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; GMX startet ShortView.de. Hier findest Du Leute mit Deinen<br>
&gt; Interessen!<br>
&gt; &gt; &gt; &gt; Jetzt dabei sein:<br>
&gt; &gt; &gt; &gt; <a href="http://www.shortview.de/wasistshortview.php?mc=sv_ext_mf@gmx" target="_blank">http://www.shortview.de/wasistshortview.php?mc=sv_ext_mf@gmx</a><br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; &gt; Freeswitch-users mailing list<br>
&gt; &gt; &gt; &gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; &gt; &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; &gt; &gt; UNSUBSCRIBE:<br>
&gt; &gt; <a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&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;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; --<br>
&gt; &gt; &gt; Anthony Minessale II<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
&gt; &gt; &gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; AIM: anthm<br>
&gt; &gt; &gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
&gt; &lt;<a href="mailto:MSN%253Aanthony_minessale@hotmail.com">MSN%3Aanthony_minessale@hotmail.com</a>&gt;&lt;<br>
&gt; &gt;<br>
</div></div>&gt; <a href="mailto:MSN%253Aanthony_minessale@hotmail.com">MSN%3Aanthony_minessale@hotmail.com</a>&lt;<a href="mailto:MSN%25253Aanthony_minessale@hotmail.com">MSN%253Aanthony_minessale@hotmail.com</a>&gt;<br>

<div class="Ih2E3d">&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a>&lt;<a href="mailto:PAYPAL%253Aanthony.minessale@gmail.com">PAYPAL%3Aanthony.minessale@gmail.com</a>&gt;<br>
&gt; &gt;<br>
</div>&gt; &lt;<a href="mailto:PAYPAL%253Aanthony.minessale@gmail.com">PAYPAL%3Aanthony.minessale@gmail.com</a>&lt;<a href="mailto:PAYPAL%25253Aanthony.minessale@gmail.com">PAYPAL%253Aanthony.minessale@gmail.com</a>&gt;<br>

<div class="Ih2E3d">&gt; &gt; &gt;<br>
&gt; &gt; &gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; FreeSWITCH Developer Conference<br>
&gt; &gt; &gt; <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>
&gt; &lt;<a href="mailto:sip%253A888@conference.freeswitch.org">sip%3A888@conference.freeswitch.org</a>&gt;&lt;<br>
&gt; &gt;<br>
</div>&gt; <a href="mailto:sip%253A888@conference.freeswitch.org">sip%3A888@conference.freeswitch.org</a>&lt;<a href="mailto:sip%25253A888@conference.freeswitch.org">sip%253A888@conference.freeswitch.org</a>&gt;<br>
<div class="Ih2E3d">&gt; &gt; &gt;<br>
&gt; &gt; &gt; <a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
&gt; &gt; &gt;<br>
&gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a>&lt;<a href="mailto:googletalk%253Aconf%252B888@conference.freeswitch.org">googletalk%3Aconf%2B888@conference.freeswitch.org</a>&gt;<br>

&gt; &gt;<br>
</div>&gt; &lt;<a href="mailto:googletalk%253Aconf%252B888@conference.freeswitch.org">googletalk%3Aconf%2B888@conference.freeswitch.org</a>&lt;<a href="mailto:googletalk%25253Aconf%25252B888@conference.freeswitch.org">googletalk%253Aconf%252B888@conference.freeswitch.org</a>&gt;<br>

<div class="Ih2E3d">&gt; &gt; &gt;<br>
&gt; &gt; &gt; pstn:213-799-1400<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; GMX startet ShortView.de. Hier findest Du Leute mit Deinen Interessen!<br>
&gt; &gt; Jetzt dabei sein:<br>
&gt; &gt; <a href="http://www.shortview.de/wasistshortview.php?mc=sv_ext_mf@gmx" target="_blank">http://www.shortview.de/wasistshortview.php?mc=sv_ext_mf@gmx</a><br>
&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; Freeswitch-users mailing list<br>
&gt; &gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">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>
&gt;<br>
&gt; --<br>
&gt; Anthony Minessale II<br>
&gt;<br>
&gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
&gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
&gt;<br>
&gt; AIM: anthm<br>
&gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a> &lt;<a href="mailto:MSN%253Aanthony_minessale@hotmail.com">MSN%3Aanthony_minessale@hotmail.com</a>&gt;<br>
&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a>&lt;<a href="mailto:PAYPAL%253Aanthony.minessale@gmail.com">PAYPAL%3Aanthony.minessale@gmail.com</a>&gt;<br>
&gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
&gt;<br>
&gt; FreeSWITCH Developer Conference<br>
&gt; <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a> &lt;<a href="mailto:sip%253A888@conference.freeswitch.org">sip%3A888@conference.freeswitch.org</a>&gt;<br>
&gt; <a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
&gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a>&lt;<a href="mailto:googletalk%253Aconf%252B888@conference.freeswitch.org">googletalk%3Aconf%2B888@conference.freeswitch.org</a>&gt;<br>

&gt; pstn:213-799-1400<br>
<br>
--<br>
</div>Psssst! Schon vom neuen GMX MultiMessenger gehört?<br>
Der kann`s mit allen: <a href="http://www.gmx.net/de/go/multimessenger" target="_blank">http://www.gmx.net/de/go/multimessenger</a><br>
<div><div></div><div class="Wj3C7c"><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>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
<br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400