Flowdock
method

dump_porttype

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: WSDL::SOAP::ClientSkeltonCreator

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.

dump_porttype(name) private

No documentation

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

Hide source
# File lib/wsdl/soap/clientSkeltonCreator.rb, line 37
  def dump_porttype(name)
    drv_name = create_class_name(name)

    result = ""
    result << "endpoint_url = ARGV.shift\nobj = \#{ drv_name }.new(endpoint_url)\n\n# run ruby with -d to see SOAP wiredumps.\nobj.wiredump_dev = STDERR if $DEBUG\n\n"
    @definitions.porttype(name).operations.each do |operation|
      result << dump_method_signature(operation)
      result << dump_input_init(operation.input) << "\n"
      result << dump_operation(operation) << "\n\n"
    end
    result
  end
Register or log in to add new notes.