Re: [SR-Users] t_relay dying ?

2018-01-08 Thread Joel Serrano
Just a hint here, try setting $du and then t_relay... On Mon, Jan 8, 2018 at 11:55 Jean Cérien wrote: > > Hi > > While I'm trying to get the provider fix the SBC, I am implementing the > workaround. > > Almost done here, storing and retrieving the correct address is fine,

Re: [SR-Users] t_relay dying ?

2018-01-08 Thread Jean Cérien
Hi While I'm trying to get the provider fix the SBC, I am implementing the workaround. Almost done here, storing and retrieving the correct address is fine, but when I set my $ru to the corrected value (asterisk IP), the t_relay still sends the packet to the kamailio IP -

Re: [SR-Users] parsing of SIP message failed

2018-01-08 Thread Daniel-Constantin Mierla
Hello, modules prefixed with presence and pua are related to presence server implementation. Then rls and xcap* modules are somehow related if you need these services. Rather old, but a starting point can be this tutorial:   - https://kb.asipto.com/kamailio:presence:k31-made-simple Cheers,

Re: [SR-Users] parsing of SIP message failed

2018-01-08 Thread Suresh Talasaniya
Hi Daniel, @Daniel. Thank you for the reply. I am working on Kamailio for the presence of SIP and WebRTC client. so, can you please guide me how to achieve presence functionality for both clients? Like as which module of Kamailio uses for it? Thank you. On Mon, Jan 8, 2018 at 2:41 PM,

Re: [SR-Users] t_relay dying ?

2018-01-08 Thread Jean Cérien
Many, many thanks ! I've posted the full dialog unredacted here: https://pastebin.com/EE9iwgZf The OK from Kamailio back to VOIP provider has Record-Route: Contact: So my understanding

Re: [SR-Users] t_relay dying ?

2018-01-08 Thread Sebastian Damm
Hi, On Mon, Jan 8, 2018 at 2:39 PM, Jean Cérien wrote: > > Thanks for this answer. The voip provider is not really eager to alter its > SBC as it considers that the contact field is not mandatory in the ACK. The > RFC states (section 8.1.1.8) > The problem is not that

Re: [SR-Users] t_relay dying ?

2018-01-08 Thread Jean Cérien
Thanks for this answer. The voip provider is not really eager to alter its SBC as it considers that the contact field is not mandatory in the ACK. The RFC states (section 8.1.1.8) The Contact header field MUST be present and contain exactly one SIP or SIPS URI in any request that can result in

Re: [SR-Users] parsing of SIP message failed

2018-01-08 Thread Daniel-Constantin Mierla
Hello, as I wrote in my previous message, there is an error related to kamailio receiving an HTTP response. Kamailio doesn't handle HTTP responses, it can received and process only HTTP requests. Another one from the log is related to the fact that the websocket connection is not found anymore.

[SR-Users] OT: question about codetriage

2018-01-08 Thread Daniel-Constantin Mierla
Hello, anyone here familiar with codetriage service? We got a pull request to refer to it from Kamailio readme.md file:   - https://github.com/kamailio/kamailio/pull/1389 The link is to:   - https://www.codetriage.com/kamailio/kamailio Which I guess is created by the one who did the pull

Re: [SR-Users] Kamailio fail to start with db_mongodb and ndb_mongodb modules

2018-01-08 Thread Abdul Basit
Hi Team, Any comments/ guidelines? -- regards, abdul basit | p: +92 32 1416 4196 | o: +92 30 0841 1445 On 6 January 2018 at 00:39, Abdul Basit wrote: > Hi Daniel & K-Team, > > I setup kamailio 5.0.5 from git on vanilla Debian GNU/Linux 8.3 (jessie) > > # kamailio -v >

Re: [SR-Users] Error in parse json documents in kamailio with jansson module

2018-01-08 Thread Daniel-Constantin Mierla
Hello, the issue is triggered by the fact that the JSON document has $xyz tokens (e.g., $oid), which match the kamailio variables format, and the jansson_get() tries to replace them, but no such variable is exported by kamailio, throwing an error. Try to replace $ with $$ inside the $var(data),