<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 "from the dialplan" 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">
<action application="bind_meta_app" data="# a b execute_extension::${uuid_of_b_leg} XML foo"/></div><div class="gmail_extra"><br></div><div class="gmail_extra"><context name="foo"><br>
</div><div class="gmail_extra"> <extension name="hangup b leg"><br></div><div class="gmail_extra"> <condition field="destination_number" expression="^(.*)$"><br></div><div class="gmail_extra">
<action application="log" data="INFO Hanging up B leg uuid of $1"/><br></div><div class="gmail_extra"> <action application="set" data="res=${uuid_kill($1)}"/><br>
</div><div class="gmail_extra"> </condition><br></div><div class="gmail_extra"> </extension><br></div><div class="gmail_extra"></context><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've presented here.<br>
</div><div class="gmail_extra">-MC<br></div></div>