method

create_rpc_param_def

ruby latest stable - Class: SOAP::RPC::SOAPMethod

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_rpc_param_def(param_names)
public

No documentation available.

# File lib/soap/rpc/element.rb, line 153
  def SOAPMethod.create_rpc_param_def(param_names)
    param_def = []
    param_names.each do |param_name|
      param_def.push([IN, param_name, nil])
    end
    param_def.push([RETVAL, 'return', nil])
    param_def
  end