# File lib/wsdl/soap/body.rb, line 34 34: def parse_attr(attr, value) 35: case attr 36: when PartsAttrName 37: @parts = value.source 38: when UseAttrName 39: if ['literal', 'encoded'].include?(value.source) 40: @use = value.source.intern 41: else 42: raise RuntimeError.new("unknown use of soap:body: #{value.source}") 43: end 44: when EncodingStyleAttrName 45: @encodingstyle = value.source 46: @encodingstyle = nil if @encodingstyle.to_s.empty? 47: value.source 48: when NamespaceAttrName 49: @namespace = value.source 50: else 51: nil 52: end 53: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.