In Files

  • wsdl/soap/binding.rb

Class/Module Index [+]

Quicksearch

WSDL::SOAP::Binding

Attributes

style[R]
transport[R]

Public Class Methods

new() click to toggle source
 
               # File wsdl/soap/binding.rb, line 20
def initialize
  super
  @style = nil
  @transport = nil
end
            

Public Instance Methods

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