Displaying 1 result from an estimated 1 matches for "directspoolservice".
2006 Jan 04
5
Webservice External XMLRPC
Hello i have some trouble getting my webservice to run .
I have the following webservice :
class DirectSpoolAPI < ActionWebService::API::Base
  api_method :add, :expects => [{:html=>:string},{:from=>:string}], 
:returns => [Customer]
end
class DirectSpoolService < ActionWebService::Base
   web_service_api DirectSpoolAPI
   def add(html,from)
     Customer.find(:first)
   end
   def remove
   end
 end
class ApiController < ApplicationController
   skip_before_filter :login_required
   web_service_dispatching_mode :delegated
   web_service_scaffold...