Flowdock
method

dump_porttype

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::ClientSkeltonCreator
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.