Module: ActionWebService::ActsAsWebService::ClassMethods

Defined in:
lib/action_web_service/acts_as_web_service.rb

Instance Method Summary collapse

Instance Method Details

#acts_as_web_serviceObject

Add this to your controller to include all ActionWebservice



11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/action_web_service/acts_as_web_service.rb', line 11

def acts_as_web_service
  include ActionWebService::Protocol::Discovery
  include ActionWebService::Protocol::Soap
  include ActionWebService::Protocol::XmlRpc
  include ActionWebService::Container::Direct
  include ActionWebService::Container::Delegated
  include ActionWebService::Container::ActionController
  include ActionWebService::Invocation
  include ActionWebService::Dispatcher
  include ActionWebService::Dispatcher::ActionController
  include ActionWebService::Dispatcher::ActionController::WsdlAction
  include ActionWebService::Scaffolding
end