Woops.&nbsp; The documentation problem was my fault.&nbsp; I was basing that on a patched version of asterisk that jumped to another priority on FastAGI failure.&nbsp; I&#39;ll update the wiki.<br><br>Sean<br><br><div><span class="gmail_quote">
On 5/17/07, <b class="gmail_sendername">Tony Mountifield</b> &lt;<a href="mailto:tony@softins.clara.co.uk">tony@softins.clara.co.uk</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
In article &lt;<a href="mailto:464C8977.4020501@datatrakpos.com">464C8977.4020501@datatrakpos.com</a>&gt;,<br>Lee Jenkins &lt;<a href="mailto:lee@datatrakpos.com">lee@datatrakpos.com</a>&gt; wrote:<br>&gt;<br>&gt; Running 
1.2.14<br>&gt;<br>&gt; When I call a FastAGI script such as this script for an incoming call:<br>&gt;<br>&gt; [calldirect]<br>&gt; exten=&gt;s,1,Answer()<br>&gt; exten=&gt;s,2,AGI(agi://192.168.1.175/calldirect?check&amp;${CALLERID(num)})
<br>&gt; exten=&gt;s,3,Goto(check_time,s,1)<br>&gt;<br>&gt; and the FastAGI server is not running (Asterisk gets &quot;connection<br>&gt; refused&quot; TCP error), Asterisk just terminates the call like so:<br>&gt;<br>&gt; May 17 12:58:00 WARNING[10154]: res_agi.c:210 launch_netscript: Connect
<br>&gt; to &#39;agi://192.168.1.175/calldirect?check&amp;NNNNNNNNNN&#39; failed: Connection<br>&gt; refused<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;== Spawn extension (remove_caller, s, 2) exited non-zero on<br>&gt; &#39;SIP/datatrak-0978b670&#39;<br>
&gt;<br>&gt; The text of the relevant wiki article<br>&gt; (<a href="http://www.voip-info.org/wiki-Asterisk+FastAGI">http://www.voip-info.org/wiki-Asterisk+FastAGI</a>) infers that execution<br>&gt; should roll through to the next executable line in the context where it
<br>&gt; was called in the case of an error in executing the FastAGI:<br>&gt;<br>&gt; &quot;Asterisk 1.2<br>&gt; Under Asterisk 1.2, if a request to a FastAGI service failed for any<br>&gt; reason, there was no way to determine this from the dialplan. The
<br>&gt; recommended action is to set a channel variable before calling the<br>&gt; FastAGI, setting that variable to a known value within the FastAGI, and<br>&gt; then checking that variable once the AGI has returned...&quot;
<br>&gt;<br>&gt; Is there a setting/var that I am missing?<br><br>No, the information is wrong. You need to make a small mod to res/res_agi.c<br>in order to trap this case. Look for the second occurrence of<br>LOCAL_USER_REMOVE, and add the lines just before it as show by this
<br>patch extract (ignore the line numbers; I have other mods too):<br><br>@@ -2065,6 +2106,9 @@<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;close(fds[1]);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (efd &gt; -1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;close(efd);<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {
<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pbx_builtin_setvar_helper(chan, &quot;AGISTATUS&quot;, &quot;NOTFOUND&quot;);<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; res = 0;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LOCAL_USER_REMOVE(u);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return res;<br><br>With this change, a refused connection will not hang up the channel, but
<br>instead will set the AGISTATUS variable to &quot;NOTFOUND&quot;.<br><br>Cheers<br>Tony<br>--<br>Tony Mountifield<br>Work: <a href="mailto:tony@softins.co.uk">tony@softins.co.uk</a> - <a href="http://www.softins.co.uk">
http://www.softins.co.uk</a><br>Play: <a href="mailto:tony@mountifield.org">tony@mountifield.org</a> - <a href="http://tony.mountifield.org">http://tony.mountifield.org</a><br>_______________________________________________
<br>--Bandwidth and Colocation provided by <a href="http://Easynews.com">Easynews.com</a> --<br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:<br>&nbsp;&nbsp; <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">
http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>