On Wed, Feb 01, 2017 at 10:41:47PM +0200, Juha
Heinanen wrote:
Is there a way to execute a named config route,
such as an event_route,
by an rpc command?
I'm not aware of one, but xhttp requests inherently trigger
an event_route:
http://kamailio.org/docs/modules/4.4.x/modules/xhttp.html#idp49731828
If you had a need to execute some other logic that cannot be located
there, I suppose you could do something like:
event_route[xhttp:request] {
if($hu =~ "^/juha_special_rpc_path") {
route(THE_ROUTE);
xhttp_reply("200", "OK", "text/plain", "");
} else
xhttp_reply("404", "Not Found",
"text/html", "");
}
So indeed, it's the option here.
Cheers,
Daniel
--
Daniel-Constantin Mierla