mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7 lines
154 B
Ruby
7 lines
154 B
Ruby
|
require 'soap/rpc/driver'
|
||
|
|
||
|
s = SOAP::RPC::Driver.new('http://localhost:2000/', 'urn:hws')
|
||
|
s.add_method("hello_world", "from")
|
||
|
|
||
|
p s.hello_world(self.to_s)
|