As Brian said, &quot;sofia profile xxx killgw xxx&quot; - you have to do them one at a time.<br><br>If you load the profile statically at start and rescan later from mod_xml_curl, it should add any missing gateways at that time.<br>

<br>-Steve<br><br><br><div class="gmail_quote">On 21 February 2011 15:40, David Villasmil <span dir="ltr">&lt;<a href="mailto:david.villasmil.work@gmail.com">david.villasmil.work@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Thanks Steven,<br>
<br>
The sofia profile loads statically. Only the gateway part is passed<br>
via curl, as I only want to load that dynamically.<br>
<br>
I see no errors anywhere:<br>
<br>
 sofia profile external rescan<br>
+OK scan complete<br>
<br>
freeswitch@internal&gt;<br>
<br>
HOw do i remove all gateways before rescanning them?<br>
<br>
Thanks<br>
<font color="#888888"><br>
David<br>
</font><div><div></div><div class="h5"><br>
On Mon, Feb 21, 2011 at 4:09 PM, Steven Ayre &lt;<a href="mailto:steveayre@gmail.com">steveayre@gmail.com</a>&gt; wrote:<br>
&gt; &quot;sofia status&quot; will show you which profiles &amp; gateways are defined.<br>
&gt;<br>
&gt; Are there any errors in FreeSWITCH&#39;s logfile when the XML is loaded? Perhaps<br>
&gt; there&#39;s an XML parsing error, or some other error which gets logged.<br>
&gt;<br>
&gt; Gateways are only loaded when you load the configuration (when mod_sofia<br>
&gt; loads, or on sofia profile name rescan). Existing gateways must be deleted<br>
&gt; and then rescanned to pick up configuration changes. Did you do that after<br>
&gt; making the changes?<br>
&gt;<br>
&gt; The gateway XML looks ok and I can confirm you can serve the config via<br>
&gt; mod_xml_curl (I do). Your profile looks incomplete though, for instance<br>
&gt; there&#39;s no sip-ip to bind to. Did you remove the profile params when posting<br>
&gt; to the list, or is that your entire profile?<br>
&gt;<br>
&gt; Regards,<br>
&gt; -Steve<br>
&gt;<br>
&gt;<br>
&gt; On 21 February 2011 14:47, David Villasmil &lt;<a href="mailto:david.villasmil.work@gmail.com">david.villasmil.work@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hello All,<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m trying to have my gateways defined dynamically with xml_curl.<br>
&gt;&gt; According to the logs, the xml is requested and relivered to fs but fs<br>
&gt;&gt; doesn&#39;t seem to load it as i&#39;m getting &quot;invalid gateway&quot; when i try to<br>
&gt;&gt; use them.<br>
&gt;&gt;<br>
&gt;&gt; this is my <a href="http://curl-gateway/gateways.php" target="_blank">http://curl-gateway/gateways.php</a> file:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &lt;document type=&quot;freeswitch/xml&quot;&gt;<br>
&gt;&gt;     &lt;configuration name=&quot;sofia.conf&quot; description=&quot;Gateways configuration&quot;&gt;<br>
&gt;&gt;<br>
&gt;&gt;          &lt;profile name=&quot;external&quot;&gt;<br>
&gt;&gt;                 &lt;!--<br>
&gt;&gt; <a href="http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files" target="_blank">http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files</a> --&gt;<br>
&gt;&gt;                 &lt;!-- This profile is only for outbound registrations<br>
&gt;&gt; to providers --&gt;<br>
&gt;&gt;                 &lt;gateways&gt;<br>
&gt;&gt;<br>
&gt;&gt;                    &lt;gateway name=&quot;gw_1&quot;&gt;<br>
&gt;&gt;                         &lt;param name=&quot;realm&quot; value=&quot;<a href="http://1.2.3.4:5060" target="_blank">1.2.3.4:5060</a>&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;username&quot; value=&quot;foo&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;password&quot; value=&quot;1234&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;register&quot; value=&quot;false&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;retry-seconds&quot; value=&quot;30&quot;/&gt;<br>
&gt;&gt;                    &lt;/gateway&gt;<br>
&gt;&gt;<br>
&gt;&gt;                    &lt;gateway name=&quot;gw_2&quot;&gt;<br>
&gt;&gt;                         &lt;param name=&quot;realm&quot; value=&quot;<a href="http://3.4.5.6:5060" target="_blank">3.4.5.6:5060</a>&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;username&quot; value=&quot;foo&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;password&quot; value=&quot;pass&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;register&quot; value=&quot;false&quot;/&gt;<br>
&gt;&gt;                         &lt;param name=&quot;retry-seconds&quot; value=&quot;30&quot;/&gt;<br>
&gt;&gt;                    &lt;/gateway&gt;<br>
&gt;&gt;<br>
&gt;&gt;                 &lt;/gateways&gt;<br>
&gt;&gt;<br>
&gt;&gt;          &lt;/profile&gt;<br>
&gt;&gt;<br>
&gt;&gt;     &lt;/configuration&gt;<br>
&gt;&gt; &lt;/document&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; and i get:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; freeswitch@internal&gt; sofia xmlstatus gateway gw_1<br>
&gt;&gt; Invalid Gateway!<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Is my file correct?<br>
&gt;&gt;<br>
&gt;&gt; It is not possible to find xml_curl gateways samples anywhere.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Thanks<br>
&gt;&gt;<br>
&gt;&gt; David<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;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><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; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<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><div style="visibility: hidden; left: -5000px; position: absolute; z-index: 9999; padding: 0px; margin-left: 0px; margin-top: 0px; overflow: hidden; word-wrap: break-word; color: black; font-size: 10px; text-align: left; line-height: 130%;" id="avg_ls_inline_popup">

</div>