I have setup one jabber server running along the Freeswitch on the centos 5, and setup the gtalk&nbsp; in public context as the jabber server component on port 5347 , and established the federation with googletalk network. Now I can call from gtalk client to my sip account on freeswitch without problem by&nbsp; the following dialplan:<br>
<br><span>&lt;extension name=&quot;jingle2sip&quot;&gt; <br>
 &nbsp;&lt;condition field=&quot;source&quot; expression=&quot;mod_dingaling&quot;/&gt; <br> &nbsp;&lt;condition field=&quot;destination_number&quot; expression=&quot;^conf\+([^\@]+)\@(.*)$&quot;&gt; <br> &nbsp;&nbsp;&nbsp;&lt;action application=&quot;bridge&quot; data=&quot;sofia/default/$1%<a href="http://192.168.1.253">192.168.1.253</a>&quot;/&gt; <br>

 &nbsp;&lt;/condition&gt; <br>&lt;/extension&gt; </span><br><br>where <a href="http://192.168.1.253">192.168.1.253</a> is the ip address of freeswitch.<br><br>but I am having issues with the sip2jingle call.<br><br>in the default context dialplan, I can do this <br>
<br><span>&lt;extension name=&quot;sip2jingle&quot;&gt; <br> &nbsp;&lt;condition field=&quot;source&quot; expression=&quot;mod_sofia&quot;/&gt; <br> &nbsp;&lt;condition field=&quot;destination_number&quot; expression=&quot;^1500$&quot;&gt; <br>

 &nbsp;&nbsp;&nbsp;&lt;action application=&quot;bridge&quot; data=&quot;dingaling/<a href="http://jabber.mydomain.com/mybuddy@gmail.com">jabber.mydomain.com/mybuddy@gmail.com</a>&quot;/&gt; <br> &nbsp;&lt;/condition&gt; <br>&lt;/extension&gt; </span><br>
<br>where the <a href="http://jabber.mydomain.com">jabber.mydomain.com</a> is the component profile name I defined for the gtalk server component.<br><br>but if I modify the dialplan to do more general sip2jingle call as below:<br>
<br><span>&lt;extension name=&quot;sip2jingle&quot;&gt; <br> &nbsp;&lt;condition field=&quot;source&quot; expression=&quot;mod_sofia&quot;/&gt; <br> &nbsp;&lt;condition field=&quot;destination_number&quot; expression=&quot;^jingle\+([^\@]+)\@(.*)$&quot;&gt; <br>

 &nbsp;&nbsp;&nbsp;&lt;action application=&quot;bridge&quot; data=&quot;dingaling/<a href="http://jabber.mydomain.com/$1@gmail.com">jabber.mydomain.com/$1@gmail.com</a>&quot;/&gt; <br> &nbsp;&lt;/condition&gt; <br>&lt;/extension&gt; <br><br>
or <br></span><span>&lt;extension name=&quot;sip2jingle&quot;&gt; <br> &nbsp;&lt;condition field=&quot;source&quot; expression=&quot;mod_sofia&quot;/&gt; <br> &nbsp;&lt;condition field=&quot;destination_number&quot; expression=&quot;^jingle\+([^\@]+)\@(.*)$&quot;&gt; <br>

 &nbsp;&nbsp;&nbsp;&lt;action application=&quot;bridge&quot; data=&quot;dingaling/sip+${sip_fromuser}@${sip_fromhost}/$<a href="mailto:1@gmail.com">1@gmail.com</a>&quot;/&gt; <br> &nbsp;&lt;/condition&gt; <br>&lt;/extension&gt; </span><br><span><br>
I tested with <a href="mailto:jingle%2Bmybuddy.lastname@gmail.com">jingle+mybuddy.lastname@gmail.com</a> from my extension 1000 on soft phone Bria 2.2 on XP, I got the error&nbsp; &quot;<a href="mailto:1000@gmail.com">1000@gmail.com</a> not found&quot; <br>
</span><br>Could you guys share the correct syntax for doing SIP to Jingle calls?<br><br>Thanks,<br><br>Chris<br><br><br><br><br><br><br>