Re: [asterisk-users] multiple call

2009-10-16 Thread Dovid Bender

- Original Message - 
From: Matt Riddell li...@venturevoip.com
To: asterisk-users@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. 


___
-- 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


Re: [asterisk-users] multiple call

2009-10-15 Thread Lenz Emilitri
Use an existing dialer like ViciDialer?
l.


2009/10/14 kaustuva...@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
___
-- 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

Re: [asterisk-users] multiple call

2009-10-15 Thread Matt Riddell
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)

___
-- 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


[asterisk-users] multiple call

2009-10-14 Thread kaustuvak_b
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


Re: [asterisk-users] multiple call

2009-10-14 Thread Miguel Molina
kaustuva...@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


___
-- 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


Re: [asterisk-users] multiple call

2009-10-14 Thread Danny Nicholas
You might be able to do multiple calls using originate to a context instead
of an application.  Can't really try b/c my test box only has one line.

 

  _  

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Faheem
Sent: Wednesday, October 14, 2009 10:42 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] multiple call

 


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, kaustuva...@bbsr.syscomes.com
kaustuva...@bbsr.syscomes.com wrote:


From: kaustuva...@bbsr.syscomes.com kaustuva...@bbsr.syscomes.com
Subject: [asterisk-users] multiple call
To: asterisk-users@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

 

___
-- 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

Re: [asterisk-users] multiple call

2009-10-14 Thread Faheem
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, kaustuva...@bbsr.syscomes.com 
kaustuva...@bbsr.syscomes.com wrote:

From: kaustuva...@bbsr.syscomes.com kaustuva...@bbsr.syscomes.com
Subject: [asterisk-users] multiple call
To: asterisk-users@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



  ___
-- 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

Re: [asterisk-users] multiple call dialing and playback an message

2009-08-20 Thread Carlos Rojas
Hello,

You need configure a queue, with agents for that.


Regards.



On Thu, Aug 20, 2009 at 11:22 AM, kaustuva...@bbsr.syscomes.com wrote:

 I have tried a lot like as
 exten = 123,1,Dial(SIP/114SIP/113SIP/115)

 and all the channels are dialing and if i answered any 3 of one, all the
 channels except which one i answered are hung up..

 I need all 3 channels are ringing and playback a message to any one or
 more.
 So how to do it???

 Please, help me as i am new asterisk user

 Thanks in Advance..


 ___
 -- 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

___
-- 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

[asterisk-users] multiple call dialing and playback an message

2009-08-19 Thread kaustuvak_b
I have tried a lot like as
exten = 123,1,Dial(SIP/114SIP/113SIP/115)

and all the channels are dialing and if i answered any 3 of one, all the
channels except which one i answered are hung up..

I need all 3 channels are ringing and playback a message to any one or more.
So how to do it???

Please, help me as i am new asterisk user

Thanks in Advance..


___
-- 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


[Asterisk-Users] Multiple call groups

2006-02-07 Thread Mike Hammett



As evident in the SuperDial script and others based 
upon groups, you can place a call into a group, which can have a limit on the 
number of concurrent calls. Can a call belong to multiple groups? 
IE: I have only a limited number of channels to upstream X. 
Downstream Y is only paying me for a limited number of channels.


Mike HammettIntelligent Computing 
Solutionshttp://www.ics-il.com


___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users