Daniel-Constantin Mierla writes:

> > 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:

Thanks for the answers.  I decided to use the former solution, because I
already had event_route[xhttp:request] in my config.

-- Juha

_______________________________________________
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