[OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete

2011-07-03 Thread Mark Holloway
I have OpenSIPS 1.6.4 configured as a SIP Registrar with mysql. It is configured to challenge SIP registrations with authentication. Keeping it simple, I've used opensipsctl to add user 1000 with password 1000 and set the IP/SIP Domain of OpenSIPS is 192.168.1.20. I am attempting to register us

Re: [OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete

2011-07-03 Thread Mark Holloway
I resolved it. Forgot to uncomment one very important part of the cfg file. if (!save("location")) sl_reply_error(); exit; } On Jul 3, 2011, at 11:31 AM, Mark Holloway wrote: > I have OpenSIPS 1.6.4 configured as a SIP Registrar with mysql. It i

Re: [OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete

2011-07-03 Thread Mark Holloway
Odd, even though I now get 200 OK from OpenSIPS after registering I still receive 484 Address Incomplete after the 200 OK even though the endpoint is registered. On Jul 3, 2011, at 11:35 AM, Mark Holloway wrote: > I resolved it. Forgot to uncomment one very important part of the cfg file. >

Re: [OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete

2011-07-03 Thread Barsan Liviu
:23:56 AM Subject: Re: [OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete Odd, even though I now get 200 OK from OpenSIPS after registering I still receive 484 Address Incomplete after the 200 OK even though the endpoint is registered. On Jul 3, 2011, at 11:35 AM, Mark Holloway

Re: [OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete

2011-07-04 Thread Bogdan-Andrei Iancu
Hi Mark, Probably you miss an "exit" after the save(location) block: if (!save("location")) sl_reply_error(); exit; } exit; Regards, Bogdan On 07/04/2011 06:23 AM, Mark Holloway wrote: Odd, even though I now get 200 OK from OpenSIPS after registering I still receive 484 Addre

Re: [OpenSIPS-Users] SIP Registration Failure - 484 Address Incomplete

2011-07-04 Thread Mark Holloway
Thanks Bogdan, that was it. On Jul 4, 2011, at 5:59 AM, Bogdan-Andrei Iancu wrote: > Hi Mark, > > Probably you miss an "exit" after the save(location) block: > if (!save("location")) > sl_reply_error(); > exit; > } > exit; > > Regards, > Bogdan > > On 07/04/2011 06:23 AM, Mark Hol