Found it!<div><br></div><div>in modules_k/dialog/dialog.c in method rpc_dlg_briodge</div><div><br></div><div>it checks for three mandatory parameters </div><div><div>if (rpc-&gt;scan(c, &quot;SSS&quot;, &amp;from, &amp;to, &amp;op) &lt; 2) {</div>
<div>        return;</div><div>}    </div></div><div><br></div><div><div>but it should be two mandatory and one optional</div></div><div>if (rpc-&gt;scan(c, &quot;SS&quot;, &amp;from, &amp;to) &lt; 2) return;<br></div><div>
if (rpc-&gt;scan(c, &quot;*S&quot;, &amp;op) &lt; 0) return;</div><div><br></div><div><br></div><div><br></div><div><br></div><div>the same for method rpc_end_dlg_entry_id</div><div><div>//      if (rpc-&gt;scan(c, &quot;ddS&quot;, &amp;h_entry, &amp;h_id, &amp;rpc_extra_hdrs) &lt; 2) return;</div>
<div>        if (rpc-&gt;scan(c, &quot;dd&quot;, &amp;h_entry, &amp;h_id) &lt; 2) return;</div><div>        if (rpc-&gt;scan(c, &quot;*S&quot;, &amp;rpc_extra_hdrs) &lt; 0) return;</div></div><div><br></div><div><br></div>
<div><br></div><div><br></div><div>./Kristofer</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Nov 7, 2012 at 9:55 AM, Kristofer Signer <span dir="ltr">&lt;<a href="mailto:kristofer.signer@gmail.com" target="_blank">kristofer.signer@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<div><br></div><div>I have an kamailio 3.3.2 server deployed with dialog awareness.</div><div><br></div><div>When call dlg.end_dlg over xmlrpc I get an 200 OK response but the dialog is not ended.</div>
<div><br></div>
<div>What I can do;</div><div>call dlg.list (xmlrpc) and get the active dialog list, xmlrpc interface working.</div><div>call dlg.dlg_list (xmlrpc) and get description of one dialog, xmlrpx method call with parameters working.</div>

<div>call dlg_end_dlg (kamctl) and successfully end the dialog.</div><div><br></div><div>so my questions are...</div><div>Is the xmlrpc method dlg.end_dlg known to work?</div><div>and if, what have I missed?</div><div><br>

</div><div><br></div><div>thanks</div><div>./Kristofer Signer</div><div><br></div><div><div>$ /usr/local/kamailio-3.3/sbin/kamailio -V                                            </div><div>version: kamailio 3.3.2 (x86_64/freebsd)                                                                  </div>

<div>flags: STATS: Off, USE_IPV6, USE_TCP, USE_TLS, TLS_HOOKS, USE_RAW_SOCKS, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT, USE_DNS_CACHE, USE_DNS_FAILOVER, USE_NAPTR, USE_DST_BLACKLIST, HAVE_RESOLV_RES</div>

<div>ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535, DEFAULT PKG_SIZE 4MB</div><div>poll method support: poll, select, kqueue.</div><div>id: unknown </div><div>compiled on 09:53:26 Nov  2 2012 with gcc 4.2.1</div>

</div>
</blockquote></div><br></div>