search for: responsecode

Displaying 4 results from an estimated 4 matches for "responsecode".

Did you mean: response_code
2006 Apr 03
2
SIP Responsecodes
Hi, It seems as 'the google' has left me today so I am trying the list. How do I get access to SIP responsecodes from dialplan/agi. Yes I know that I should stay with 'DIALSTATUS' but there are cases where I need the responsecode like '484 adress incomplete' and not just the 'NO ANSWER' DIALSTATUS. Is there a channel variable/function that skipped over by mistake? Freddi
2012 Mar 23
0
Net::IMAP throws . for nil class on search
...;, 993, true) >> imap.login(''login'', ''password'') >> imap.select(''INBOX'') => #<struct Net::IMAP::TaggedResponse tag="RUBY0010", name="OK", data=#<struct Net::IMAP::ResponseText code=#<struct Net::IMAP::ResponseCode name="READ-WRITE", data=nil>, text=" SELECT completed">, raw_data="RUBY0010 OK [READ-WRITE] SELECT completed\r\n"> >> imap.search([''ALL'']) NoMethodError: You have a nil object when you didn''t expect it! You might have expecte...
2006 Jan 31
0
webservice problem (cant make client)
...thenticate(string twa, string login, string pass) when i do /invoke i can test it, this all works backend_api.rb class BackendApi < ActionWebService::API::Base api_method :authenticate, :expects => [{:twa =>:string},{:login =>:string},{:pass =>:string}], :returns => [{:responsecode =>:string}] end backend_controller.rb class BackendController < ApplicationController wsdl_service_name ''Backend'' web_service_api BackendApi web_service_scaffold :invoke # Constants TWA_INVALID = "TWA_INVALID" USER_NOT_FOUND = "USER_NOT_FOUND&...
2006 Feb 14
7
onFailure fails?
Hi all, I have this code: new Ajax.Request(''non_existant.file'', { onSuccess:function(){alert("yay");}, onFailure:function(){alert("boo");} }); Why does the onFailure alert never get called? It works fine if I use a real file (onSuccess gets called). Thanks, Douglas