1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/wsdl/rpc/echo_serviceClient.rb
nahi b5fed06c2a failed to add some test directories in the previous commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-05-22 13:28:00 +00:00

23 lines
441 B
Ruby

#!/usr/bin/env ruby
require 'echoDriver.rb'
endpoint_url = ARGV.shift
obj = Echo_port_type.new(endpoint_url)
# Uncomment the below line to see SOAP wiredumps.
# obj.wiredump_dev = STDERR
# SYNOPSIS
# echo(arg1, arg2)
#
# ARGS
# arg1 Person - {urn:rpc-type}person
# arg2 Person - {urn:rpc-type}person
#
# RETURNS
# v_return Person - {urn:rpc-type}person
#
arg1 = arg2 = nil
puts obj.echo(arg1, arg2)