[asterisk-users] Asterisk API Manager

2007-11-27 Thread Anthony Chapellier
Hi, Does Asterisk manager allow multiple clients to connect to an Asterisk instance using the same user account ? Thanks, ___ --Bandwidth and Colocation Provided by http://www.api-digital.com-- asterisk-users mailing list To UNSUBSCRIBE or update opt

Re: [asterisk-users] Asterisk API Manager

2007-11-27 Thread Moises Silva
Yes, but you should use astmanproxy instead and don't bother Asterisk with multiple manager connections. On Nov 27, 2007 8:24 AM, Anthony Chapellier <[EMAIL PROTECTED]> wrote: > Hi, > > Does Asterisk manager allow multiple clients to connect to an Asterisk > instance using the same user account ?

Re: [asterisk-users] Asterisk API Manager

2007-11-27 Thread Anthony Chapellier
However I wanted to get periodic infos about queued users (position in queue) only. So I thought I could make a program sending periodic requests to asterisk manager. Is it really bad to bother asterisk manager with frequently and periodic requests sent by mutiple users (we could say maybe 100

Re: [asterisk-users] Asterisk API Manager

2007-11-27 Thread Mojo with Horan & Company, LLC
So you'd be making 100 connections/minute, which is pretty relentless. That's like five connections, five requests sent, five responses received, and five disconnects, /every/ three seconds. And the likelihood of all 100 users to be spread out evenly over a minute doesn't seem very high. I th

Re: [asterisk-users] Asterisk API Manager

2007-11-28 Thread Mojo with Horan & Company, LLC
If each client connected only once, subsequently made a request every minute, and then disconnected only when finished, the load might be more reasonable. It can be a little harder to write that kind of client though :) Mojo Mojo with Horan & Company, LLC wrote: > So you'd be making 100 conne

Re: [asterisk-users] Asterisk API Manager

2007-11-28 Thread Scott Wolfe
Users Mailing List - Non-Commercial Discussion" Sent: Wednesday, November 28, 2007 11:29 AM Subject: Re: [asterisk-users] Asterisk API Manager If each client connected only once, subsequently made a request every minute, and then disconnected only when finished, the load might be more reasonable.

Re: [asterisk-users] Asterisk API Manager

2007-11-28 Thread Steve Edwards
On Wed, 28 Nov 2007, Mojo with Horan & Company, LLC wrote: > If each client connected only once, subsequently made a request every > minute, and then disconnected only when finished, the load might be more > reasonable. It can be a little harder to write that kind of client > though :) >> >> Anth

Re: [asterisk-users] Asterisk API Manager

2007-11-29 Thread Anthony Chapellier
ommercial Discussion" > > Sent: Wednesday, November 28, 2007 11:29 AM > Subject: Re: [asterisk-users] Asterisk API Manager > > > If each client connected only once, subsequently made a request every > minute, and then disconnected only when finished, the load migh