search for: returnstatus

Displaying 3 results from an estimated 3 matches for "returnstatus".

Did you mean: return_status
2006 Jul 22
0
multiple return values in action web service
...nt something like the following. api_method :do_something, :expects => [{:id => :string}], :returns => [{:return_code => :int}, {:return_text => :string}] The easy way to do it would be to wrap everything in a struct: class ReturnStatus < ActionWebService::Struct member :return_code, :int member :return_text, :string end api_method :do_something, :expects => [{:id => :string}], :returns => [ReturnStatus] Then I could implement do_something as follows: def do_something ReturnStatus.new...
2006 Feb 10
0
ruby-agi-1.1.1 released !
Release notes of ruby-agi-1.1.1 February 09, 2006 This is a bug fix release of ruby-agi. Below two bugs have fixed in this release. -- ReturnStatus#timeout? was not functional, which has fixed. -- AsteriskVariable#init_caller_variable updated to fix callerid bug which was returning 'nil' for number only callerid. method init_caller_variable is a private method that manage callerid, calleridname and calleridnumber Feedback, suggest...
2008 Dec 05
2
async agi question
Hi, I am developing asterisk support for our application using the Async AGI and Asterisk-Java. One thing I haven't been able to implement is how to stop playing a sound. Something similar to StopIO for Dialogic GlobalCall or DivaStopSending for Eicon. Is there any way to achieve this today which I have missed? Or could someone give me hints on how I could implement this in the res_agi.c The