Dear all<br><br>I&#39;ve done the following sample script to experiment the nixevent. I found some difference in behavior because of nixevent. Let me explain my question down the script.<br><br>require ESL;<br>use IO::Socket::INET;<br>
<br>my $ip = &quot;192.168.1.222&quot;;<br>my $sock = new IO::Socket::INET ( LocalHost =&gt; $ip,  LocalPort =&gt; &#39;8447&#39;,  Proto =&gt; &#39;tcp&#39;,  Listen =&gt; 1,  Reuse =&gt; 1 );<br>die &quot;Could not create socket: $!\n&quot; unless $sock;<br>
for(;;) {<br>    my $new_sock = $sock-&gt;accept();<br>    next if (not defined ($new_sock));<br>    my $pid = fork();<br>    if ($pid) {<br>        close($new_sock);<br>        next;<br>    }<br>    print &quot;CHILD PID: $$\n&quot;;<br>
    my $host = $new_sock-&gt;sockhost();<br>    my $fd = fileno($new_sock);<br><br>    my $con = new ESL::ESLconnection($fd);<br>    my $info = $con-&gt;getInfo();<br><br>    my $uuid = $info-&gt;getHeader(&quot;unique-id&quot;);<br>
<br>    printf &quot;Connected call %s, from %s\n&quot;, $uuid, $info-&gt;getHeader(&quot;caller-caller-id-number&quot;);<br>    my $r=$con-&gt;execute(&quot;answer&quot;);<br>    $con-&gt;events(&quot;plain&quot;,&quot;all&quot;);<br>
##########################<br>    $con-&gt;send(&quot;nixevent DTMF&quot;);     <br>    my $val=$con-&gt;api(&quot;create_uuid&quot;);<br>    $val = $val-&gt;getBody();            # LINE 1<br>    chomp($val);<br>    print &quot;UUID is $val\n&quot;;<br>
    my $e = $con-&gt;recvEvent(); <br>    $val = $e-&gt;getBody();               # LINE 2<br>    chomp($val);<br>    print &quot;UUID is $val\n&quot;;<br>    close($new_sock);<br>}<br><br># If the line ($con-&gt;send(&quot;nixevent DTMF&quot;);) is commented, then the result of create_uuid is obtained in LINE 1.<br>

# else, the result isn&#39;t obtained in the LINE 1 and it has nothing. The result is obtained only when I do a recvEvent, <br>
# followed by a getBody (LINE 2)<br><br>Just want to know why the behavior differs when nixevent is present???<br><br>