Displaying 20 results from an estimated 10000 matches similar to: "Which AGI Development Software is fastest on Asterisk?"
2007 Jan 31
2
Which Java FastAGI implementation has the most "market share"?
When I was looking for a Java FastAGI interface for Asterisk I came
across asterisk-java first and didn't realize there was more than one
out there. It seems to work fine and I've got my first project working
with it, but I was wondering which Java FastAGI implementation is the
most popular and how they compare against each other.
So I'm aware of:
asterisk-java
JastAGI
2005 Aug 18
0
Which AGI Development Software is fastest onAsterisk?
What can you develop in? What are you comfortable? I use PHP for
testing
then convert into C shared objects.
..o-------------------------------------------------------o.
Brian Fertig
NOC/Network Engineer
Planet Telecom, Inc.
Tampa, FL Office
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Asterisk
Sent:
2005 Mar 07
2
Question about AGI vs. FastAGI vs. straight C/DB development
Folks,
I want to build a custom IVR for my setup. I've got it
working (well, the bells and whistles are not there
yet, but the basic stuff works) using AGI, but I'm
worried about how well this will scale.
I've seen references to FastAGI, and presumably this
will be more efficient.
Question, though: how well do either of these (AGI or
FastAGI) scale if my system is handling a large
2005 Jun 21
2
Re: New JAVA application server for Asterisk - OrderlyCalls
Hello Adam,
Thank you so much for taking the time to write to me. I can
understand your concerns; let me see if I can address them.
>Matt,
>
>Sourceforge.net is exclusively for hosting software whose licensing
>terms meet the OSI's definition of Open Source:
>
> http://opensource.org/docs/definition.php
>
>Your licensing terms include the following, which is
2006 Apr 25
2
FastAGI Connection Failure and Hangup
Does anyone know how to make fastagi continue to the next priority if it can not connect to the remote AGI Server? Right now I am just getting Hangup and cant find anything on the net about this.
Thanks,
Steve
2007 Jun 07
4
agi with java?
Hi all -
Searching for java agi in the mailing list archives turns up ancient posts.
Anyone else using java for their AGI? How well is it working &
what are you using?
My script is pretty simple, and I could write it with perl easy
enough, but I just would feel better if I can keep most programming
code for our system in java.
Thank you-
Matt
2006 Feb 14
5
Multiple AGI Issues
I've got several issues with AGI/FastAGI
1. When an AGI script sends a command to Asterisk via stdin, why does Asterisk block and not return a result until the command is complete? Specifically, the dial command. If I send a Dial command to Asterisk, I don't get a return result until AFTER the call is HUNG UP. Not when it's ringing, not when the call is connected, but when it's
2013 Jan 29
1
Fast AGI library/support for C & C++
Dear All,
Is there anyone who is having FastAGI support for C & C++?
We do have FastAGI working for the JAVA and rest of the language / script.
But I am unable to find FastAGI for C/C++.
Please let us know how to write FastAGI using C/C++.
Thanks in Advance,
Kashyap
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2019 Apr 19
2
Forking AGI or GoSub
In PHP something like:
$pid = pcntl_fork();
if ($pid != 0) {
// we are the parent
// do parent stuff
exit;
}
// we are the child, detatch from terminal
$sid = posix_setsid();
if ($sid < 0) {
die;
}
// do child stuff
On 04/19/2019 02:00 PM, Mark Wiater wrote:
> On 4/19/2019 1:49 PM, Dovid Bender wrote:
>> Mark,
>>
>> I am using PHP agi and when forking
2010 Apr 16
7
AGI, FASTAGI or Windows Voice Server
Hello!
I have developed an IVR using AGI and so far it works great. I'm using Cepstral voices, but now want to use the voices from AT & T that are on a Windows server to be heard best. With cepstral what I do is to generate audio files from shipping and this text I reproduce this method it has worked very well.
Now, try to do the same by creating the audio file in windows with the
2009 Jul 23
1
odd behaviour with AGI and dial agent
Hi,
I have come across an odd problem.
Basically I am transferring a call to an agent. The agent is logged in
and set as paused.
In order to find which agent to call I am using a fastagi script to just
set a variable.
When it falls through the agi script and dials the agent (using the
variable) it doesn't connect the call properly to the agent. I get the
beep but no audio (along with
2018 Sep 14
3
AGI timeout option
Hello list,
Hope you all doing well!
Recently, I had an issue with a FastAGI PHP script, which under some
specific situation would run into an infinity loop, consuming all CPU
resources. This also was preventing Asterisk to terminated the call
properly because it was waiting for the AGI to return... The application
uses AGIspeedy to process the AGI calls, not sure if this can be affecting
this
2017 Jun 30
3
Simplest way of executing a non-blocking (async) python AGI script?
I use a python AGI which pulls some info from a web service, which should
take half a second.
Sometimes, it takes 5-10 seconds which blocks the dialplan execution, but
the dialplan should continue immediately as it's not dependent on the
AGI/web service data.
What's the simplest, easiest quickest least-code way of firing off an AGI
with some variable, and then returning to the dialplan?
2006 Feb 13
2
Terminating AGI Scripts
I've noticed that Asterisk AGI scripts don't terminate when a call is answered. Does anyone know how to do this? I would think that this would be a very big problem, if the scripts stayed in memory, doing nothing, until the call terminates.
Not only do you have to have a process for routing each call, but all the previous calls, that are still in progress, also have scripts running. It
2006 Jan 25
3
Fast AGI Options. Eeeek!
Some questions regarding calling Fast AGI from the dial plan.
Considering that the server side of the Fast AGI has to be able to a) use threading and b) connect to MySQL, this causes some serious limitations. I'm not a C programmer, so development options are either perl or python.
It appears that the perl DBI isn't thread safe, so that rules out Perl. Python's database interfaces
2005 Aug 04
3
SIPPeersAction class file not found in the Asterisk-java.jar file
Hello Everybody,
I am working on Fastagi and I am making use of
Asterisk-java. But I don't find the class file for SIPPeersAction. Hence I
am getting the error message when compiling my java code.
----------------------------------------------------------------------------
------------------------------------------------
[root@localhost asterisk-java-0.1]#
2011 Nov 21
2
Continue AGI after Dial() following caller hang up?
Hello,
We would like to continue a Perl AGI after a Dial() it has done completes
following caller hangup. We would like to do this in the same AGI, and not
using a new AGI from the 'h' extension. It works fine when the called party
hangs up and the 'g' option is used, but not for caller hangup.
Is this possible?
If not a confirmation that this is the case would be very helpful.
2007 Mar 16
2
Cepstral voices
what's the easiest way of using cepstral voices with asterisk ? On their
website, in the ssml page
(http://www.cepstral.com/cgi-bin/support?page=ssml), they say
"Asterisk PBX
SSML can be used with Cepstral voices in Asterisk by simply embedding
the markup into the input text."
what input text ? To what application ?
Thanks !
Julian
2018 Sep 14
2
AGI timeout option
I don't know AGIspeedy, but I have some PHP scripts where I set a
connect timeout using streams.
Example using https, but should be easily adaptable to non-s http.:
$pbxsh_bin = @file_get_contents("https://blah.blah.blah", FALSE,
@stream_context_create(array('https' => array('timeout' => 5,
"verify_peer"=>false,
2007 May 17
4
FastAGI hangs up channel if server is not available
Hi all,
Running 1.2.14
When I call a FastAGI script such as this script for an incoming call:
[calldirect]
exten=>s,1,Answer()
exten=>s,2,AGI(agi://192.168.1.175/calldirect?check&${CALLERID(num)})
exten=>s,3,Goto(check_time,s,1)
and the FastAGI server is not running (Asterisk gets "connection
refused" TCP error), Asterisk just terminates the call like so:
May 17