Flowdock
method

create_request

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::RPC::SOAPMethodRequest
create_request(qname, *params) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/rpc/element.rb, line 221
  def SOAPMethodRequest.create_request(qname, *params)
    param_def = []
    param_value = []
    i = 0
    params.each do |param|
      param_name = "p#{i}"
      i += 1
      param_def << [IN, param_name, nil]
      param_value << [param_name, param]
    end
    param_def << [RETVAL, 'return', nil]
    o = new(qname, param_def)
    o.set_param(param_value)
    o
  end
Register or log in to add new notes.