Re: [SR-Users] Kamailio in TLS and Non-TLS mode

2014-04-30 Thread Corey Edwards
On Tue, Apr 29, 2014 at 12:06 AM, aawaise wrote: > All certificates and keys have been made and updated. > Can we make kamailio server to listen to two ports, i.e 5061 and 5062 > simultaneously ?? > Like in a scenario where some users connect to 5061 and some at 5062. > Yes. Simply add multiple

[SR-Users] How can I implement Asterisk as Media server?

2014-04-30 Thread Patrik Kristel
Hello, I have Kamailio with websocket module and I want to connect Asterisk as media server. I'm trying to route calls from web JsSIP users to non-web users I would like to ask how can I implement it? Can i use the rtpproxy-ng Module and here setup IP of Asterisk? Or is there any other way to do

[SR-Users] What does this script do?.

2014-04-30 Thread VOIP Tests
Can someone let me know what this script does? avp_db_load("$ru/domain","i:/domain_preferences"); Thank you, Arun ___ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi

Re: [SR-Users] Does Kamailio not support multiple dialog elements in NOTIFY requests of the event "dialog"?

2014-04-30 Thread Klaus Feichtinger
Hi Daniel, thx for you hint. I´m currently working on extending DBG output on several places / files. In the meantime I´ve found that the presence_dialoginfo module is still able to aggregate XML bodies. But - and that´s what I wonder about - only when the XML bodies were "delivered" to the serve

Re: [SR-Users] Limit the number of requests per second based on the user

2014-04-30 Thread Daniel-Constantin Mierla
Hello, On 30/04/14 15:43, Sebastian Damm wrote: Hi, actually, I only need one limit for all users. I can exempt some calls based on IP from the limit. for all users should just work using one pipe. If you want per user, I already committed on master branch to have dynamic pipes, see: http

Re: [SR-Users] Limit the number of requests per second based on the user

2014-04-30 Thread Sebastian Damm
Hi, actually, I only need one limit for all users. I can exempt some calls based on IP from the limit. Thanks for the input on how to implement it with the existing modules. Best Regards, Sebastian On Tue, Apr 29, 2014 at 9:31 PM, Daniel-Constantin Mierla wrote: > Hello, > > do you need wit

Re: [SR-Users] Adding dialogs to a profile in a failure_route

2014-04-30 Thread Fred Posner
On 04/30/2014 04:16 AM, Alex Balashov wrote: So, do you suppose I could achieve my objective by tracking every dialog--that is, by calling dlg_manage() in the initial request route for every call, and then calling set_dlg_profile() out of a failure route conditionally? Wouldn't you need to s

[SR-Users] Kamailio v4.0.5 crash - transformations related ?

2014-04-30 Thread Dragos Oancea
Hi  We experimented a crash with kamailio 4.0.5 , it looks like a memory corruption. After an analyse of the core file,  it appears that it crashed while doing a str2int transformation (trying to convert the value of myvar to int):  if (($(dlg_var("myvar"){s.int}) == 0) && some_other_condition

Re: [SR-Users] How to replace cachedb_local.so functionality

2014-04-30 Thread Charles Chance
Hi Gary, That's good to hear. Best regards, Charles On 29 Apr 2014 13:37, "Gary Wallis" wrote: > On 4/28/2014 17:54, Charles Chance wrote: > >> Hi, >> >> Maybe try http://kamailio.org/docs/modules/stable/modules/htable.html? >> >> Regards, >> >> Charles >> > > > Excellent idea. > > This with

Re: [SR-Users] Adding dialogs to a profile in a failure_route

2014-04-30 Thread Alex Balashov
Hi Daniel, On 04/29/2014 09:03 AM, Daniel-Constantin Mierla wrote: I guess dialog has to be created in main request_route (or sub-route block executed from there) as it relies on some tm callbacks that could be related to transaction creation and first time forwarding. So, do you suppose I co