Displaying 20 results from an estimated 600 matches similar to: "Skill based routing"
2008 Mar 19
1
Call All
Does anyone know how to set up call all or paging for the snom IP handsets
with Asterisk 1.4 or AsteriskNOW.
Thanks
Rupert
Tel: +61 2 9037 4191
Mobile: +61 424 373 516
2007 Dec 12
4
TDM400 hangup issue in China
Afternoon,
I was hoping someone could point me in the right direction. I have an
asterisk PBX deployed in China using a TDM400P based card. The incoming
calls are being picked up correctly, but are not being hung up. I
suspect that this might be an issue with the signaling that has been
selected.
If anyone here has deployed asterisk in china using an analog card, it
would be a great help
2007 Nov 14
2
Nortel digital FXO channel bank? Exists?
We have a client with a Nortel PBX with digital phone sets. Due to T1
problems (old firmware), we are interested in trying a FXO channel bank.
Is there a channel bank (or equivalent) which emulates Meridian digital
phone sets? In order words, an FXO channel bank that's Meridian digital?
Thanks
MD
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 May 21
1
Skill-based routing
Hello,
does anybody know about an existing skill-based routing solution for
asterisk? I found only some theoretical documents on voip-info.org.
I would like to have finer control over who can get which call in which
order.
Example:
Several operators with several topics.
Each operator may have a given knowledge-base for given topic. Topics
may be weighted in question of complexity as well.
Some
2016 Jan 10
1
synonym expansion for boolean prefixes.
Olly Betts <olly at survex.com> writes:
> A better option for this is probably a FieldProcessor - you set one for
> a prefix and the it gets passed the value and returns a Query object
> for it. E.g. in lua (where you can just pass an anon function for the
> FieldProcessor - we ought to support C++11 lambdas for such things):
By the way, is there an online version of the
2007 Jun 22
0
some skill problem with Updater
there is some code like:
...
<select onchange="new Ajax.Updater(''person_area_places_box'', ''/person/
area_places_select'', {asynchronous:true, evalScripts:true,
onComplete:function(request){new
Effect.Shake(''person_area_places_box'')}, parameters:''id=''+value})"
name="person[area_id]"
2005 Jun 25
2
Listing knowledge of R as a skill on a resume...
Afternoon folks:
This question may be a touch off-topic, but I had to start
somewhere.
As I become more proficient with R I would like to play up
the point in the computer skills section of my resume. Can
anybody on the list provide an idea or two as to what might
be an appropriate way to do this? Is it a language or an
application? What's a proper description for it?
I leave to
2010 Oct 29
0
asterisk 1.6 and Firefox 4 Beta
Has anyone started using Firefox 4 beta versions? We started today and find
that many of the GUI's attached to Asterisk respond differently and in many
cases not at all? We have found that details cannot be saves and that the
screens become very unstable. While we appreciate this is a beta Firefox it
would appear they have deviated from their 3.x format with regards to
interfacing.
Rupert
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
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
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 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]#
2008 Oct 05
5
asterisk, phpagi and singleton
Hello,
I've this situation: 300+ simultaneous calls and dialplan like this:
exten => _X.,1,Answer()
exten => _X.,2,DEADAGI(check_status.php)
exten => _X.,3,Dial(SIP/other/${NUMBER})
exten => _X.,4,Hangup
exten => h,1,DEADAGI(cdr.php)
When project is running , I had a lot of defunct php scripts (I've exceed
mysql connection limits and so on, deadagi help a bit). The
2015 Dec 15
3
FastAGI not working
Hello everyone,
I have a problem with a FastAGI connection, could you help me fix this problem please?
Here is my log:
[2015-12-15 16:17:09] WARNING[23936][C-00000015]: res_agi.c:1658 handle_connection: Connecting to '10.171.54.149:9110' failed for url
2005 Feb 03
1
FastAgi Help
Dear List
after a lot googling and watching source example of FastAGI i cant find a
simple way to convert a very simple perl AGI script... perhaps im not a
developer..
Why i have need to use FastAGI?...Very load CPU usage on my box... with only
100 calls..
So i have two way res_perl or FastAGI on some other box..
I cant test res_perl becasue when i try to compile it i have this error:
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
2007 Nov 01
5
monster method (too hard for my skill level)
I need to write a method for calculating the fee for medical
procedures with respect to area. I have all the tables and data but
its hard to give that here. Can someone take a look at this ''stub''
method and help me out?
def calculate_fee
# strip out the first 3 numbers of the user entered zip code
# use those 3 numbers to identify row in [zipcodes table] (between
upper and
2005 Aug 18
4
Which AGI Development Software is fastest on Asterisk?
I'm looking to develop some custom AGI that will be MySQL intensive. It
appears Asterisk supports many different development environments. Which
would be best suited for Asterisk and MySQL?
Bart