Exception: Handsoap::Fault

Inherits:
Exception
  • Object
show all
Defined in:
lib/handsoap/service.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code, reason, details) ⇒ Fault

Returns a new instance of Fault.



76
77
78
79
80
# File 'lib/handsoap/service.rb', line 76

def initialize(code, reason, details)
  @code = code
  @reason = reason
  @details = details
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



75
76
77
# File 'lib/handsoap/service.rb', line 75

def code
  @code
end

#detailsObject (readonly)

Returns the value of attribute details.



75
76
77
# File 'lib/handsoap/service.rb', line 75

def details
  @details
end

#reasonObject (readonly)

Returns the value of attribute reason.



75
76
77
# File 'lib/handsoap/service.rb', line 75

def reason
  @reason
end

Class Method Details

.from_xml(node, options = { :namespace => nil }) ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/handsoap/service.rb', line 84

def self.from_xml(node, options = { :namespace => nil })
  if not options[:namespace]
    raise "Missing option :namespace"
  end
  ns = { 'env' => options[:namespace] }
  fault_code = node.xpath('./env:Code/env:Value/text()', ns).to_s
  if fault_code == ""
    fault_code = node.xpath('./faultcode/text()', ns).to_s
  end
  reason = node.xpath('./env:Reason/env:Text[1]/text()', ns).to_s
  if reason == ""
    reason = node.xpath('./faultstring/text()', ns).to_s
  end
  details = node.xpath('./detail/*', ns)
  self.new(fault_code, reason, details)
end

Instance Method Details

#to_sObject



81
82
83
# File 'lib/handsoap/service.rb', line 81

def to_s
  "Handsoap::Fault { :code => '#{@code}', :reason => '#{@reason}' }"
end