mark_marshalled_obj(obj, soap_obj)click to toggle source
# File lib/soap/mapping/mapping.rb, line 25defmark_marshalled_obj(obj, soap_obj)
raiseifobj.nil?Thread.current[:SOAPMapping][:MarshalKey][obj.__id__] = soap_objend
mark_unmarshalled_obj(node, obj)click to toggle source
# File lib/soap/mapping/mapping.rb, line 30defmark_unmarshalled_obj(node, obj)
returnifobj.nil?# node.id is not Object#id but SOAPReference#idThread.current[:SOAPMapping][:MarshalKey][node.id] = objend