<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    I've noticed that the h exten isn't executed if using AEL and a call
    is currently in a macro. (ASTERISK-19336)<br>
    <br>
    Maybe I was unclear in the bugreport, but I described two scenarios.<br>
    1) ael context with h-exten (not executed on hangup) calling macro<br>
    2) ael context with h-exten (not executed on hangup) calling macro
    with catch h { ... } (executed on hangup)<br>
    <br>
    The issue was closed, refering to scenario 2. <br>
    <br>
    Can this issue be reopened? Because in scenario 1 not a single
    h-exten is executed..<br>
    <br>
    Thanks!<br>
    <br>
    /Johan<br>
    <br>
    <br>
    -------- Ursprungligt meddelande --------
    <table class="moz-email-headers-table" border="0" cellpadding="0"
      cellspacing="0">
      <tbody>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Ämne: </th>
          <td>[JIRA] Closed: (ASTERISK-19336) h exten is not run in the
            context that calls a AEL macro</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Datum: </th>
          <td>Fri, 10 Feb 2012 08:36:19 -0600 (CST)</td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Från: </th>
          <td>Matt Jordan (JIRA) <a class="moz-txt-link-rfc2396E" href="mailto:noreply@issues.asterisk.org">&lt;noreply@issues.asterisk.org&gt;</a></td>
        </tr>
        <tr>
          <th align="RIGHT" nowrap="nowrap" valign="BASELINE">Till: </th>
          <td><a class="moz-txt-link-abbreviated" href="mailto:johan@wilfer.se">johan@wilfer.se</a></td>
        </tr>
      </tbody>
    </table>
    <br>
    <br>
    <pre>     [ <a class="moz-txt-link-freetext" href="https://issues.asterisk.org/jira/browse/ASTERISK-19336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel">https://issues.asterisk.org/jira/browse/ASTERISK-19336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel</a> ]

Matt Jordan closed ASTERISK-19336.
----------------------------------

    Resolution: Not A Bug

Only one hangup handler will ever be called.  The hangup handler that is called will be the one closest in scope to the current location of the executing call.

Note that there is a proposed feature that would allow for a stack of hangup handlers to be called; however, that would be a new feature and not a bug.

&gt; h exten is not run in the context that calls a AEL macro
&gt; --------------------------------------------------------
&gt;
&gt;                 Key: ASTERISK-19336
&gt;                 URL: <a class="moz-txt-link-freetext" href="https://issues.asterisk.org/jira/browse/ASTERISK-19336">https://issues.asterisk.org/jira/browse/ASTERISK-19336</a>
&gt;             Project: Asterisk
&gt;          Issue Type: Bug
&gt;      Security Level: None
&gt;          Components: PBX/pbx_ael
&gt;    Affects Versions: 1.8.9.2
&gt;            Reporter: Johan Wilfer
&gt;
&gt; I expect the h exten to be run both in the macro catch-block and in the context calling the macro. This is not the case.
&gt; The following code:
&gt; {code:xml}
&gt;   context conference {
&gt;     incoming =&gt; {
&gt;       &amp;testmacro();
&gt;     }
&gt;     h =&gt; {
&gt;       Noop(Called from the context that invokes the macro - THIS DOESN'T WORK);
&gt;     }
&gt;   }
&gt;   macro testmacro() {
&gt;     Noop(Running testmacro!);
&gt;     Wait(20);
&gt;     catch h {
&gt;       Noop(h catched in testmacro - OK!);
&gt;     }
&gt;   }
&gt; {code}
&gt; Creates this output:
&gt; {code:xml}
&gt;     -- Executing [incoming@conference:1] Gosub("SIP/trunk-00000002", "testmacro,~~s~~,1") in new stack
&gt;     -- Executing [~~s~~@testmacro:1] NoOp("SIP/trunk-00000002", "Running testmacro!") in new stack
&gt;     -- Executing [~~s~~@testmacro:2] Wait("SIP/trunk-00000002", "20") in new stack
&gt;   == Spawn extension (testmacro, ~~s~~, 2) exited non-zero on 'SIP/trunk-00000002'
&gt;     -- Executing [h@testmacro:1] NoOp("SIP/trunk-00000002", "h catched in testmacro - OK!") in new stack
&gt; {code}
&gt; The h-exten in the calling context is never called..
&gt; The issue is the same with 1.6.2.20, and it's also the same if you remove the "catch h { ... } "-block in the macro - the context that calls the macro never executes it's h-exten.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: <a class="moz-txt-link-freetext" href="http://www.atlassian.com/software/jira">http://www.atlassian.com/software/jira</a>
</pre>
  </body>
</html>