<div dir="ltr"><div><div>Thanks.<br><br></div>Yes I am having the route config as well:<br><br># XMLRPC routing<br>#!ifdef WITH_XMLRPC<br>route[XMLRPC] {<br>        # allow XMLRPC from localhost<br>        if ((method=="POST" || method=="GET")<br>                        && (src_ip==127.0.0.1)) {<br>                # close connection only for xmlrpclib user agents (there is a bug in<br>                # xmlrpclib: it waits for EOF before interpreting the response).<br>                if ($hdr(User-Agent) =~ "xmlrpclib")<br>                        set_reply_close();<br>                set_reply_no_connect();<br>                dispatch_rpc();<br>                exit;<br>        }<br>        send_reply("403", "Forbidden");<br>        exit;<br>}<br>#!endif<br><br></div>But I am not sure , where I have missed in the config. <br></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Thanks & Kind Regards,<br></div>Logeshwaran G<br></div></div></div>
<br><div class="gmail_quote">On Thu, Aug 17, 2017 at 1:05 PM, Sebastian Damm <span dir="ltr"><<a href="mailto:damm@sipgate.de" target="_blank">damm@sipgate.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, Aug 17, 2017 at 9:13 AM, Logeshwaran G <<a href="mailto:logeshwarangs@gmail.com">logeshwarangs@gmail.com</a>> wrote:<br>
> Also If I commented the dispatch_rpc();<br>
> Kamailio is running but it dosent accepting the http request.<br>
> Please Guide me.<br>
<br>
</span>Actually, it is all documented in the xmlrpc module. My example was<br>
for using jsonrpc, xmlrpc works a bit different.<br>
<br>
<a href="http://www.kamailio.net/docs/modules/5.0.x/modules/xmlrpc.html" rel="noreferrer" target="_blank">http://www.kamailio.net/docs/<wbr>modules/5.0.x/modules/xmlrpc.<wbr>html</a><br>
<br>
The xmlrpc module doesn't depend on the xhttp module, it works<br>
standalone. You need to specify the route name where xmlrpc requests<br>
will end up. In this route you call dispatch_rpc(), just as example<br>
1.8 shows you: <a href="http://www.kamailio.net/docs/modules/5.0.x/modules/xmlrpc.html#idp29963340" rel="noreferrer" target="_blank">http://www.kamailio.net/docs/<wbr>modules/5.0.x/modules/xmlrpc.<wbr>html#idp29963340</a><br>
<div class="HOEnZb"><div class="h5"><br>
BR<br>
Sebastian<br>
<br>
______________________________<wbr>_________________<br>
Kamailio (SER) - Users Mailing List<br>
<a href="mailto:sr-users@lists.kamailio.org">sr-users@lists.kamailio.org</a><br>
<a href="https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-users" rel="noreferrer" target="_blank">https://lists.kamailio.org/<wbr>cgi-bin/mailman/listinfo/sr-<wbr>users</a><br>
</div></div></blockquote></div><br></div>