[SR-Users] Re: pua_json mwi minimal json

2023-07-21 Thread E. Schmidbauer
The json you attached to the email had several mistakes, try using a json linting tool to validate the json. Here is valid json based on your email: { "Event-Package": "message-summary", "Event-Name": "update", "Expires": "3600", "From": "sip:cc...@dff.com", "To": "sip:cc...@dff.com",

[SR-Users] Re: enable topology hiding on one side or dynamic ip in topoh module Contact and Via Header

2023-02-17 Thread E. Schmidbauer
pcaps, will need to redact values first On Fri, Feb 17, 2023 at 7:26 AM Daniel-Constantin Mierla wrote: > Maybe you can share a pcap for such case together with topos modparams and > kamailio version. > > > On 17.02.23 13:01, E. Schmidbauer wrote: > > Yes- I am adding record_rout

[SR-Users] Re: enable topology hiding on one side or dynamic ip in topoh module Contact and Via Header

2023-02-17 Thread E. Schmidbauer
Yes- I am adding record_route(); on each INVITE, no errors in logs. On Fri, Feb 17, 2023 at 2:05 AM Daniel-Constantin Mierla wrote: > Hello, > > are you executing record_route()? Do you get any errors in the logs? > > Cheers, > Daniel > On 16.02.23 23:45, E. Schmidbauer

[SR-Users] Re: enable topology hiding on one side or dynamic ip in topoh module Contact and Via Header

2023-02-16 Thread E. Schmidbauer
Hi Patrick, I'm running into a similar issue with `topos` I have kamailio setup to use 2 interfaces, one for ingress, and one for egress traffic. In this setup, `topos` routing does not work Were you able to find a solution? On Fri, Mar 18, 2022 at 4:34 AM Patrick Karton wrote: > > Caller <-->

Re: [SR-Users] load to htable from flat file

2022-03-15 Thread E. Schmidbauer
I prefer sqlite for something like this On Tue, Mar 15, 2022, 7:11 AM David Villasmil < david.villasmil.w...@gmail.com> wrote: > Hello guys, > > Is this possible? > > Regards, > > David Villasmil > email: david.villasmil.w...@gmail.com > phone: +34669448337 >

Re: [SR-Users] pua_json_publish is not realtime...

2021-10-11 Thread E. Schmidbauer
Can you attach a sip subscribe message and json payload ($rb) which you expect to send a notify to the subscribe? On Fri, Oct 8, 2021 at 11:49 AM Jerry Kendall < jerry.kend...@bishophosting.com> wrote: > Hey there, > > > I have this, as per documentation, that I assume is going to push out the >

Re: [SR-Users] DMQ_USRLOC module and calls

2021-07-13 Thread E. Schmidbauer
I usually put an "edge" proxy (another set of kamailio instances) in front of sip registrars. the edge proxies add the path header, this allows your sip registrars to remain "connectionless" to the UAC. This allows an INVITE to be sent to the UAC from any sip registrar in your cluster, the user

Re: [SR-Users] Sipwise SEMS

2021-07-05 Thread E. Schmidbauer
Does SEMS support ICE for media negotiation? On Mon, Jul 5, 2021, 8:45 AM Dmitry Sinina wrote: > There is also SEMS forked by yeti-switch project > https://github.com/yeti-switch/sems It has a lot new features but it is > not fully compatible with old modules. > On 05.07.21 11:42,

Re: [SR-Users] How to implement a self-sustained Presence server

2020-12-28 Thread E. Schmidbauer
You could try https://www.kamailio.org/docs/modules/devel/modules/pua_dialoginfo I did not have much luck with the module (it seemed to have intermittent issues with BLF lighting up/down) but I also did not invest a ton of time figuring it out. I ultimately took a different approach, which is to

Re: [SR-Users] Unload UAC remote registry

2020-12-23 Thread E. Schmidbauer
You could use RPC. I built a wrapper service for RPC which exposes REST endpoints. Take a look here: https://github.com/voipxswitch/kamailio-jsonrpc-client On Tue, Dec 22, 2020, 8:34 AM Javier Valencia wrote: > Hello, > > I'm on Kamailio 4.4.7 and I'm trying to do uac.reg_refresh over a row

Re: [SR-Users] MID-Registrar Example

2020-12-18 Thread E. Schmidbauer
Opensips has mid-registrar module. It's a method of forwarding registration data to another registrar (usually with a much higher expiration). The idea is to handle high volumes of registrations at opensips and only forward the registration data to another registrar when the data changes. Kamailio

Re: [SR-Users] Kamailio Slack Invite

2020-09-22 Thread E. Schmidbauer
; are probably a much of people (including myself) that would like to join. > > On Sep 21, 2020, at 6:20 AM, E. Schmidbauer > wrote: > > invite sent > > On Sat, Sep 19, 2020 at 9:34 AM Peter Baines wrote: > >> Hi, >> >> Can someone send me an invi

Re: [SR-Users] Kamailio Slack Invite

2020-09-21 Thread E. Schmidbauer
invite sent On Sat, Sep 19, 2020 at 9:34 AM Peter Baines wrote: > Hi, > > Can someone send me an invite to the Kamailio Slack channel please. > > I am sure I used to be a member but I may have used a different email > address. > > -- > > *Web:* http://pbaines.com > *Email:* pe...@pbaines.com >

Re: [SR-Users] Huge DB load while using location and registrar module (save()).

2020-01-09 Thread E. Schmidbauer
is there a particular reason you need the db updated in real-time and "know the count of registered users and the source IP / user-agent / username data." ? if it's for something outside of kamailio, id recommend using a module like evapi to push the data in real-time to an application that can

Re: [SR-Users] Can I load balance Kamailio with Kamailio?

2019-09-24 Thread E. Schmidbauer
short answer- yes *but* it also depends on what you are load balancing. simply routing INVITEs, you should only need to add record-route headers to keep each kamailio in the dialog path (that is- if you want to keep them in the route path) if you are load balancing REGISTERs, it's a little

Re: [SR-Users] controlling presence with new module `pua_json`

2019-08-30 Thread E. Schmidbauer
hi Bill, The json body you send has to correspond with your SIP SUBSCRIBE data (active_watchers table) I'd be happy help out if you want to send me some data from your active_watchers table. Thanks, E On Thu, Aug 29, 2019 at 12:50 PM Henning Westerholt wrote: > Hello Bill, > > (please keep the

Re: [SR-Users] How to hook to Register And Unregister event in Kamailio

2019-07-22 Thread E. Schmidbauer
ady a NodeJS server running, I will try the evapi >> module. If there are some tutorial/Wiki on how to do this please share that >> with me. That will be great help. >> >> On Mon, Jul 22, 2019 at 3:39 PM E. Schmidbauer >> wrote: >> >>> I would recommend

Re: [SR-Users] How to hook to Register And Unregister event in Kamailio

2019-07-22 Thread E. Schmidbauer
I would recommend using `evapi` for something like this You could build a small go app that connects via evapi and send/receive events to/from kamailio. On Mon, Jul 22, 2019 at 3:07 AM Anuran Barman wrote: > Hi, > I am integrating Kamailio into my application. I want to hook to the >

[SR-Users] dialog module with dmq

2018-07-20 Thread E. Schmidbauer
Is anyone using dialog module with DMQ to share dialogs across multiple kamailio instances? i've been testing it and it seems unreliable. sometimes the dialog data is sent from nodeA to nodeB, sometimes it is not. im wondering if im missing some settings or it's a bug. I tested latest master

Re: [SR-Users] hot switch debug mode

2018-06-06 Thread E. Schmidbauer
this seems to work for me: *# info level* kamcmd cfg.seti core debug 2 # logging off kamcmd cfg.seti core debug 0 On Mon, Jun 4, 2018 at 4:49 PM, Sergey Safarov wrote: > Thank you Henning > That's i looking for! > > Sergey > > пн, 4 июн. 2018 г. в 22:04, Henning Westerholt : > >> Am

Re: [SR-Users] Database connection handles vs. processes

2017-07-10 Thread E. Schmidbauer
some modules can have child processes that each maintain a database connection. the number of child processes for a module can sometimes be set using a modparam() for that module On Mon, Jul 10, 2017 at 4:23 PM, Alex Balashov wrote: > Hi, > > By way of illustration, I