method

decode_definedtype

ruby latest stable - Class: SOAP::EncodingStyle::SOAPHandler

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

decode_definedtype(elename, typename, typedef, arytypestr)
private

No documentation available.

# File lib/soap/encodingstyle/soapHandler.rb, line 369
  def decode_definedtype(elename, typename, typedef, arytypestr)
    unless typedef
      raise EncodingStyleError.new("unknown type '#{typename}'")
    end
    if typedef.is_a?(::WSDL::XMLSchema::SimpleType)
      decode_defined_simpletype(elename, typename, typedef, arytypestr)
    else
      decode_defined_complextype(elename, typename, typedef, arytypestr)
    end
  end