Hi All,<br><br>I installed Opensips 1.5. I enabled XMPP module in component mode.<br>Jabber server (ejabberd 2.0.1) is running in the same machine. <br>I am trying to communicate between Opensips and Jabber server.<br>Opensips is configured with XMPP as described below.<br>
**********************************************************************************<br>listen=udp:<a href="http://192.168.1.130:5060">192.168.1.130:5060</a><br>loadmodule &quot;xmpp.so&quot;<br># -- xmpp parameters --<br>modparam(&quot;xmpp&quot;, &quot;domain_separator&quot;, &quot;*&quot;)<br>
modparam(&quot;xmpp&quot;, &quot;gateway_domain&quot;, &quot;<a href="http://my_host_name.com">my_host_name.com</a>&quot;)<br>modparam(&quot;xmpp&quot;, &quot;xmpp_domain&quot;, &quot;<a href="http://my_host_name.com">my_host_name.com</a>&quot;)<br>
modparam(&quot;xmpp&quot;, &quot;xmpp_host&quot;, &quot;<a href="http://my_host_name.com">my_host_name.com</a>&quot;)<br>modparam(&quot;xmpp&quot;, &quot;backend&quot;, &quot;component&quot;)<br>modparam(&quot;xmpp&quot;, &quot;xmpp_port&quot;, 5347)<br>
modparam(&quot;xmpp&quot;, &quot;xmpp_password&quot;, &quot;secret&quot;)<br><br>#------------XMPP related at route -----------------------------<br>        if (method == &quot;MESSAGE&quot;) {<br>                log(&quot;*** xmpp-handled MESSAGE message.\n&quot;);<br>
                if (xmpp_send_message()) {<br>                        t_reply(&quot;200&quot;, &quot;Accepted&quot;);<br>                } else {<br>                        t_reply(&quot;404&quot;, &quot;Not found&quot;);<br>
                }<br>                return;<br>        }<br>*************************************************************************************<br>When the server is running it is keep on throwing the following error.<br>
 <br>ERROR:xmpp:net_connect: connect() failed: Connection refused<br clear="all"><br>Coming to jabber server (here it is ejabberd), it is able to allow connections from outer xmpp servers.(It is able to connect to Gtalk and communicate with it)<br>
Can you please give me a suggesion to fix this issue.<br><br>Thanks<br>Jp<br>