Re: [asterisk-users] Asterisk API

2015-03-08 Thread Joshua Colp

Markus Weiler wrote:

Hi all,


Kia ora,


currently we're looking to program a new asterisk application. Years ago
we used AMI and Asterisk Java.
When we did this we pretty soon encountered performance issues when
using a lot of channels.
We want to place calls, bridge channels, disconnect channels, monitor
them, hangup.
What's the status with Asterisk REST API?
Any experiences on performance,stability,documentation, caveats? Any
toolkits for a fast start, Frameworks in any language? Hints? Best
practices?


While bugs have crept up they haven't really been in the performance or 
stability area. It's mostly been features and making it a better 
experience for the users of ARI. Documentation wise the wiki[1] has a 
lot of great information including some example usage and a list of 
libraries. There's also a new asterisk-app-dev mailing list which is 
focused on applications built upon Asterisk.


Cheers,

[1] https://wiki.asterisk.org/wiki/pages/viewpage.action?pageId=29395573

--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

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


Re: [asterisk-users] Asterisk API

2015-03-08 Thread Michelle Dupuis
As you've probably discovered, most of the API toolkits are half baked and 
poorly maintained.  The Java interface is not great for performance and is 
suffering from the above too.

>From our experience (including customer specific and commercial apps)  using 
>the AMI directly is the best way to go.  Next you also have to develop in a 
>language suitable to the throughput needs of whatever you are building.  If 
>you need performance, I'd recommend developing in C++ and building your own 
>AMI interface to suit your needs.  (If you use boost or Qt then it will speed 
>your development time).

This topic might step on troll territory (which  is best) so feel free to 
email me off list if you want more info.
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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


[asterisk-users] Asterisk API

2015-03-08 Thread Markus Weiler

Hi all,

currently we're looking to program a new asterisk application. Years ago 
we used AMI and Asterisk Java.
When we did this we pretty soon encountered performance issues when 
using a lot of channels.
We want to place calls, bridge channels, disconnect channels, monitor 
them, hangup.

What's the status with Asterisk REST API?
Any experiences on performance,stability,documentation, caveats? Any 
toolkits for a fast start, Frameworks in any language? Hints? Best 
practices?


Thanks for any insights!

Markus


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

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


Re: [asterisk-users] Asterisk API

2014-01-13 Thread Jacob.E.Miles
Yes, this would most likely be a better solution (REST API is in
Asterisk 12), just be careful about putting your dialplan in a Real Time
Database.  You sometimes have to do things a little different if your
dialplan is in the RTDB.  As well you need to make sure security is
locked down when using this approach, but security is needed for all
approaches.

 

Jacob

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of James
Wystead
Sent: Monday, January 13, 2014 7:24 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Asterisk API

 

Good Day, Ishfaq;

 

This may be a much better idea than the REST API. 

Correct me if I'm wrong, but the concept is this:

 

You write to the database, and this gives the same result as perhaps
modifying the dialplan, sip, voicemail, etc *without* having to
physically modify the extensions.conf, sip.conf, voicemail.conf?

 

Am I on the right track?

 

Thanks! 

 

On Mon, Jan 13, 2014 at 4:16 AM, Ishfaq Malik 
wrote:

 

On 10 January 2014 17:12, James Wystead  wrote:

Hello Folks;

 

I have an Asterisk server 

Asterisk 11.7.0 built by root @xxx on a x86_64 running Linux on
2013-12-27 18:47:44 UTC

 

No FreePBX, no AsteriskNOW, no Elastix. Just Asterisk.

 

Is there an API out there that anyone knows of that I can pass commands,
etc to Asterisk? Creating Extensions, adding voicemail users, setting up
voicemail, etc?

 

I'm kind of clueless. Is there something available?

 

Thanks - Glen

 

 

You could use asterisk realtime architecture and use your favourite
database to hold peer/voicemail/dialplan configuration.

 

https://wiki.asterisk.org/wiki/display/AST/Realtime+Database+Configurati
on 





 

-- 

Ishfaq Malik 
Department: VOIP Support
Company: Packnet Limited
t: +44 (0)845 004 4994  
f: +44 (0)161 660 9825  
e: i...@pack-net.co.uk
w: http://www.pack-net.co.uk
 
Registered Address: PACKNET LIMITED, Duplex 2, Ducie House
37 Ducie Street 
Manchester, M1 2JW
COMPANY REG NO. 04920552


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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 --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] Asterisk API

2014-01-13 Thread James Wystead
Good Day, Ishfaq;

This may be a much better idea than the REST API.
Correct me if I'm wrong, but the concept is this:

You write to the database, and this gives the same result as perhaps
modifying the dialplan, sip, voicemail, etc *without* having to physically
modify the extensions.conf, sip.conf, voicemail.conf?

Am I on the right track?

Thanks!


On Mon, Jan 13, 2014 at 4:16 AM, Ishfaq Malik  wrote:

>
> On 10 January 2014 17:12, James Wystead  wrote:
>
>> Hello Folks;
>>
>> I have an Asterisk server
>> Asterisk 11.7.0 built by root @xxx on a x86_64 running Linux on
>> 2013-12-27 18:47:44 UTC
>>
>> No FreePBX, no AsteriskNOW, no Elastix. Just Asterisk.
>>
>> Is there an API out there that anyone knows of that I can pass commands,
>> etc to Asterisk? Creating Extensions, adding voicemail users, setting up
>> voicemail, etc?
>>
>> I'm kind of clueless. Is there something available?
>>
>> Thanks - Glen
>>
>>
>>
> You could use asterisk realtime architecture and use your favourite
> database to hold peer/voicemail/dialplan configuration.
>
> https://wiki.asterisk.org/wiki/display/AST/Realtime+Database+Configuration
>
>
>
>
> --
>
> Ishfaq Malik
> Department: VOIP Support
> Company: Packnet Limited
> t: +44 (0)845 004 4994
> f: +44 (0)161 660 9825
> e: i...@pack-net.co.uk
> w: http://www.pack-net.co.uk
>
> Registered Address: PACKNET LIMITED, Duplex 2, Ducie House
> 37 Ducie Street
> Manchester, M1 2JW
> COMPANY REG NO. 04920552
>
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> New to Asterisk? Join us for a live introductory webinar every Thurs:
>http://www.asterisk.org/hello
>
> 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 --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] Asterisk API

2014-01-13 Thread Ishfaq Malik
On 10 January 2014 17:12, James Wystead  wrote:

> Hello Folks;
>
> I have an Asterisk server
> Asterisk 11.7.0 built by root @xxx on a x86_64 running Linux on
> 2013-12-27 18:47:44 UTC
>
> No FreePBX, no AsteriskNOW, no Elastix. Just Asterisk.
>
> Is there an API out there that anyone knows of that I can pass commands,
> etc to Asterisk? Creating Extensions, adding voicemail users, setting up
> voicemail, etc?
>
> I'm kind of clueless. Is there something available?
>
> Thanks - Glen
>
>
>
You could use asterisk realtime architecture and use your favourite
database to hold peer/voicemail/dialplan configuration.

https://wiki.asterisk.org/wiki/display/AST/Realtime+Database+Configuration



-- 

Ishfaq Malik
Department: VOIP Support
Company: Packnet Limited
t: +44 (0)845 004 4994
f: +44 (0)161 660 9825
e: i...@pack-net.co.uk
w: http://www.pack-net.co.uk

Registered Address: PACKNET LIMITED, Duplex 2, Ducie House
37 Ducie Street
Manchester, M1 2JW
COMPANY REG NO. 04920552
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] Asterisk API

2014-01-10 Thread Todd R .
Search google for "Asterisk Manager Interface".
For the most part, if you have raw Asterisk installed then that's what you get 
and have to build what you want on top of it or hire a developer to do it.
Date: Fri, 10 Jan 2014 12:12:47 -0500
From: szilvertho...@gmail.com
To: asterisk-users@lists.digium.com
Subject: [asterisk-users] Asterisk API

Hello Folks;
I have an Asterisk server Asterisk 11.7.0 built by root @xxx on a 
x86_64 running Linux on 2013-12-27 18:47:44 UTC

No FreePBX, no AsteriskNOW, no Elastix. Just Asterisk.

Is there an API out there that anyone knows of that I can pass commands, etc to 
Asterisk? Creating Extensions, adding voicemail users, setting up voicemail, 
etc?
I'm kind of clueless. Is there something available?

Thanks - Glen

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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 --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

[asterisk-users] Asterisk API

2014-01-10 Thread James Wystead
Hello Folks;

I have an Asterisk server
Asterisk 11.7.0 built by root @xxx on a x86_64 running Linux on
2013-12-27 18:47:44 UTC

No FreePBX, no AsteriskNOW, no Elastix. Just Asterisk.

Is there an API out there that anyone knows of that I can pass commands,
etc to Asterisk? Creating Extensions, adding voicemail users, setting up
voicemail, etc?

I'm kind of clueless. Is there something available?

Thanks - Glen
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

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

Re: [asterisk-users] Asterisk API Manager

2007-11-29 Thread Anthony Chapellier
It could be a good idea. Right now, I'm trying to verify it's possible 
to identify a caller and his postion in queue with his URI after having 
got the result from the command sent to Asterisk Manager.

Scott Wolfe a écrit :
> Write a application  to log the information to a DB, then have all other 
> clients connect to the database for the status. Unless I am missing 
> something.
>
> -Scott
>
> - Original Message - 
> From: "Mojo with Horan & Company, LLC" <[EMAIL PROTECTED]>
> To: "Asterisk 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.  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 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 think your box would be pretty busy
>> with that.
>>
>> Astmanproxy would be indicated.
>>
>> Moj
>>
>>
>> Anthony Chapellier wrote:
>>
>> 
>>> 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 users with a request every minute) ?
>>>
>>> Moises Silva a écrit :
>>>
>>>
>>>   
>>>> 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 ?
>>>>>
>>>>> Thanks,
>>>>>
>>>>> ___
>>>>> --Bandwidth and Colocation Provided by http://www.api-digital.com--
>>>>>
>>>>> 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--
>>>
>>> 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--
>>
>> 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--
>
> 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--
>
> 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--

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


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 :)
>>
>> Anthony Chapellier wrote:
>>
>>> 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 users with a request every minute) ?

How about a single daemon that collects the information from Asterisk and 
stuffs it into a shared memory segment. The cost of each client attaching 
(shmat()) to the segment would be trivial.

Thanks in advance,

Steve Edwards  [EMAIL PROTECTED]  Voice: +1-760-468-3867 PST
Newline Fax: +1-760-731-3000

___
--Bandwidth and Colocation Provided by http://www.api-digital.com--

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


Re: [asterisk-users] Asterisk API Manager

2007-11-28 Thread Scott Wolfe
Write a application  to log the information to a DB, then have all other 
clients connect to the database for the status. Unless I am missing 
something.

-Scott

- Original Message - 
From: "Mojo with Horan & Company, LLC" <[EMAIL PROTECTED]>
To: "Asterisk 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.  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 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 think your box would be pretty busy
> with that.
>
> Astmanproxy would be indicated.
>
> Moj
>
>
> Anthony Chapellier wrote:
>
>> 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 users with a request every minute) ?
>>
>> Moises Silva a écrit :
>>
>>
>>> 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 ?
>>>>
>>>> Thanks,
>>>>
>>>> ___
>>>> --Bandwidth and Colocation Provided by http://www.api-digital.com--
>>>>
>>>> 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--
>>
>> 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--
>
> 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--

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

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


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 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 think your box would be pretty busy 
> with that.
>
> Astmanproxy would be indicated.
>
> Moj
>
>
> Anthony Chapellier wrote:
>   
>> 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 users with a request every minute) ?
>>
>> Moises Silva a écrit :
>>   
>> 
>>> 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 ?

 Thanks,

 ___
 --Bandwidth and Colocation Provided by http://www.api-digital.com--

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

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


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 think your box would be pretty busy 
with that.

Astmanproxy would be indicated.

Moj


Anthony Chapellier wrote:
> 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 users with a request every minute) ?
>
> Moises Silva a écrit :
>   
>> 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 ?
>>>
>>> Thanks,
>>>
>>> ___
>>> --Bandwidth and Colocation Provided by http://www.api-digital.com--
>>>
>>> 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--
>
> 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--

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


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 users with a request every minute) ?

Moises Silva a écrit :
> 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 ?
>>
>> Thanks,
>>
>> ___
>> --Bandwidth and Colocation Provided by http://www.api-digital.com--
>>
>> 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--

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


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 ?
>
> Thanks,
>
> ___
> --Bandwidth and Colocation Provided by http://www.api-digital.com--
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>



-- 
"Within C++, there is a much smaller and cleaner language struggling
to get out."

___
--Bandwidth and Colocation Provided by http://www.api-digital.com--

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


[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 options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] asterisk-api

2005-06-21 Thread gale81
Hi
I try to create a sip client with asterisk-api package,
I've a question:
 I can create a channel sip that generate sip signaling with Class Channel
or with another
class ?
Thanks Ale

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


Re: [Asterisk-Users] Asterisk API Docs

2004-11-16 Thread Matthew Boehm
Good luck. Best/easiest thing to do is start reading every *.c file. Thats
what I did. You can also make progdocs but I got more info by just reading
code.

Matthew
- Original Message - 
From: "Michael B. Murdock" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, November 16, 2004 10:41 AM
Subject: [Asterisk-Users] Asterisk API Docs


Can someone point me to url for the * C api (not CAPI) reference. I am
looking for the docs for the "ast_" library.

-- Mike







> ___
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users

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


RE: [Asterisk-Users] Asterisk API Docs

2004-11-16 Thread Brian West
Have doxygen installed and "make progdocs"

bkw

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:asterisk-users-
> [EMAIL PROTECTED] On Behalf Of Michael B. Murdock
> Sent: Tuesday, November 16, 2004 10:42 AM
> To: [EMAIL PROTECTED]
> Subject: [Asterisk-Users] Asterisk API Docs
> 
> Can someone point me to url for the * C api (not CAPI) reference. I am
> looking for the docs for the "ast_" library.
> 
> -- Mike
> 

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


[Asterisk-Users] Asterisk API Docs

2004-11-16 Thread Michael B. Murdock



Can someone point me to url for the * C api (not 
CAPI) reference. I am looking for the docs for the "ast_" library.
 
-- Mike
 
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users