Tagged Questions

Asterisk is a PBX software whose main aim is to route audio/video calls. It is released under a dual license: the GNU General Public License (GPL) and a commercial license.

learn more… | top users | synonyms

16
votes
13answers
2k views

Placement of the asterisk in Objective-C

I have just begun learning Objective-C, coming from a VB .Net and C# .Net background. I understand pointer usage, but in Objective-C examples I see the asterisk placed in several different places, ...
13
votes
11answers
2k views

What is the best way to get started using Asterisk?

I'm interested in learning more about Asterisk (open source PBX) so I thought I would try building a "hobby" system for my home. Just play around with getting a juiced up voicemail system going for ...
9
votes
1answer
722 views

ruby: what does the asterisk in “p *1..10” mean

the line p *1..10 does exactly the same thing as (1..10).each { |x| puts x } which gives you the following output: $ ruby -e "p *1..10" 1 2 3 4 5 6 7 8 9 10 it's a great shortcut when working ...
8
votes
3answers
762 views

ExtJS 4 - Mark a red asterisk on an required field

I have this problem where I need to add a red asterisk beside a fieldLabel when a field is marked as "required" (or allowBlank: false) In ExtJS3, we can have this hack easily by overriding ...
7
votes
3answers
536 views

foggy on asterisk in python

I'm using itertools.chain to "flatten" a list of lists in this fashion: uniqueCrossTabs = list(itertools.chain(*uniqueCrossTabs)) how is this different than saying: uniqueCrossTabs = ...
7
votes
3answers
343 views

Whats the best architecture for CDR integration to a Asterisk based Application

Iam developing a VOIP platform which would allow users to make 100s of calls concurrently using my service. Asterisk stores all call detail records in the CDR table. I would like to know where is ...
7
votes
1answer
213 views

Asterisk cross platform compilation

I am trying to compile asterisk from windows using netbeans c/c++ IDE. As i want to add some functionality into the existing code. when i am running the configure file i got the following errors ...
5
votes
5answers
4k views

Read/Write to linux Pipe using Java

My query is on what is the best way to read / write to a linux Pipe in Java? I already am using the java.io.RandomAccessFile like RandomAccessFile file = new RandomAccessFile("/dev/zap/16", "rw"); ...
4
votes
1answer
95 views

Watch active channels from remote machine into Asterisk

We would like to remotely monitor an Asterisk system for a conference call system managed from web frontend. We can get the terminated calls from the CDR table, and we know that it is possible to ...
4
votes
3answers
164 views

What does the syntax [*a..b] mean in Ruby?

NOTE: mischa's splat on GitHub has lots of cool interactive examples of * in action. By googling, I found that one way to iterate over a range of numbers in Ruby (your classic C-style for loop) for ...
4
votes
2answers
831 views

asterisk anti ex-girlfriend Dial plan?

I wrote simple dial plan in asterisk. This dial-plan target is to check caller-id of incoming call and for specific hangup :) ! but this dial-plan hangup all incoming call with diffrent caller-id. So ...
4
votes
3answers
199 views

Unit/integration testing Asterisk configuration

Unit and integration testing is usually performed as part of a development process, of course. I'm looking for ways to use this methodology in configuration of an existing system, in this case the ...
4
votes
7answers
9k views

setup an IVR with Asterisk

I need to setup a simple IVR system for a friend's company that will let the caller navigate through the menue by pressing phone keys (kind of like a bus schedule....."for today's schedule press '1', ...
3
votes
4answers
161 views

Sending and performing commands from node.js to bash

I'm developing a sort of Flash Operator Pannel for Asterisk but, with Node.js and Socket.io instead of depending of Flash. I've polished the node server and the front end BUT I don't know how could I ...
3
votes
3answers
193 views

Masking password in Java CLI application

I've made this little ATM application in Java (CLI) and in the beginning I want to have "Code: " and then the user should enter it, and in my Java application it should say something like String(or ...
3
votes
2answers
49 views

Issue in asterisk server

I tried to enter Date Of Birth as 11211971 through my phone, but IVR (Interactive Voice Response) has 11121197. please tell anybody what is the root cause for this issue It is my code exten => ...
3
votes
3answers
49 views

What phone server should I use to read data from MySQL

I have been task with the mission of creating a phone solution where clients call a number and using the phone keypad they enter a product ID and base on that ID they should hear the product ...
3
votes
1answer
97 views

Replacing NA's with asterisks (*)

I have a data set which I read from my a .csv file. After some editing work, I now need to write it as a .txt file with (i) all quotes removed (ii) every NA in the whole file to be replaced by an ...
3
votes
1answer
219 views

Hold Button On Red5Phone

I have configured Red5Phone on Red5 Server. I am able to connect to Asterisk Server its working fine. I have used Flex as a client. Red5 and Asterisk are on the same server. Now i want a implement ...
3
votes
1answer
1k views

How can I set environment variables in my Linux service for Asterisk even though it doesn't have a real user?

I have created a linux service that runs as a deamon (and gets started from /etc/init.d/X). I need to set some environment variables that can be accessed by the application. Here's the scenario. The ...
3
votes
1answer
294 views

What is the most up to date Python asterisk AGI framework for asterisk?

I have done some AGI development in the past with PERL and PHP, but my current project is using Python. I have found the frameworks listed here: http://www.voip-info.org/wiki/view/Asterisk+AGI , but ...
3
votes
6answers
583 views

Asterisk billing system with PHP

I am trying to develop billing system for asterisk but i dont know howto start.Is there any suggestion for this?I have looked at free billing systems for asterix but their systems are very complicated ...
3
votes
4answers
4k views

asterisk : Unable to connect to remote asterisk (does /var/run/asterisk.ctl exist?)

I am learning asterisk. After I have installed asterisk I have tried to connect with it using asterisk -rvvvvc. But it gave me an following error message. Unable to connect to remote asterisk (does ...
3
votes
5answers
1k views

Type Declaration - Pointer Asterisk Position

in C++, the following means "allocate memory for an int pointer": int* number; So, the asterisk is part of the variable type; without it, that would mean something else (that's why I usually don't ...
3
votes
1answer
861 views

How do I forward the current Asterisk call in AGI using Perl?

I have an asterisk-based PBX, and I have been able to successfully run an AGI script from the web control panel of the PBX. Because I am calling AGI from Perl (neither of which I know, yet)... ...
3
votes
2answers
959 views

How can I get the call duration of any call in a web application using asterisk?

I have done a Web site using php and which asterisk is used as a Voip system.Now the problem is I want to get the call duration of each call after 'HANG UP'.I googled alot and got an asterisk variable ...
3
votes
6answers
734 views

Fastest way to match telephony prefixes using asterisk PHP script

and thanks in advance for the help. Background - I am writing a PHP script that needs to figure out the destination the caller is trying to reach. Telephony prefixes are strings that identify a ...
2
votes
0answers
48 views

Asterisk: Get queue agent

Is there an easy way to capture the agent extension into an asterisk variable when a call is transfered to an agent from a queue? Edit: We are using dynamic agents. After the agent takes the call, he ...
2
votes
3answers
121 views

Python and Asterisk

Has anyone successfully used a Python API to connect to Asterisk AMI? Maybe Starpy or py-asterisk, or even FATS? If so can you please display examples or point to a link? There seems to be very ...
2
votes
2answers
76 views

Record and playback simultaneously - Asterisk

I am trying to build an application where I am required to record and playback simultaneously. The application needs to go live on an asterisk telephony server. My problem is: A user calls the ...
2
votes
1answer
86 views

Delete Asterisk call file before Maxretries is reached

I have created an Asterisk call file with Maxretries = 3 and RetryTime = 300. Occasionally I need to remove the call file after 2 retries. How would I stop Asterisk making the third call attempt?
2
votes
1answer
80 views

Playback in meetme (asterisk)

I would like to play an audio file to all members of a MeetMe conference, like a notification. Does anyone have any idea about how to do this?
2
votes
1answer
77 views

Simple 'Music On Hold' while ringing a group (FreePBX) [closed]

I'm playing around with my new trixbox install. I've been able to setup my trunks and inbound routes; everything works fine for now. Now i'd like to have the following behaviour : When I receive a ...
2
votes
2answers
202 views

Asterisk + Android, communication service

I would like to make a simple project. Having two Android phones, I would like to send messages and call between them using an Asterisk PBX. I guess that I should program a SIP application for Android ...
2
votes
1answer
186 views

What does an asterisk before a function name mean?

In the following lines of code, what does the asterisk in front of dup_func, free_func, and clear_free func, do? void *(*dup_func)(void *); void (*free_func)(void *); void (*clear_free_func)(void *); ...
2
votes
1answer
43 views

Confused about the use of one or more asterisks in Objective-C

I'm reading a book on Core Data and at some point the author has this validation method: - (BOOL)validateRadius:(id *)ioValue error:(NSError **)outError { NSLog(@"Validating radius using custom ...
2
votes
2answers
230 views

Tips for Asterisk Programming?

I'm quite a newbie in VoIP. Before handling this project, I'm familiar with structured & OOP programming like Java or C++. Now I have to code a quite complex IVR script (which allows users to call ...
2
votes
1answer
66 views

Why wont my script work for alerting upon image finding?

Alright basically i have the code at the bottom and it works perfectly if i give the full image url but im trying to get it to work if i only give part of it and use a * for the other part. var ...
2
votes
2answers
93 views

Can someone explain how this code snippet works, i know it finds the transpose of a list of lists but I am having a tough time finding how

def transposed(lists): if not lists: return [] return map(lambda *row: list(row), *lists)
2
votes
5answers
503 views

VoIp recording solutions (Asterisk or/and FreeSwitch)

currently we're looking for voip recording solution - it must record all incoming/outgoing/internal/conference calls within the company. later on we going to develop applications that let us ...
2
votes
1answer
241 views

PHPAGI / Cepstral / Asterisk - License Issue

I am writing an IVR script for Asterisk in PHPAGI and trying to use Cepstral for TTS. Though I have licensed the product, when I call $agi->swift(), before my text is "read" (during a call), the ...
2
votes
2answers
178 views

How to validate a Rummikub combination with Jokers

In the game of Rummikub, for those who don't know it, you have tiles in 4 colours and with 13 different numbers on them (so 4 x 13 = 52 unique tiles) which you must use to make groups. There are two ...
2
votes
2answers
363 views

Adding chat and VOIP calls functionality?

How can I create a chat-text/VOIP calls application using Android sdk? What are the available apis and sources?
2
votes
8answers
1k views

Programming Asterisk PBX using PHP?

Ok I installed asterisk, now I would like to know how do I program asterisk PBX using PHP? Does Asterisk have an API that I can work with? Please provide basic examples how I could perform the ...
2
votes
1answer
577 views

Javascript, string: test string for presence of sub-string that includes an asterisk (*)

I'm doing a pretty basic string matching test as follows: if(msList.indexOf(textChoice) != -1) This works well except that occasionally the sub-string I'm looking for (textChoice) ends with an ...
2
votes
0answers
536 views

Is there a tutorial or documentation for Asterisk.NET?

We are trying to create a .NET application that feeds data from an Asterisk server. Asterisk.NET seems to be a widely used .NET library for talking to the Asterisk manager interface, but I cannot ...
2
votes
2answers
473 views

Originate call using adhearsion

i have searched google, tried to read adhearsion docs and make sense of the examples. i understand parts of it but am not able to put it together. i can edit extensions.conf and do ...
2
votes
3answers
164 views

asterisk : add application

I want to know the way to add new asterisk applications and modules.For example I don't have the SetGlobalVar application in my asterisk machine.I want to add that.Is there any way. Thanks in ...
2
votes
3answers
363 views

Which is more appropriate for pbx events, TIdTCPServer or TIdTCPClient?

I am trying out some IP PBX systems, Asterisk, Freeswitch, and Yate,to register for events in the PBX, and I want to know which of these components is the better one. The component is supposed to ...
2
votes
2answers
503 views

Caching plaintext passwords in memory of WCF service

This probably sounds like a terrible idea at first glance, but here is my scenario: I have a Windows service that exposes several WCF endpoints using Username authentication. The custom ...

1 2 3 4 5 7