# File soap/mapping/factory.rb, line 191 def soap2obj(obj_class, node, info, map) obj = nil if obj_class == Time obj = node.to_time if obj.nil? # Is out of range as a Time return false end elsif obj_class == Date obj = node.data else return false end mark_unmarshalled_obj(node, obj) return true, obj end