Displaying 1 result from an estimated 1 matches for "find_customer_by_id".
2007 Sep 21
2
ActionWebServer and SOAPFault
I''m really new to RoR and my first task is to write SOAP web service.
The problem is that I don''t understand how to send custom SOAPFault
messages in case of the errors.
For example, I have FindCustomerById API signature:
api_method :find_customer_by_id,
:expects => [{:customer_id => :int}],
:returns => [Customer]
And controller:
def find_customer_by_id(customer_id)
Customer.find(customer_id)
end
The requirement from the vendor is that if such customer does not exist
I have to send back to client SOAPFault messa...