summaryrefslogtreecommitdiff
path: root/test/wsdl/rpc/echo_serviceClient.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-22 13:28:00 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-22 13:28:00 +0000
commitb5fed06c2abd85ff37adf115e718fcae5ecd95f1 (patch)
tree67d475f8eddc0ecc7f0f4f15e40be619db0a336c /test/wsdl/rpc/echo_serviceClient.rb
parent991d0c409cc6b1d916330a32a9624aef808176a4 (diff)
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
Diffstat (limited to 'test/wsdl/rpc/echo_serviceClient.rb')
-rw-r--r--test/wsdl/rpc/echo_serviceClient.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/wsdl/rpc/echo_serviceClient.rb b/test/wsdl/rpc/echo_serviceClient.rb
new file mode 100644
index 0000000000..40264834e9
--- /dev/null
+++ b/test/wsdl/rpc/echo_serviceClient.rb
@@ -0,0 +1,23 @@
+#!/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)
+
+