method
decode_definedtype
ruby latest stable - Class:
SOAP::EncodingStyle::SOAPHandler
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