Class: Savon::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/savon/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(globals = {}, &block) ⇒ Client

Returns a new instance of Client.



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

def initialize(globals = {}, &block)
  unless globals.kind_of? Hash
    raise_version1_initialize_error! globals
  end

  set_globals(globals, block)

  unless wsdl_or_endpoint_and_namespace_specified?
    raise_initialization_error!
  end

  build_wsdl_document
end

Instance Attribute Details

#globalsObject (readonly)

Returns the value of attribute globals.



25
26
27
# File 'lib/savon/client.rb', line 25

def globals
  @globals
end

#wsdlObject (readonly)

Returns the value of attribute wsdl.



25
26
27
# File 'lib/savon/client.rb', line 25

def wsdl
  @wsdl
end

Instance Method Details

#build_request(operation_name, locals = {}, &block) ⇒ Object



45
46
47
# File 'lib/savon/client.rb', line 45

def build_request(operation_name, locals = {}, &block)
  operation(operation_name).request(locals, &block)
end

#call(operation_name, locals = {}, &block) ⇒ Object



36
37
38
# File 'lib/savon/client.rb', line 36

def call(operation_name, locals = {}, &block)
  operation(operation_name).call(locals, &block)
end

#operation(operation_name) ⇒ Object



32
33
34
# File 'lib/savon/client.rb', line 32

def operation(operation_name)
  Operation.create(operation_name, @wsdl, @globals)
end

#operationsObject



27
28
29
30
# File 'lib/savon/client.rb', line 27

def operations
  raise_missing_wsdl_error! unless @wsdl.document?
  @wsdl.soap_actions
end

#service_nameObject



40
41
42
43
# File 'lib/savon/client.rb', line 40

def service_name
  raise_missing_wsdl_error! unless @wsdl.document?
  @wsdl.service_name
end