class Object

Public Class Methods

soap_service(options={}) click to toggle source

Define a SOAP service. The function has no required options: but allow any of :parser, :namespace, :wsdl_style, :snakecase_input, :camelize_wsdl, :wsse_username, :wsse_password and :catch_xml_errors.

Any of the the params provided allows for overriding the defaults (like supporting multiple namespaces instead of application wide such)

# File lib/wash_out.rb, line 49
def self.soap_service(options={})
  include WashOut::SOAP
  self.soap_config = options
end