Displaying 1 result from an estimated 1 matches for "encode_reponse".
Did you mean:
encode_response
2006 Jan 07
1
AWS, SOAP, and Exceptions
...ranslation of an Exception
to a SOAPFault. However, if I use the following code block within my Web
Service controller:
def get_calendar(calId)
begin
return Calendar.find(calId)
rescue Exception => e
return e
end
end
I see the following error, prior to the call to encode_reponse():
"Don''t know how to cast ActiveRecord::RecordNotFound to Calendar"
c:/ruby/lib/ruby/gems/1.8/gems/actionwebservice-1.0.0/lib/action_web_service/casting.rb:119:in
`cast_to_structured_type''
c:/ruby/lib/ruby/gems/1.8/gems/actionwebservice-1.0.0/lib/actio...