kaustuvak_b at bbsr.syscomes.com escribi?:> Hello, > > I am using Asterisk 1.4 version. > How to dial multiple numbers per second through asterisk manager???? > > Thanks and regards > >Hi, Use the AMI Originate Action with the Async option and set an unique ActionID to track the response for each one: http://www.voip-info.org/wiki/view/Asterisk+Manager+API+Action+Originate If you're writing an external application, using some open source libraries will make your work easier: http://phpagi.sourceforge.net/ http://asterisk-java.org/ Or look for a good one made on your favorite programming language. Regards, -- Ing. Miguel Molina Grupo de Tecnolog?a Millenium Phone Center
Through Asterisk AMI, you can not dial multiple number at the same time. If you are going to implement a concurrent call scenario, then AMI would not be a valid choice. Multiple calls can be implemented with callfile. Faheem --- On Wed, 10/14/09, kaustuvak_b at bbsr.syscomes.com <kaustuvak_b at bbsr.syscomes.com> wrote: From: kaustuvak_b at bbsr.syscomes.com <kaustuvak_b at bbsr.syscomes.com> Subject: [asterisk-users] multiple call To: asterisk-users at lists.digium.com Date: Wednesday, October 14, 2009, 11:44 PM Hello, I am using Asterisk 1.4 version. How to dial multiple numbers per second through asterisk manager???? Thanks and regards _______________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- AstriCon 2009 - October 13 - 15 Phoenix, Arizona Register Now: http://www.astricon.net asterisk-users mailing list To UNSUBSCRIBE or update options visit: ???http://lists.digium.com/mailman/listinfo/asterisk-users -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20091014/75357f1c/attachment.htm
Hello, I am using Asterisk 1.4 version. How to dial multiple numbers per second through asterisk manager???? Thanks and regards
Use an existing dialer like ViciDialer? l. 2009/10/14 <kaustuvak_b at bbsr.syscomes.com>> Hello, > > I am using Asterisk 1.4 version. > How to dial multiple numbers per second through asterisk manager???? > > Thanks and regards >-- Loway - home of QueueMetrics - http://queuemetrics.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20091015/0284c57b/attachment.htm
On 15/10/09 4:42 AM, Faheem wrote:> Through Asterisk AMI, you can not dial multiple number at the same time. > If you are going to implement a concurrent call scenario, then AMI would > not be a valid choice. Multiple calls can be implemented with callfile.Totally incorrect. We do hundreds of simultaneous calls at the same time using the Asterisk Manager. -- Cheers, Matt Riddell Director _______________________________________________ http://www.venturevoip.com/news.php (Daily Asterisk News) http://www.venturevoip.com/st.php (SmoothTorque Predictive Dialer) http://www.venturevoip.com/c3.php (ConduIT3 PABX Systems)
----- Original Message ----- From: "Matt Riddell" <lists at venturevoip.com> To: <asterisk-users at lists.digium.com> Sent: Thursday, October 15, 2009 09:50 Subject: Re: [asterisk-users] multiple call> On 15/10/09 4:42 AM, Faheem wrote: >> Through Asterisk AMI, you can not dial multiple number at the same time. >> If you are going to implement a concurrent call scenario, then AMI would >> not be a valid choice. Multiple calls can be implemented with callfile. > > Totally incorrect. > > We do hundreds of simultaneous calls at the same time using the Asterisk > Manager. > > -- > Cheers, > > Matt Riddell > Director > _______________________________________________ >I would agree with Mat. We had more problems with call files then with the AMI. The only issue I had with the AMI (1.4.X) is that after multiple connections our script would connect to the AMI but the calls would not go out. We used astmanproxy and that resolved the issue.