WSDL::SOAP::Binding (Class)

In: wsdl/soap/binding.rb
Parent: Info

Methods

Attributes

style  [R] 
transport  [R] 

Public Class methods

[Source]

# File wsdl/soap/binding.rb, line 20
  def initialize
    super
    @style = nil
    @transport = nil
  end

Public Instance methods

[Source]

# File wsdl/soap/binding.rb, line 30
  def parse_attr(attr, value)
    case attr
    when StyleAttrName
      if ["document", "rpc"].include?(value)
        @style = value.intern
      else
        raise AttributeConstraintError.new("Unexpected value #{ value }.")
      end
    when TransportAttrName
      @transport = value
    else
      nil
    end
  end

[Source]

# File wsdl/soap/binding.rb, line 26
  def parse_element(element)
    nil
  end

[Validate]