summaryrefslogtreecommitdiff
path: root/sample/soap/sampleStruct/client.rb
blob: b55c7fdfc54615e1cc754ec81693f899cad463a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'soap/rpc/driver'

require 'iSampleStruct'

server = ARGV.shift || 'http://localhost:7000/'
# server = 'http://localhost:8808/server.cgi'

drv = SOAP::RPC::Driver.new(server, SampleStructServiceNamespace)
drv.wiredump_dev = STDERR
drv.add_method('hi', 'sampleStruct')

o1 = SampleStruct.new
puts "Sending struct: #{ o1.inspect }"
puts
o2 = drv.hi(o1)
puts "Received (wrapped): #{ o2.inspect }"