On 01/02/2017 21:45, Alex Balashov wrote:
> 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", "");
> }
>
>
This is also how the jsonrpcs module can execute the rpc commands:

  -
https://www.kamailio.org/docs/modules/stable/modules/jsonrpc-s.html#jsonrpc-s.f.jsonrpc_dispatch

So indeed, it's the option here.

Cheers,
Daniel

-- 
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - Mar 6-8 (Europe) and Mar 20-22 (USA) - 
www.asipto.com
Kamailio World Conference - May 8-10, 2017 - www.kamailioworld.com


_______________________________________________
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
sr-users@lists.sip-router.org
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users

Reply via email to