<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>
Thanks for the answer<br>My case is the following<br><br>queues.conf<br>[6010]<br>;fullname = techsupport<br>strategy = rrmemory<br>timeout = 10<br>context = ntech<br>wrapuptime =<br>autofill = yes<br>autopause = no<br>maxlen =<br>joinempty = no<br>leavewhenempty = no<br>reportholdtime = no<br>musicclass =<br>member = SIP/6000<br><br><br>extentions.conf<br>[ntech]<br>exten =&gt; 6010,1,Answer<br>exten =&gt; 6010,2,Queue(techsupport)<br>exten =&gt; 6010,3,Hangup<br><br><span style="text-decoration: underline;">6000 is a regular extention, and on 6010 I have configured a queue, using another extention if I dial 6010 the queue answer me without problem, in this case it only rings on 6000 because it's the only member assigned.<br><br>but I need something like<br></span>[ntech]<br>
exten =&gt; 6010,1,Answer<br><span style="text-decoration: underline;">;exten = s,3,Agi(agi://172.20.3.124/noaction)</span><br>
exten =&gt; 6010,2,Queue(techsupport)<br>
exten =&gt; 6010,3,Hangup<br>
<br><span style="text-decoration: underline;">I commented the line because I'm not sure exactly how to declare it, basically I need to ask some questions to the caller, and when it finished then I want to send the call the queue, here is my problem<br>my application in c# has the following function<br>public override void Service(AGIRequest request, AGIChannel channel)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Asterisk.NET.util.Tools T = new Asterisk.NET.util.Tools();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.Channel.SetContext("ntech");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.Channel.SetExtension("6010");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.Channel.Answer();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.Channel.Answer();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.Channel.SetExtension("6010");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.SetContext("ntech");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.SetPriority(1);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.SetContext("ntech1");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.SetExtension("6000");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //T.SetPriority(100);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //System.Threading.Thread.Sleep(100000);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>I tried all combinations without sucess, I wanted just to call the script, and return properly to continue the call on the queue<br><br>Thanks in advance for any answer<br>Greetings<br>Enediel<br><br></span><br /><hr />Get news, entertainment and everything you care about at Live.com. <a href='http://www.live.com/getstarted.aspx ' target='_new'>Check it out!</a></body>
</html>