method

create_method_obj

ruby latest stable - Class: SOAP::WSDLDriver::Servant__

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.

create_method_obj(names, params)
private

No documentation available.

# File lib/soap/wsdlDriver.rb, line 440
    def create_method_obj(names, params)
      o = Object.new
      idx = 0
      while idx < params.length
        o.instance_variable_set('@' + names[idx], params[idx])
        idx += 1
      end
      o
    end