private Method

Definitions.collect_fault_messages

There's no documentation for this item.

Source Code

# File wsdl/soap/definitions.rb, line 94
def collect_fault_messages
  result = []
  porttypes.each do |porttype|
    porttype.operations.each do |operation|
      operation.fault.each do |fault|
        if result.index(fault.message).nil?
          result << fault.message
        end
      end
    end
  end
  result
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.