<div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hello,</div><div><br></div><div>I am new to Kamailio and I am using Kamailio 5.2. When trying to the load the XHTTP module, event route not found error is thrown and XHTTP is module is not getting loaded. I am trying to use JSONRPC module through HTTP transport for RPC calls.  Using XMLRPC, things work fine.</div><div><br></div><div> DEBUG: <core> [core/sr_module.c:896]: init_mod(): xhttp<br>ERROR: xhttp [xhttp_mod.c:136]: mod_init(): failed to find event_route[xhttp:request]<br>ERROR: <core> [core/sr_module.c:898]: init_mod(): Error while initializing module xhttp (/usr/lib/kamailio/modules/xhttp.so)<br>ERROR: error while initializing modules</div><div><br></div><div><br></div><div>I have added below to Kamailio.cfg file:</div><span><span></span></span></div><div><span><span>loadmodule "xhttp.so"</span></span></div><div><span><span><br></span></span></div><div><span><span><pre class="gmail-programlisting">event_route[xhttp:request] {
    if(src_ip!=127.0.0.1) {
        xhttp_reply("403", "Forbidden", "text/html",
            "<html><body>Not allowed from $si</body></html>");
        exit;
        }
        if ($hu =~ "^/RPC") {
                jsonrpc_dispatch();
        } else {
        xhttp_reply("200", "OK", "text/html",
            "<html><body>Wrong URL $hu</body></html>");
    }
    return;
}</pre></span></span></div><span><span><div><span><span>Any help in this regard.</span></span></div><div><span><span></span></span><br></div><div><span><span>Thanks,</span></span></div><div><span><span>Dhruva<br></span></span></div></span></span></div></div>