True!<br><br>Got it, working great now!<br><br>Thanks a lot!<br><br><br>David<br><br><div class="gmail_quote">On Fri, Jun 6, 2008 at 5:54 PM, Bogdan-Andrei Iancu &lt;<a href="mailto:bogdan@voice-system.ro">bogdan@voice-system.ro</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi David,<br>
<br>
This is because you do not use loose_route() at all, even if you do record_route(). See the dialog module documentation.<br>
<br>
Regards,<br>
Bogdan<br>
<br>
David Villasmil wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div class="Wj3C7c">
Hello List,<br>
<br>
 &nbsp; &nbsp; I have a simple load balancer with dispatcher. I&#39;m using the DIALOG module, it is supposed to store in db all info about ongoing dialogs. But my setup must be wrong, because a lot of dialogs are not removed when the call is hung up.<br>

<br>
Here&#39;s my cfg:<br>
<br>
<br>
#<br>
# $Id: openser.cfg 1827 2007-03-12 15:22:53Z bogdan_iancu $<br>
#<br>
# simple quick-start config script<br>
# Please refer to the Core CookBook at <a href="http://www.openser.org/dokuwiki/doku.php" target="_blank">http://www.openser.org/dokuwiki/doku.php</a><br>
# for a explanation of possible statements, functions and parameters.<br>
#<br>
<br>
# ----------- global configuration parameters ------------------------<br>
debug=3 # debug level (cmd line: -dddddddddd)<br>
fork=yes<br>
log_stderror=no &nbsp; # (cmd line: -E)<br>
children=4<br>
check_via=no<br>
dns=no<br>
rev_dns=no<br>
listen=a.b.c.d<br>
disable_dns_blacklist=true<br>
port=5060<br>
<br>
#set module path<br>
mpath=&quot;/lib/openser/modules/&quot;<br>
<br>
# ------------------ module loading ----------------------------------<br>
loadmodule &quot;mysql.so&quot;<br>
loadmodule &quot;maxfwd.so&quot;<br>
loadmodule &quot;sl.so&quot;<br>
loadmodule &quot;dispatcher.so&quot;<br>
loadmodule &quot;tm.so&quot;<br>
loadmodule &quot;mi_fifo.so&quot;<br>
loadmodule &quot;textops.so&quot;<br>
loadmodule &quot;xlog.so&quot;<br>
loadmodule &quot;rr.so&quot;<br>
loadmodule &quot;dialog.so&quot;<br>
loadmodule &quot;avpops.so&quot;<br>
<br>
modparam(&quot;mi_fifo&quot;,&quot;fifo_name&quot;, &quot;/tmp/openser_fifo&quot;)<br>
modparam(&quot;tm&quot;, &quot;fr_timer&quot;, 5)<br>
<br>
modparam(&quot;dispatcher&quot;, &quot;list_file&quot;, &quot;/etc/openser/dispatcher.list&quot;)<br>
modparam(&quot;dispatcher&quot;, &quot;flags&quot;, 2)<br>
modparam(&quot;dispatcher&quot;, &quot;force_dst&quot;, 1)<br>
modparam(&quot;dispatcher&quot;, &quot;dst_avp&quot;, &quot;$avp(i:271)&quot;)<br>
modparam(&quot;dispatcher&quot;, &quot;grp_avp&quot;, &quot;$avp(i:272)&quot;)<br>
modparam(&quot;dispatcher&quot;, &quot;cnt_avp&quot;, &quot;$avp(i:273)&quot;)<br>
<br>
modparam(&quot;dialog&quot;, &quot;dlg_flag&quot;, 4)<br>
modparam(&quot;dialog&quot;, &quot;db_mode&quot;, 1)<br>
modparam(&quot;dialog&quot;, &quot;table_name&quot;, &quot;dialog&quot;)<br>
modparam(&quot;dialog&quot;, &quot;db_url&quot;, &quot;mysql://user:pass@localhost/openser&quot;)<br>
<br>
modparam(&quot;avpops&quot;,&quot;avp_url&quot;,&quot;mysql://user:pass@localhost/openser&quot;)<br>
modparam(&quot;avpops&quot;, &quot;avp_table&quot;, &quot;dialog&quot;)<br>
<br>
route{<br>
 &nbsp; &nbsp;# initial sanity checks -- messages with<br>
 &nbsp; &nbsp;# max_forwards==0, or excessively long requests<br>
 &nbsp; &nbsp;if (!mf_process_maxfwd_header(&quot;10&quot;)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp;sl_send_reply(&quot;483&quot;,&quot;Too Many Hops&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;exit;<br>
 &nbsp; &nbsp;};<br>
<br>
 &nbsp; &nbsp;if (msg:len &gt;= &nbsp;2048 ) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp;sl_send_reply(&quot;513&quot;, &quot;Message too big&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;exit;<br>
 &nbsp; &nbsp;};<br>
<br>
 &nbsp; &nbsp; if (!method==&quot;REGISTER&quot;)<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;record_route();<br>
<br>
 &nbsp; &nbsp; if (method==&quot;INVITE&quot;) { setflag(4); }<br>
<br>
 &nbsp; &nbsp;if ( method==&quot;INVITE&quot; || method==&quot;ACK&quot; || method==&quot;BYE&quot; || method==&quot;OPTIONS&quot; || method==&quot;CANCEL&quot; ) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ds_select_dst(&quot;1&quot;,&quot;2&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t_on_failure(&quot;1&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t_relay();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;exit;<br>
 &nbsp; &nbsp; };<br>
<br>
}<br>
<br>
failure_route[1] {<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; if (t_check_status(&quot;408&quot;)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xlog(&quot;L_INFO&quot;,&quot;Marking GW as failed...\n&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ds_mark_dst(&quot;p&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ds_next_dst();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; t_on_failure(&quot;1&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; t_relay();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; } else{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; t_reply(&quot;501&quot;,&quot;Not Implemented&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; }<br>
}<br>
<br>
<br>
As far as I know, using the record_route assures that all messages are passed through the proxy so that dialogs must be removed... but they&#39;r not<br>
<br>
<br>
<br>
Any ideas?<br>
<br>
<br>
Thanks a lot.<br>
<br>
<br>
<br>
David Villasmil<br></div></div>
------------------------------------------------------------------------<br>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.openser.org" target="_blank">Users@lists.openser.org</a><br>
<a href="http://lists.openser.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.openser.org/cgi-bin/mailman/listinfo/users</a><br>
 &nbsp;<br>
</blockquote>
<br>
</blockquote></div><br>