similar to: How to send variables through AMI originate and read those variables in context?

Displaying 8 results from an estimated 8 matches similar to: "How to send variables through AMI originate and read those variables in context?"

2007 Aug 07
2
array
Hello, I have some files generated from microarray experiments. I used scan() to read the files, and assigned each file to a unique name with many rows and columns. Now I want to create a array (ArrayA) with unique names, and I can use ArrayA[1,2][[6]] to refer the data in each file. Is there any packages available for array of array? Thanks! [[alternative HTML version deleted]]
2013 Sep 25
5
Asterisk TON number
Hi Greeting to all you out there. I am new at asterisk, I have been working with PLMN platforms telecommunication for 5 years with NSN and Huawei. We have recently built an asterisk PBX with Trixbox and connected it to our MSS using Digium E1 cards(ISDN). Everything went smoothly as there are tons of information out there, except for the TON number. If you have worked in Telecommunication you
2009 Jul 14
1
Polycom Spectralink 8002 WiFi Phones
Has anyone played with this phone? i cant seem to get it to work properly, i manged to get it registered and can make calls from it, but i havent been able to make it receive calls. Weird thing its that if you make a call from it and while you are on that call you dial its number does calls go thru in second line, but as soon as you terminate both calls it wont recieve any calls again. Heres
2008 Oct 20
1
Zaptel FXO offhook when connected to PSTN
I installed Trixbox and a TDM400P with 2 FXO and 2 FXS ports and am having an annoying issue with the FXO ports. As soon as I plug either one into the phone line it's as though the line is disconnected i.e. get disconnected tone when trying to dial out, line is busy when dialling in. The CLI shows the following: trixbox1*CLI> zap show channel 4 Channel: 4 File Descriptor: 18 Span: 11*
2010 Mar 13
2
Asterisk on MPLS VPN
Hi I;ve trixbox installed with 2 NICs. One NIC carries the MPLS-VPN traffic (only a 1 MB link without internet for carrying voice to another site) while the other NIC has a connection with public IP for internet services on that machine. the first NIC (eth0) has IP of 172.16.0.1 and is connected to router with WAN IP: 10.18.6.254 , the second IP is 203.234.82.98 (eth1). i want to have the
2009 Sep 16
4
G729
I have problemin g729 codec compatibility,I get the g729 module from http://asterisk.hosting.lv/ and I have Asterisk 1.4.22-3 RPM What g729 module should I download ? I already downloaded codec_g723-ast14-icc-glibc-pentium4.so [trixbox1.localdomain asterisk]# cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 15 model : 4 model
2013 Aug 26
4
Puppet ssl errors " SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed"
Hi all, I am trying to setup puppet master and puppetdb on same node using puppetdb module. When I try to run puppet agent -t, I see following erorr notice: Unable to connect to puppetdb server (ip-10-172-161-25.us-west-1.compute.internal:8081): SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed notice: Failed to connect to puppetdb; sleeping 2
2013 Mar 20
2
Rspec + Devise + BaseController
Hello there, I''m creating a base controller for the admin section of a project. All controllers whitin the admin section will inherit from it. ##################################################### #app/controllers/admins/base_controller.rb class Admins::BaseController < ApplicationController layout "admin_cms" before_filter :authenticate_admin! end