Re: [OpenSIPS-Users] siptrace problem

2016-03-20 Thread Dragomir Haralambiev
Hi, Thanks for your replay. The problem is table version. When I setup Opensips 2.2 sip_trace table have version 4, now is 5. I install new table and Opensips start working. When try to trace dialog with $var(user)="tester"; $var(trace_id) = "tid"; sip_trace("$var(trace_id)", "d", "$var(user)")

Re: [OpenSIPS-Users] siptrace problem

2016-03-16 Thread Liviu Chircu
Hi Dragomir! Indeed, the error reporting ("parameter not found") is a bit strange there - we will improve that soon! Basically, you have one of the following problems: * "db_mysql.so" not loaded * insufficient permissions for "name:passwd@localhost" * opensips.sip_trace table does not exist

Re: [OpenSIPS-Users] siptrace problem

2016-03-16 Thread Dragomir Haralambiev
oun...@lists.opensips.org] *Im Auftrag von *Dragomir Haralambiev > *Gesendet:* Mittwoch, 16. März 2016 10:04 > *An:* OpenSIPS users mailling list > *Betreff:* [OpenSIPS-Users] siptrace problem > > > > Hello, > > > > I try to add siptrace in my system. > > >

Re: [OpenSIPS-Users] siptrace problem

2016-03-16 Thread Nagorny, Dimitry
erence. Best Regards Dimitry Nagorny Trainee Von: users-boun...@lists.opensips.org [mailto:users-boun...@lists.opensips.org] Im Auftrag von Dragomir Haralambiev Gesendet: Mittwoch, 16. März 2016 10:04 An: OpenSIPS users mailling list Betreff: [OpenSIPS-Users] siptrace problem Hello, I try to

[OpenSIPS-Users] siptrace problem

2016-03-16 Thread Dragomir Haralambiev
Hello, I try to add siptrace in my system. I make follow: git pull make proper make all make install in script put follow lines : modparam("siptrace", "trace_id","[tid]uri=mysql://name:passwd@localhost /opensips;table=sip_trace;") modparam("siptrace", "trace_on", 1) I receive follow error: Para

Re: [OpenSIPS-Users] siptrace problem

2013-02-09 Thread Bogdan-Andrei Iancu
if (is_method("INVITE|CANCEL")) { sip_trace(); } Bogdan-Andrei Iancu OpenSIPS Founder and Developer http://www.opensips-solutions.com On 02/09/2013 08:13 PM, Dragomir Haralambiev wrote: Hi Bogdan, I call sip_trace from main route like this: if (is_method("INVITE")) { sip_trace(); ..

Re: [OpenSIPS-Users] siptrace problem

2013-02-09 Thread Bogdan-Andrei Iancu
Hi, Are you 100% that in your script, the incoming CANCEL hits the sip_trace() function ? Regards, Bogdan-Andrei Iancu OpenSIPS Founder and Developer http://www.opensips-solutions.com On 02/09/2013 12:31 AM, Dragomir Haralambiev wrote: Hello, I have problem with siptrace in OpenSips 1.8.

Re: [OpenSIPS-Users] siptrace problem

2013-02-09 Thread Muhammad Shahzad
Use only one method, not both at the same time in opensips.cfg. For sip_trace method, use it immediately after sanity checks in main route, e.g. route { if (!mf_process_maxfwd_header("10")) { sl_send_reply("483","Too Many Hops"); exit; }; if

Re: [OpenSIPS-Users] siptrace problem

2013-02-08 Thread Dragomir Haralambiev
I try with both , results the same. 2013/2/9 Muhammad Shahzad : > How you are doing sip trace? Are you calling sip_trace method or setting sip > trace dialog flag in opensips.cfg? > > http://www.opensips.org/html/docs/modules/1.8.x/siptrace.html#id248315 > > Thank you. > > > On Fri, Feb 8, 2013 at

Re: [OpenSIPS-Users] siptrace problem

2013-02-08 Thread Muhammad Shahzad
How you are doing sip trace? Are you calling sip_trace method or setting sip trace dialog flag in opensips.cfg? http://www.opensips.org/html/docs/modules/1.8.x/siptrace.html#id248315 Thank you. On Fri, Feb 8, 2013 at 11:31 PM, Dragomir Haralambiev wrote: > Hello, > > I have problem with siptra