Hi Collins,<br>Thanks for your suggestion. I've just now figured out what was the problem.<br><br>I believe, It is because of setting the setEventLock to true. I've set that to false and after that it works as expected.<br>
<br>Here is my understanding.<br>SetEventLock=true.<br>In A leg, currently bridge application is running. When B leg presses the #1, since SetEventLock is set to true, it was queued for execution.<br>When B hangup the call ( bridge application got completed ) , the queued application got executed.<br>
<br> Somebody can correct me if I am wrong.<br><br><br><br><div class="gmail_quote">On Thu, Dec 9, 2010 at 11:42 PM, Michael Collins <span dir="ltr"><<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Did you try enabling on the A leg also?<div><span style="font-family: arial,sans-serif; font-size: 13px; border-collapse: collapse;">$EslCon->execute("bind_meta_app","1 ab o event::appli=testing")</span></div>
<div><font face="arial, sans-serif"><span style="border-collapse: collapse;"><br></span></font></div><div><font face="arial, sans-serif"><span style="border-collapse: collapse;">Just curious as I've never actually tried this before.</span></font></div>
<div><font face="arial, sans-serif"><span style="border-collapse: collapse;">-MC<br></span></font><br><div class="gmail_quote"><div><div></div><div class="h5">On Wed, Dec 8, 2010 at 5:01 AM, lakshmanan ganapathy <span dir="ltr"><<a href="mailto:lakindia89@gmail.com" target="_blank">lakindia89@gmail.com</a>></span> wrote:<br>
</div></div><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="h5">Hi all,<br>Is my understanding is right??. If so, is it possible to run applications in A leg...<br>
<br><br><div class="gmail_quote">
On Mon, Dec 6, 2010 at 12:19 PM, lakshmanan ganapathy <span dir="ltr"><<a href="mailto:lakindia89@gmail.com" target="_blank">lakindia89@gmail.com</a>></span> 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 all,<br>I was experimenting the bind_mea_app and I have a doubt.<br>There is a call from 1000 to FreeSwitch extension and it is connecting to event outbound socket.<br>
I've the following script in place.<br><br>#!/usr/bin/perl<br>
use strict;<br>use warnings;<br>use Data::Dumper;<br>use lib '/usr/src/freeswitch/libs/esl/perl/';<br>use IO::Socket::INET;<br>use ESL;<br><br>my $SOCK = new IO::Socket::INET ( LocalHost => 'localhost', LocalPort => '8447', Proto => 'tcp', Listen => 10, Reuse => 1 );<br>
unless ($SOCK) {<br> print("Could not create socket: $!");<br> exit(2);<br>}<br><br>while (1) {<br> # Wait for any client through accept function in socket module.<br>
my $new_sock = $SOCK->accept();<br> next if (not defined($new_sock));<br> # Get socket host <br> my $host = $new_sock->sockhost();<br> print("Got a client accepted from $host\n");<br>
my $pid = fork();<br> if ($pid) {<br> close($new_sock);<br> next;<br> }<br> my $fd = fileno($new_sock);<br>
print("Newly forked child, pid: $$\n");<br> my $EslCon = new ESL::ESLconnection($fd);<br> print "Connection created successfully\n";<br> my $info = $EslCon->getInfo();<br>
$EslCon->setEventLock("true");<br> my $uuid = $info->getHeader("unique-id");<br> print Dumper $info->serialize();<br> $EslCon->execute("set","bind_meta_key=#");<br>
$EslCon->execute("bind_meta_app","1 b o event::appli=testing");<br> my $api = $EslCon->execute("bridge","{ignore_early_media=true}freetdm/1/a/xxxxxxxxx");<br>
}<br><br>The script called to the number that was dialed. In that number I pressed #1, but the event was not sent,<br>and I assume that the bridge application is executing in the A leg ( is it correct?? ) . So only after that bridge application gets completed the event gets triggered out.<br>
<br>If I execute the application in the B leg, then it is working fine, since there is no application that is running at that time.<br>Now I wanted to know if there is any way to run the application on A leg, I need that application to be executed even the bridge is not completed.<br>
<br>
</blockquote></div><br>
<br></div></div><div class="im">_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></div></blockquote></div><br></div>
<br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br>