method
dump_porttype
ruby latest stable - Class:
WSDL::SOAP::ClientSkeltonCreator
dump_porttype(name)private
No documentation available.
# 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