method
unknowntype2obj
ruby latest stable - Class:
SOAP::Mapping::RubytypeFactory
unknowntype2obj(node, info, map)private
No documentation available.
# File lib/soap/mapping/rubytypeFactory.rb, line 398
def unknowntype2obj(node, info, map)
case node
when SOAPBasetype
return true, node.data
when SOAPArray
return @array_factory.soap2obj(Array, node, info, map)
when SOAPStruct
obj = unknownstruct2obj(node, info, map)
return true, obj if obj
if !@allow_untyped_struct
return false
end
return anytype2obj(node, info, map)
else
# Basetype which is not defined...
return false
end
end