Re: [OpenSIPS-Users] Problem Contact URI

2010-12-23 Thread Bogdan-Andrei Iancu
Hi Lionel, could you post the in and out messages showing the Contact change done by opensips ? also, what functions are you using in opensips for Contact manipulation ? BTW, what opensips version/revision are you using ? Regards, Bogdan Lionel Sicilia wrote: Hi, I'm trying opensips and pj

Re: [OpenSIPS-Users] ul_add MI function

2010-12-23 Thread Bogdan-Andrei Iancu
Hi Denis, have you checked http://www.opensips.org/html/docs/modules/1.6.x/usrloc.html#id293499 ? There are 9 parameters you have to pass. Regards, Bogdan Denis Putyato wrote: Hello! Can anybody explain me how to use such command? Do I need fill all parameters or I may fill just AOR and

Re: [OpenSIPS-Users] Using dispatcher and t_replicate()

2010-12-23 Thread Bogdan-Andrei Iancu
Hi Jody, in 1.6.4, it seams that $du is NULL (no value) - are you sure the ds_select_dst() was successful ? put it in an "if" statement : if ( ds_select_dst("1", "4") ) { xlog("replicating to $du \n"); t_replicate("$du"); } else { xlog("failure to select");

Re: [OpenSIPS-Users] Opensips just stops responding

2010-12-23 Thread Bogdan-Andrei Iancu
Cool...I also had a lot of issues in the past with Selinux :( Regards, Bogdan Maciej Bylica wrote: Hi Bogdan, Thanks for prompt answer. Port 5060 is open, but thanks to your advice i tried to originate the INVITE directly from the server and the result was that Opensips responded properly. Th

Re: [OpenSIPS-Users] Makefile patches (documentation installation)

2010-12-23 Thread Bogdan-Andrei Iancu
Hi John, Thanks for your fixes - I uploaded them on SVN and tarbals. Best regards, Bogdan John Khvatov wrote: Hello all. First patch fixes missed modules documentation installation by replacing 'install-modules' by 'install-modules-all' in 'install' target. The target 'install-modules-all'

Re: [OpenSIPS-Users] Using dispatcher and t_replicate()

2010-12-23 Thread Jody Rudolph
Bogdan, This is how I have I have been using it as a workaround. This does work 100% of the time and $du is being populated by the dispatcher addresses in round-robin. ds_select_dst("1", "4"); switch($du) { case "sip:192.168.1.1": x

Re: [OpenSIPS-Users] opensips segfault on mysql errors

2010-12-23 Thread Chris Picton
Hi Bogdan I am testing the 1.6.4 update, but in the meantime I have set up a virtual db connection which has two connections in failover to the same database. This is currently preventing the crashes on my live system Regards Chris Sent via my BlackBerry from Vodacom - let your email find you!

Re: [OpenSIPS-Users] Problem Contact URI

2010-12-23 Thread Lionel Sicilia
> Hi Lionel, > > could you post the in and out messages showing the Contact change done > by opensips ? also, what functions are you using in opensips for Contact > manipulation ? > > BTW, what opensips version/revision are you using ? > > Regards, > Bogdan > Thanks for your reply. Opensips'm usi

Re: [OpenSIPS-Users] Using dispatcher and t_replicate()

2010-12-23 Thread Bogdan-Andrei Iancu
Jody, when ds_select_dst() fails, don't you get any other previous err logs giving clues on the failures ? Regards, Bogdan Jody Rudolph wrote: Bogdan, This is how I have I have been using it as a workaround. This does work 100% of the time and $du is being populated by the dispatcher addre

Re: [OpenSIPS-Users] Problem Contact URI

2010-12-23 Thread Bogdan-Andrei Iancu
Hi Lionel, you show here a completely different issue - this new one has nothing to do with the contact URI, but with the CSEQ number - opensips refuses a new registration for that AOR as the (since the last registration done) the callid was reused without increasing the CSEQ number... Check

[OpenSIPS-Users] b2b top hiding

2010-12-23 Thread Anton Zagorskiy
Hi. Could you some explain about interaction between original INVITE transaction and b2b top hiding's transaction? As I see that b2b transmits all sip packets to the original INVITE transaction via loopback interface. And in the failure situation in the B2B transaction my failure route was callin

Re: [OpenSIPS-Users] Using dispatcher and t_replicate()

2010-12-23 Thread Jody Rudolph
Bogdan, No other errors. I am testing non-production with only one endpoint registering so theres not a lot of traffic going on. As of right now all I have found is that this fails constantly: >> ds_select_dst("1", "4"); >> t_replicate("$du"); This does not (although

Re: [OpenSIPS-Users] Problem Contact URI

2010-12-23 Thread Lionel Sicilia
> Hi Lionel, > > you show here a completely different issue - this new one has nothing to > do with the contact URI, but with the CSEQ number - opensips refuses a > new registration for that AOR as the (since the last registration done) > the callid was reused without increasing the CSEQ number...