In Files

  • wsdl/soap/clientSkeltonCreator.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

WSDL::SOAP::ClientSkeltonCreator

Attributes

definitions[R]

Public Class Methods

new(definitions) click to toggle source
 
               # File wsdl/soap/clientSkeltonCreator.rb, line 22
def initialize(definitions)
  @definitions = definitions
end
            

Public Instance Methods

dump(service_name) click to toggle source
 
               # File wsdl/soap/clientSkeltonCreator.rb, line 26
def dump(service_name)
  result = ""
  @definitions.service(service_name).ports.each do |port|
    result << dump_porttype(port.porttype.name)
    result << "\n"
  end
  result
end