<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi,<br>
<br>
The GoSub() application is intended for use in the dialplan, not to
call it from a Originate Action. What is your specific need? You can
Originate to a extension instead of an application an then if you need
to execute a subroutine, you can use GoSub() and Return() then you need
to on the called context.<br>
<br>
You can check
<a class="moz-txt-link-freetext" href="http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+Gosub">http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+Gosub</a> but the
example using the same context is not very clear.<br>
<br>
A better example would be this:<br>
<br>
[incoming]<br>
exten =&gt; s,1,Answer()<br>
exten =&gt; s,n,Noop(one)<br>
exten =&gt; s,n,Noop(two)<br>
exten =&gt; s,n,GoSub(mysub,s,1)<br>
exten =&gt; s,n,Noop(I returned!)<br>
exten =&gt; s,n,Hangup<br>
<br>
[mysub]<br>
exten =&gt; s,1,Noop(So I'm at a subroutine)<br>
exten =&gt; s,n,Noop(I need to do special steps)<br>
exten =&gt; s,n,Playback(tt-monkeys)<br>
exten =&gt; s,n,Return()<br>
<br>
Cheers,<br>
<pre class="moz-signature" cols="72">-- 
Ing. Miguel Molina
Grupo de Tecnolog&iacute;a
Millenium Phone Center
</pre>
<br>
Anahi Ludue&ntilde;a escribi&oacute;:
<blockquote cite="mid:COL124-W7BF1D7F18C49EE10E500693E20@phx.gbl"
 type="cite">
  <style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
  </style>Thanks Miguel, It was my mistake.<br>
So, my question is:<br>
&nbsp;&nbsp;&nbsp; if I want to call the GoSub application from
the Originate Action (using AMI), what I need to put in the context
parameter? The GoSub will jump to a special context.<br>
Thanks,<br>
  <br>
  <br>
  <br>
  <hr id="stopSpelling">Date: Wed, 16 Sep 2009 09:34:31 -0500<br>
From: <a class="moz-txt-link-abbreviated" href="mailto:mmolina@millenium.com.co">mmolina@millenium.com.co</a><br>
To: <a class="moz-txt-link-abbreviated" href="mailto:asterisk-dev@lists.digium.com">asterisk-dev@lists.digium.com</a>; <a class="moz-txt-link-abbreviated" href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</a><br>
Subject: Re: [asterisk-dev] MeetMe in Macro<br>
  <br>
  <title></title>
Hi,<br>
  <br>
I didn't notice on my first answer, but we are on the -dev list and
this is not related to asterisk code developing. I will answer you on
the -users list, so we can continue the discussion there.<br>
  <br>
Cheers,<br>
  <pre class="EC_moz-signature">-- 
Ing. Miguel Molina
Grupo de Tecnolog&iacute;a
Millenium Phone Center
  </pre>
</blockquote>
<pre class="moz-signature" cols="72">
</pre>
</body>
</html>