[SR-Users] Kamailio+RTProxy failover active calls

2013-08-08 Thread Ivan Baques Garcia
Hi, Is possible to failover active calls between different RTPProxys with Kamailio without dropping active calls and not loosing audio? Best regards, ___ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list

Re: [SR-Users] Content-Type Header missing from third part registration

2013-08-08 Thread Dragos Vingarzan
Hello Ziad, maybe you should make a clarification, because, AFAIR, the REGISTER is not really forwarded! It is actually that the S-CSCF is creating additional B2B dummy REGISTER messages. And these might not be up to the spec... But anyway, what should this B2B REGISTER requests contain?

Re: [SR-Users] [Kamailio-Business] Kamailio Admin Book

2013-08-08 Thread Ruben Sousa
Great news Daniel! Save a copy for us! Ruben Sousa Chief Technology Officer VoIP / Virtualization / Enterprise Systems www.itcenter.com.pt / store.itcenter.com.pt T +351 256 370 980 * * On Wed, Aug 7, 2013 at 7:34 PM, Daniel-Constantin Mierla mico...@gmail.comwrote: Hello, being

[SR-Users] Kamailio RTProxy failover active calls

2013-08-08 Thread Ivan Baques Garcia
Hi, Is possible to failover active calls between different RTPProxy with Kamailio without dropping active calls and not loosing audio? Best regards, ___ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list

Re: [SR-Users] Content-Type Header missing from third part registration

2013-08-08 Thread Ziad Habchi
Hi Klaus, According to 3GPP TS 24.229 Release 5 , section 5.4.1.7 - g (Notification of Application Servers about registration status) the S-CSCF shall set the value of the Content-Type header to include the MIME type specified The Register is being forwarded to the Application Server and not to

Re: [SR-Users] Content-Type Header missing from third part registration

2013-08-08 Thread Ziad Habchi
Hi Dragos, Thank you again for your quick reply. As per the current implementation of the ims_isc module, the S-CSCF is sending the 3-rd party REGISTER towards the ASs listed in the reply from the HSS. In the third_party_reg.c source file, line 113 to 130 lists the header and body of the

Re: [SR-Users] Content-Type Header missing from third part registration

2013-08-08 Thread Ziad Habchi
Drogos, Below is a sample sip packet sent from the Kamailio S-CSCF to the AS RREGISTER sip:ip-sm-gw.ims-core:5070 SIP/2.0 Via: SIP/2.0/UDP 192.168.49.164:6060;branch=z9hG4bKf162.bf939204.0 To: sip:+1234567890@ims-core From: sip:scscf;tag=8c3594ac027a3ba0f0a908969aadf227-6014 CSeq: 10 REGISTER

Re: [SR-Users] Kamailio Admin Book

2013-08-08 Thread Julien Chavanton
table of content looks promising On Wed, Aug 7, 2013 at 9:38 PM, Neill Wilkinson neill.wilkin...@btinternet.com wrote: Daniel, that would be awesome!!! can't wait to read it! Neill...;o) Aeonvista Ltd Opening Up New Ideas On 7 August 2013 19:34, Daniel-Constantin Mierla

Re: [SR-Users] Kamailio RTProxy failover active calls

2013-08-08 Thread Carsten Bock
Hi, take a look at Mediaproxy-NG (https://github.com/sipwise/mediaproxy-ng) as a replacement for RTPProxy. It can store it's call data in a RedisDB for replication to a passive node (active standby setups). Kind regards, Carsten 2013/8/8 Peter Lemenkov lemen...@gmail.com: 2013/8/7 Ivan Baques

[SR-Users] Generate UUID in Kamailio Script

2013-08-08 Thread Grant Bagdasarian
Hello, Is it possible to generate a UUID inside the kamailio script? Is there a module available which does this already or do I need to call something external from the script? Regards, Grant ___ SIP Express Router (SER) and Kamailio (OpenSER) -

Re: [SR-Users] Generate UUID in Kamailio Script

2013-08-08 Thread Alex Balashov
Unfortunately, there is no transformation or core function that emits a GUID. There probably should be one. On 08/08/2013 09:33 AM, Grant Bagdasarian wrote: Hello, Is it possible to generate a UUID inside the kamailio script? Is there a module available which does this already or do I need

Re: [SR-Users] Kamailio+RTProxy failover active calls

2013-08-08 Thread Manwe
El Thu, 8 Aug 2013 09:47:15 +0200 Ivan Baques Garcia ivan.baq...@gmail.com escribió: Hi, Is possible to failover active calls between different RTPProxys with Kamailio without dropping active calls and not loosing audio? Best regards, You already asked this twice. Not with rtpproxy or

Re: [SR-Users] Generate UUID in Kamailio Script

2013-08-08 Thread Grant Bagdasarian
That's too bad. Any idea if this already on the backlog for future Kamailio versions? I guess the only option left is to use the EXEC module to run the uuidgen command to get a new UUID? -Original Message- From: sr-users-boun...@lists.sip-router.org

Re: [SR-Users] Generate UUID in Kamailio Script

2013-08-08 Thread Alex Balashov
Yes, but that's a latent performance killer. Grant Bagdasarian g...@cm.nl wrote: That's too bad. Any idea if this already on the backlog for future Kamailio versions? I guess the only option left is to use the EXEC module to run the uuidgen command to get a new UUID? -Original Message-

Re: [SR-Users] Generate UUID in Kamailio Script

2013-08-08 Thread Daniel-Constantin Mierla
Actually there is a variable giving an unique id for kamailio - just load kex module and use $sruid to get the unique id (it will be a new value for each use of it). If you have multiple instances of kamailio, then set server_id global parameter to make the values unique across instances.