method

simpleobj2soap

ruby latest stable - Class: SOAP::Mapping::WSDLEncodedRegistry

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.

simpleobj2soap(obj, type)
private

No documentation available.

# File lib/soap/mapping/wsdlencodedregistry.rb, line 124
  def simpleobj2soap(obj, type)
    type.check_lexical_format(obj)
    return SOAPNil.new if obj.nil?      # ToDo: check nillable.
    o = base2soap(obj, TypeMap[type.base])
    o
  end