Hello,
ok. I am cc-ing to mailing list to close the discussion thread. The issue was actually caused by a mis-configuration.
Cheers, Daniel
On 03/02/2009 05:53 PM, Juan Perez wrote:
Thank you Daniel, I applied that code and it is working now. I appreciate it a lot. cheers jp
*From:* Juan Perez jperezsip2008@yahoo.com *To:* Daniel-Constantin Mierla miconda@gmail.com *Sent:* Friday, February 27, 2009 1:27:55 PM *Subject:* Re: [Kamailio-Users] Handling CANCEL and 487
thank you a lot, I will do it and let you know question: if the call is not cancelled, after the 200 OK there is an ACK, why that ACK does not have any prob?
*From:* Daniel-Constantin Mierla miconda@gmail.com *To:* Juan Perez jperezsip2008@yahoo.com *Sent:* Friday, February 27, 2009 11:36:17 AM *Subject:* Re: [Kamailio-Users] Handling CANCEL and 487
On 02/27/2009 06:32 PM, Juan Perez wrote:
thank you a lot, I am attaching the config file
in the main route block you have nothing that process the ack, so it gets drop.
Try to add:
if ( is_method("ACK") ) { if ( t_check_trans() ) { t_relay(); exit; } else { exit; } }
Daniel