Sha256: 6c3aa083a594c52c97b5962cf11b3e6aec51f44a6b1b3c7b4bf8f1461987e25e
Contents?: true
Size: 958 Bytes
Versions: 15
Compression:
Stored size: 958 Bytes
Contents
#!/usr/bin/env ruby # encoding: ASCII-8BIT require 'defaultDriver.rb' endpoint_url = ARGV.shift obj = OverloadServicePortType.new(endpoint_url) # run ruby with -d to see SOAP wiredumps. obj.wiredump_dev = STDERR if $DEBUG # SYNOPSIS # methodAlpha(in0, in1, in2) # # ARGS # in0 C_String - {http://www.w3.org/2001/XMLSchema}string # in1 C_String - {http://www.w3.org/2001/XMLSchema}string # in2 C_String - {http://www.w3.org/2001/XMLSchema}string # # RETURNS # methodAlphaReturn Long - {http://www.w3.org/2001/XMLSchema}long # in0 = in1 = in2 = nil puts obj.methodAlpha(in0, in1, in2) # SYNOPSIS # methodAlpha_2(in0, in1) # # ARGS # in0 C_String - {http://www.w3.org/2001/XMLSchema}string # in1 C_String - {http://www.w3.org/2001/XMLSchema}string # # RETURNS # methodAlphaReturn Long - {http://www.w3.org/2001/XMLSchema}long # in0 = in1 = nil puts obj.methodAlpha_2(in0, in1)
Version data entries
15 entries across 15 versions & 9 rubygems