Class: Savon::LocalOptions

Inherits:
Options
  • Object
show all
Includes:
SharedOptions
Defined in:
lib/savon/options.rb

Instance Attribute Summary

Attributes inherited from Options

#option_type

Instance Method Summary collapse

Methods included from SharedOptions

#wsse_auth, #wsse_signature, #wsse_timestamp

Methods inherited from Options

#[], #[]=, #include?

Constructor Details

#initialize(options = {}) ⇒ LocalOptions

Returns a new instance of LocalOptions.



315
316
317
318
319
320
321
322
323
324
325
# File 'lib/savon/options.rb', line 315

def initialize(options = {})
  @option_type = :local

  defaults = {
    :advanced_typecasting => true,
    :response_parser      => :nokogiri,
    :multipart            => false
  }

  super defaults.merge(options)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Savon::Options

Instance Method Details

#advanced_typecasting(advanced) ⇒ Object

Instruct Nori to use advanced typecasting.



366
367
368
# File 'lib/savon/options.rb', line 366

def advanced_typecasting(advanced)
  @options[:advanced_typecasting] = advanced
end

#attributes(attributes) ⇒ Object

Attributes for the SOAP message tag.



346
347
348
# File 'lib/savon/options.rb', line 346

def attributes(attributes)
  @options[:attributes] = attributes
end

#cookies(cookies) ⇒ Object

Cookies to be used for the next request.



356
357
358
# File 'lib/savon/options.rb', line 356

def cookies(cookies)
  @options[:cookies] = cookies
end

#message(message) ⇒ Object

The SOAP message to send. Expected to be a Hash or a String.



335
336
337
# File 'lib/savon/options.rb', line 335

def message(message)
  @options[:message] = message
end

#message_tag(message_tag) ⇒ Object

SOAP message tag (formerly known as SOAP input tag). If it's not set, Savon retrieves the name from the WSDL document (if available). Otherwise, Gyoku converts the operation name into an XML element.



341
342
343
# File 'lib/savon/options.rb', line 341

def message_tag(message_tag)
  @options[:message_tag] = message_tag
end

#multipart(multipart) ⇒ Object

Instruct Savon to create a multipart response if available.



376
377
378
# File 'lib/savon/options.rb', line 376

def multipart(multipart)
  @options[:multipart] = multipart
end

#response_parser(parser) ⇒ Object

Instruct Nori to use :rexml or :nokogiri to parse the response.



371
372
373
# File 'lib/savon/options.rb', line 371

def response_parser(parser)
  @options[:response_parser] = parser
end

#soap_action(soap_action) ⇒ Object

Value of the SOAPAction HTTP header.



351
352
353
# File 'lib/savon/options.rb', line 351

def soap_action(soap_action)
  @options[:soap_action] = soap_action
end

#soap_header(header) ⇒ Object

The local SOAP header. Expected to be a Hash or respond to #to_s. Will be merged with the global SOAP header if both are Hashes. Otherwise the local option will be prefered.



330
331
332
# File 'lib/savon/options.rb', line 330

def soap_header(header)
  @options[:soap_header] = header
end

#xml(xml) ⇒ Object

The SOAP request XML to send. Expected to be a String.



361
362
363
# File 'lib/savon/options.rb', line 361

def xml(xml)
  @options[:xml] = xml
end