mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 09:33:59 +02:00
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
This commit is contained in:
parent
991d0c409c
commit
b5fed06c2a
2 changed files with 78 additions and 0 deletions
23
test/wsdl/rpc/echo_serviceClient.rb
Normal file
23
test/wsdl/rpc/echo_serviceClient.rb
Normal file
|
@ -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)
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue