similar to: AMI not responding correctly

Displaying 20 results from an estimated 3000 matches similar to: "AMI not responding correctly"

2011 Feb 23
4
AMI FullyBooted issue
Hi We're still testing out asterisk 1.8 (using 1.8.2.2 from rpm package) before putting it into production and I'm observing an odd issue when using the AMI Every request I send to the AMI just results in a FullyBooted response rather than the expected response. Here are some examples from my logs -- Call started: 22/02/2011 11:34:03 -- action: command command: core show channels
2023 Aug 08
1
Subscribing to events on AMI login
I'm looking at an old app I wrote that upon AMI login would subscribe to events as follows: Action: Login ActionID: myid Username: myun Secret: mypw Events: call, system, security I noticed this old code isn't working, and I *think* that the events parameter of login has been deprecated; I don't see it referenced in:
2023 Aug 08
1
Subscribing to events on AMI login
On Tue, Aug 8, 2023 at 12:44 PM TTT <lists at telium.io> wrote: > I'm looking at an old app I wrote that upon AMI login would subscribe to > events as follows: > > > > Action: Login > > ActionID: myid > > Username: myun > > Secret: mypw > > Events: call, system, security > > > > I noticed this old code isn't working, and I
2018 Mar 26
2
h264 recording
Hi, I'm using the Record dialplan Application in an Context. My goal is to get a single screenshot of the h264 media stream per call. same => n,Record(/tmp/test.wav,0,10,qk) I nicely get a File test.h264. Is there a way to Playback this h264 video file on my computer or convert it somehow? VLC can't take it somehow. Regards, Benjamin -------------- next part -------------- An HTML
2007 Oct 24
1
AMI ActionID.... Doesn't work
Is it well known that setting the ActionID when connecting to AMI has absolutely no effect? Is this fixed in Asterisk 1.4? If you add an ActionID to your Originate command for example, it looks like the only events that come back with an ActionID associated are the initial response, OriginateSuccess and OriginateFailure. That's it. No other events have an ActionID associated. This pretty much
2008 Oct 28
1
AMI - Status Event.
Hello All, I'am a new Asterisk user, and i have the following question. The following is the Status of all open channels from my Asterisk system, which was received through the Asterisk Manager Interface ((AMI)). ==================================================================== action: Status actionid: 65066874_3# Response: Success ActionID: 65066874_3# Message: Channel status will
2017 May 08
8
Dial an extension to modify dialplan
Hello I have the following scenario: [mynicecontext] exten => 2000,1,Dial(SIP/deviceA&SIP/deviceB&SIP/deviceC) As expected, by dialing 2000, all three devices will ring. And that's fine. However, there are situations where I only want "deviceA" and "deviceB" to ring. I would like to have an extension to dial in order to modify the dialplan. Here is what I
2008 Dec 05
2
AMI interface problem
I installed version 1.6.0.3-rc1 and my AMI application stopped working. I reinstalled 1.6.0.1 and it worked again. I reinstalled 1.6.0.3-rc1 and it stopped. Looks like a problem in the software to me. Following the same steps using the same code for the AMI and conf files for * I get bad behavior in 1.6.0.3-rc1 and good behavior in 1.6.0.1. I have this action: Action: Originate Channel:
2023 Jul 02
1
Get channel variables via ARI/AMI
>> You use the AMI action Getvar[1] which allows channel variables and dialplan functions. >> [1] https://wiki.asterisk.org/wiki/display/AST/Asterisk+20+ManagerAction_Getvar I actually tried that, and although I get “success” I never get useful data. For example: action: Getvar actionid: act1 channel: PJSIP/Twilio-NA-W-2-In-00000025 Variable: channel(pjsip,call-id)
2023 Jul 03
1
Get channel variables via ARI/AMI
The uppercase command made a difference. I now get a call-id as show below. However, does the call-id look valid? The @0.0.0.0 seems strange. action: Getvar actionid: act1 channel: PJSIP/Twilio-NA-W-3-In-00000028 Variable: CHANNEL(pjsip,call-id) Response: Success ActionID: act1 Variable: CHANNEL(pjsip,call-id) Value: 4decf884e3ae74595906283a74f7154e at 0.0.0.0 As well,
2023 Jul 02
1
Get channel variables via ARI/AMI
On Sun, Jul 2, 2023 at 4:39 PM TTT <lists at telium.io> wrote: > >> You use the AMI action Getvar[1] which allows channel variables and > dialplan functions. > > >> [1] > https://wiki.asterisk.org/wiki/display/AST/Asterisk+20+ManagerAction_Getvar > > > > > I actually tried that, and although I get “success” I never get useful > data. For
2014 Nov 18
2
AGI and AMI in PHP -- What's current?
I'm writing some code that needs to access AMI in PHP. (I'll probably be doing AGI later as well.) I'm looking at phpagi (2.20), but it hasn't been updated since 2010 and appears to be a bit behind current Asterisk -- No event handler for event 'fullybooted'. What PHP framework/library are you using -- and why? -- Thanks in advance,
2010 Oct 21
1
How to kill AMI ORIGINATE on-the-fly
My application fires several calls thru AMI ORIGINATE command. For example if I have 3 operators I do 3 ORIGINATEs. My trouble is when one operator quit for some reason, I should kill the corresponding ORIGINATE. Of course, I could let the call ring and hangup after the customer pick-up. But this is not the case, I do have to kill the corresponding ORIGINATE. I could execute a soft hangup,
2005 Jan 13
4
Manager API !!!!!!!!!
Hello all Has anyone had any success with the Manager API ? I am trying to check an extension status without too much luck I have the following <?php $fp = fsockopen("127.0.0.1", 5038, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "Action: Login\r\n"; $out .=
2014 Jun 13
1
Need to spoof the callerid using the AMI Originate
We have several customers we need to place outbound calls for (in a single system). May have to place calls for thousands of different caller ids. Customer signs a contract guaranteeing the caller id they provide is owned by them. I have everything setup for AMI Originate and can place the calls. However, I'm encountering a problem with the caller id. The system I'm dialing through
2005 Sep 13
2
actionID on manager events
Hello, all! I'm looking at the wiki page and info on the mailing list and I'm getting conflicting info... I am using the manager API from the telnet CLI and I am testing creating calls with it. I login with events: on and I can originate calls just fine. However, when I set ActionID on an Originate, I cannot see anywhere where that actionid carries into the Event output. But I found
2013 May 07
1
Get Channel Variables in AMI Event NewExten
Hi, I'm stucked in situation, and look for a work around if possible in Asterisk. I have a dialplan, [default] exten => 111222,n,Set(fu_callerid=141688xyxzz) exten => _X.,n,NoOp(Callerid ${fu_callerid}) exten => _X.,n,wait(2) exten => _X.,n,Answer() ? When, ?Answer Application is called AMI Event is triggered like this.. ? ? ? ? ? 'Event' => 'Newexten', ? ? ? ?
2005 Sep 15
1
Originate not understanding 2 vars in setvars
Hi, I'm currently trying to originate a call with 2 variables set. I tried doing it via manager API and call File and both failed, because the vars were not separated. I'm using Asterisk 1.2_beta1 on this machine Can anyone here verify wether this is a bug or just a stupid error on my part? This is the callfile I tried to use, after the manager way failed: Channel:
2018 Oct 04
3
Spontaneous reboot due to MySQL lookups ?
Hello using Asterisk 1.8.32. I notice that there is a spontaneous reboot of the Asterisk system from time to time. When I look in the logs (verbose file) I noticed that every time this occurs it's at a moment that there is a MySQL action, be it a lookup or an insert/update/delete. I must say I do have some MySQL queries that occur in my dialplan when a call comes in, to look up
2009 Jan 16
2
UpdateConfig : Appending line fails
Hello list, Can someone please point me out why would a stream like the following only write ONE line (the first) on the given file? Action: login Username: test Secret: 123456 Action: UpdateConfig SrcFilename: voicemail2.conf DstFilename: voicemail2.conf Action-000000: Append Cat-000000: default Var-000000: 127 Value-000000: >5555, Jason Bourne97, jason25 at noCia.gov.do ActionID: