<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><br><div>
2014-07-09 03:22:17.928601 [ERR] switch_core_session.c:2535 Invalid Application uuid_kill</div><br></div><br></blockquote></div><br></div><div class="gmail_extra">uuid_kill is an API command, not a dialplan application. It might be cleaner for you to use the execute_extension dialplan app to execute a simple dialplan extension that uses the set app to execute the API per this wiki entry:<br>
<br><a href="https://confluence.freeswit.ch/display/FREESWITCH/API+Commands">https://confluence.freeswit.ch/display/FREESWITCH/API+Commands</a><br></div><div class="gmail_extra">(see &quot;from the dialplan&quot; section)<br>
<br></div><div class="gmail_extra">Another advantage to using the execute_extension app in your bind_meta_app call is that you can have other things occur like spitting out log info.<br><br></div><div class="gmail_extra">
&lt;action application=&quot;bind_meta_app&quot; data=&quot;# a b execute_extension::${uuid_of_b_leg} XML foo&quot;/&gt;</div><div class="gmail_extra"><br></div><div class="gmail_extra">&lt;context name=&quot;foo&quot;&gt;<br>
</div><div class="gmail_extra">  &lt;extension name=&quot;hangup b leg&quot;&gt;<br></div><div class="gmail_extra">    &lt;condition field=&quot;destination_number&quot; expression=&quot;^(.*)$&quot;&gt;<br></div><div class="gmail_extra">
      &lt;action application=&quot;log&quot; data=&quot;INFO Hanging up B leg uuid of $1&quot;/&gt;<br></div><div class="gmail_extra">      &lt;action application=&quot;set&quot; data=&quot;res=${uuid_kill($1)}&quot;/&gt;<br>
</div><div class="gmail_extra">    &lt;/condition&gt;<br></div><div class="gmail_extra">  &lt;/extension&gt;<br></div><div class="gmail_extra">&lt;/context&gt;<br><br></div><div class="gmail_extra">Please note that the <a href="https://wiki.freeswitch.org/wiki/Reporting_Bugs#Standard_Disclaimer">standard disclaimer</a> applies to the information I&#39;ve presented here.<br>
</div><div class="gmail_extra">-MC<br></div></div>