Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Slava Bendersky
Hello Daniel, Look like transactions are not match when it send reply for NOTIFY. I think it should reuse connection. Here SDP output where cseq are match and asterisk does retransmissions until time out. Also I wonder where Path route is reused I see %* instead ; as delimiter between

[SR-Users] msilo module

2015-03-23 Thread Rajat Yadav
Hello i m very new to kamailio.I m trying to develop an application using webrtc and kamailio. In this i tried using msilo module so as to store offline messages but wasnt able to achieve it.After that i searched a lot on internet about working msilo codes but i didnt find it. Can someone please

Re: [SR-Users] Siremis error Call to a member function getQuoted()

2015-03-23 Thread canuck15
Ok, so the complete fix is: edit ...openbiz/bin/data/BizDataSql.php go to line 237 replace the line with. $xtable = $assoc[XTable]; mysql -p USE siremis; RENAME TABLE group TO grouptable; Or pick some other new name for the group table. edit ..siremis/modules/system/do Go through all the

Re: [SR-Users] Siremis error Call to a member function getQuoted()

2015-03-23 Thread canuck15
Hi, I figured that part out which is when I got the database error about the group table. So I will need to find where to change that table name. I should have mentioned that. On 3/23/2015 1:18 AM, Daniel-Constantin Mierla wrote: The issue is calling a function which is not member of the

[SR-Users] Compiling with db_unixodbc

2015-03-23 Thread Grant Bagdasarian
Hello, I'm trying to compile Kamailio 4.2.3 on Debian 7.8 with db_unixodbc but the sql.h file can't be found. I've used the following command to compile and install unixODBC. tar -zxvf unixODBC-2.3.2.tar.gz cd unixODBC-2.3.2 ./configure --sysconfdir=/etc

Re: [SR-Users] Compiling with db_unixodbc

2015-03-23 Thread Daniel-Constantin Mierla
Also, it may be needed to set the path to the libraries, not to get the missing symbols when starting kamailio with the module -- see modules/db_unixodbc/Makefile and adjust the values for DEFS and LIBS variables. On the other hand, if you install unixodbc from the packages of OS distro, kamailio

Re: [SR-Users] Regarding IMS/RCS complaint clients for Kamailio IMS/RCS server

2015-03-23 Thread Camille Oudot
Hi, 1.What are the IMS and RCS based clients available to test on Kamailio IMS/RCS server? you can use the following android application: https://rcsjta.googlecode.com/git/sdk-joyn/index.html 2.On browsing for Kamailio Installation,I found below 3 different links,please suggest me which

Re: [SR-Users] What is the best SIP trunk authentication strategy

2015-03-23 Thread Olle E. Johansson
On 19 Mar 2015, at 18:38, canuck15 canuc...@hotmail.com wrote: It looks like auth_check() will work. It seems intelligent enough to scan all instances of the same domain as long as the username is unique so that should get things working. The problem here is that there is a fundamental

Re: [SR-Users] Kamalio call issue

2015-03-23 Thread Yogendra Gupta
Hello, Thanks for nice support. When kamalio is not working at some DNS with audio call then how we can know what is issue at client side? Can you give us any online communication like Skype or hangout ID? So we can check it is server or client side issue? Thanks From:

Re: [SR-Users] Siremis error Call to a member function getQuoted()

2015-03-23 Thread Daniel-Constantin Mierla
The issue is calling a function which is not member of the object referred to. We will look into fixing it properly, for the moment do following changes: - editi the file: /var/www/html/openbiz/bin/data/BizDataSql.php - go to line 237 - replace the line with: $xtable = $assoc[XTable]; Thanks

Re: [SR-Users] remove_hf_value

2015-03-23 Thread Daniel-Constantin Mierla
Hello, you remove header Route and insert header Record-Route, is it what you wanted to do? Maybe removing same Record-Route header, but be careful in the case you have more than one proxy in the chain of signaling. Cheers, Daniel On 22/03/15 18:32, Slava Bendersky wrote: Hello Daniel, I end

Re: [SR-Users] Kamailio sending NOTIFY messages to private IP

2015-03-23 Thread Daniel-Constantin Mierla
Hello, have you used set_contact_alias() or fix_nated_contact() for SUBSCRIBE? Cheers, Daniel On 20/03/15 22:14, Olli Attila wrote: Hello, Im running kamailio 4.2.3 and I'm having troubles with reporting user presence data from Kamailio server to a registered UA behind nat. The NOTIFY

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Daniel-Constantin Mierla
Hello, as you can see the 408 is for another request, because the cseq is 103. The first one has cseq 102, but has no Record-Route header, which is mandated by new RFCs. In kamailio, if you added in request_route when handling the NOTIFY, you can try to add record route via reply_route if the

Re: [SR-Users] Websocket kamailio.cfg doubt

2015-03-23 Thread Daniel-Constantin Mierla
Hello, you can keep the route[WITHINDLG] as it is in the default configuration file, no need to update as in websocket readme. The current default one is including the more or less the same logic, so it should just work. Cheers, Daniel On 22/03/15 14:22, Austin Einter wrote: The README of

Re: [SR-Users] Siremis error Call to a member function getQuoted()

2015-03-23 Thread Daniel-Constantin Mierla
The right solution is to enclose the table name in between the quotations marks that allow any value there, including the reserved keywords. In mysql you can use the back ticks, e.g: SELECT * FROM `group`; The above will just work. But is not standard SQL, just mysql specific. That was the

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Alex Balashov
Hello Anthony, On 03/23/2015 06:24 PM, Anthony Messina wrote: In my case I am using the TOPOH module and it appears Asterisk may be truncating the Request-URI on NOTIFYs*after* the 1st one. Where the 1st one is if a user gets NOTIFY immediately upon the first SUBSCRIBE, such as when there is

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Daniel-Constantin Mierla
Hello, not sure you mean transaction as used inside kamailio (tm module), but a SIP transaction doesn't have anything to do with routing. Kamailio will be able to route requests/replies even when not creating transactions (i.e., when it is stateless forwarding). It looks like you get the sip

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Anthony Messina
On Monday, March 23, 2015 11:18:01 PM Daniel-Constantin Mierla wrote: Hello, not sure you mean transaction as used inside kamailio (tm module), but a SIP transaction doesn't have anything to do with routing. Kamailio will be able to route requests/replies even when not creating transactions

Re: [SR-Users] Compiling with db_unixodbc

2015-03-23 Thread Alex Balashov
Grant, You may need to add /usr/local/unixODBC/ to the header include path for this module compile, e.g. add -I/usr/local/unixODBC/ to the Makefile at the appropriate place.ers -- Alex -- Alex Balashov | Principal | Evariste Systems LLC 303 Perimeter Center North, Suite 300 Atlanta, GA

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Alex Balashov
Anthony, The Contact presented by the subscriber in the initial subscription is: m: Test User sip:172.16.4.7;line=sr-D8G7CE2.5PUeK-xuarl7NYDdNYDxNYlFUYoeUeQ8Cw.6DE2vDdyJDAa4TliwC84OC82LK-2ehwl7NYDdNYDxNYlFUAm6UYzm0gme;+sip.ice And the subsequent NOTIFY is correctly targeted to this RURI:

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Slava Bendersky
Hello Everyone, In my case I am using Path and I asterisk generate NOTIFY with route based on path, then I see on kamailio side tries reach on client on public IP side and open new connection not follow ESTABLISHED/RELATED link then it times out. Log: Mar 23 11:00:17 canlvprx01

Re: [SR-Users] kamailio asterisk NOTIFY

2015-03-23 Thread Anthony Messina
On Monday, March 23, 2015 06:26:50 PM Alex Balashov wrote: Hello Anthony, On 03/23/2015 06:24 PM, Anthony Messina wrote: In my case I am using the TOPOH module and it appears Asterisk may be truncating the Request-URI on NOTIFYs*after* the 1st one. Where the 1st one is if a user gets

[SR-Users] tsilo module

2015-03-23 Thread Alex Balashov
Hello, I don't understand the tsilo module. What is the practical use case for it? Thanks, -- Alex Balashov | Principal | Evariste Systems LLC 303 Perimeter Center North, Suite 300 Atlanta, GA 30346 United States Tel: +1-800-250-5920 (toll-free) / +1-678-954-0671 (direct) Web: